[package] name = "avr-calc" version = "0.1.0" authors = ["Jakub Pastuszek "] edition = "2021" license = "MIT OR Apache-2.0" [[bin]] name = "avr-calc" test = false bench = false [dependencies] ufmt = "0.2.0" nb = "1.1.0" embedded-hal = "1.0" core-decimal-calc = { git = "https://gitea.hexadust.net/hxd/core-decimal-calc.git", features = ["ufmt"] } avr-device = "0.7.0" [dependencies.arduino-hal] git = "https://github.com/rahix/avr-hal" rev = "a1d727e58d73fa4bf41e8113337abb824371ca5d" features = ["arduino-nano"] # Configure the build for minimal size - AVRs have very little program memory [profile.dev] panic = "abort" lto = true opt-level = "s" [profile.release] panic = "abort" codegen-units = 1 debug = true lto = true opt-level = "s"