-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
29 lines (25 loc) · 946 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "async-avr"
version = "0.1.0"
license = "MIT OR Apache-2.0"
authors = ["lights0123 <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
panic-halt = "0.2.0"
avr-hal-generic = { git = "https://github.com/Rahix/avr-hal", rev = "a20277873a8102998d5fd69743771bd8c0aa9423" }
arduino-uno = { git = "https://github.com/Rahix/avr-hal", rev = "a20277873a8102998d5fd69743771bd8c0aa9423" }
atmega328p-hal = { git = "https://github.com/Rahix/avr-hal", rev = "a20277873a8102998d5fd69743771bd8c0aa9423" }
avr-device = { version = "0.3.0", features = ["atmega328p"]}
pin-utils = "0.1.0"
futures-util = { version = "0.3.5", default-features = false, features = ["async-await-macro"] }
ufmt = "0.1.0"
[profile.dev]
panic = "abort"
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
opt-level = "s"