[package] name = "hilton" version = "0.1.0" authors = ["Karol Belina "] edition = "2021" [[bin]] name = "hilton" test = false bench = false [dependencies] atmega-hal = { git = "https://github.com/Rahix/avr-hal", features = ["atmega328p", "rt"] } avr-hal-generic = { git = "https://github.com/Rahix/avr-hal" } avr-progmem = "0.3.1" stockbook = { version = "0.3.0", features = ["progmem"] } [profile.dev] codegen-units = 1 lto = true opt-level = "s" panic = "abort" [profile.release] codegen-units = 1 lto = true opt-level = "s" panic = "abort" [package.metadata.cargo_avrdude] args = ["-p", "m328p", "-c", "usbasp", "-e", "-V", "-U", "flash:w:{}"]