-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 893 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
30
31
32
33
34
35
36
37
cargo-features = ["resolver"]
[package]
name = "l496-blinky"
version = "0.1.0"
authors = ["alfredch <[email protected]>"]
edition = "2018"
#resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "l496-blinky"
test = false
doc = false
[features]
default = []
std = [
"drone-core/std",
"drone-cortexm/std",
"drone-stm32-map/std",
"futures/std",
]
heaptrace = ["drone-core/heaptrace"]
[dependencies]
drone-core = { version = "0.13.0" }
drone-cortexm = { version = "0.13.0", features = ["bit-band", "floating-point-unit", "memory-protection-unit"] }
drone-stm32-map = { version = "0.13.0", features = ["dma", "exti", "gpio", "i2c", "rtc", "spi", "tim", "uart"] }
futures = { version = "0.3.0", default-features = false }
typenum = "1.12"
[profile.release]
lto = true
debug = true
panic = "abort"