diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-03-13 15:47:12 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-03-13 15:47:12 +0100 |
| commit | fc7baacabf15c94682f829259157fdc67cbfbda3 (patch) | |
| tree | 84e688ac7e374dc8118050420346872b175fbf20 /Cargo.toml | |
| download | dht11-sampler-fc7baacabf15c94682f829259157fdc67cbfbda3.tar.gz | |
initial commit
short blinking pattern
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..fe2190f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,31 @@ +[package] +name = "first" +version = "0.1.0" +authors = ["Gustav Sörnäs <gustav@sornas.net>"] +edition = "2018" + +[dependencies] +panic-halt = "0.2.0" + +nb = "0.1.2" +ufmt = "0.1.0" +avr-device = "0.3" + +dht-sensor = "0.2" + +[dependencies.arduino-uno] +git = "https://github.com/rahix/avr-hal" +rev = "a202778" + +# Configure the build for minimal size +[profile.dev] +panic = "abort" +lto = true +opt-level = "s" + +[profile.release] +panic = "abort" +codegen-units = 1 +debug = true +lto = true +opt-level = "s" |
