-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 948 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 948 Bytes
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
[workspace]
[package]
name = "exti"
version = "0.1.0"
authors = ["Rasmus Melchior Jacobsen <rmja@laesoe.org>"]
edition = "2018"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "exti"
test = false
doc = false
[features]
default = []
std = [
"drone-core/std",
"drone-cortexm/std",
"drone-stm32-map/std",
"futures/std",
]
[dependencies]
drone-core = { version = "0.14.0", path="../../../drone-core" }
drone-cortexm = { version = "0.14.0", features = ["bit-band", "floating-point-unit", "memory-protection-unit"], path="../../../drone-cortexm" }
drone-stm32-map = { version = "0.14.0", features = ["exti", "gpio"], path="../../../drone-stm32-map" }
drone-stm32f4-hal = { version = "0.1.0", features = ["exti", "gpio"], path="../../" }
futures = { version = "0.3.0", default-features = false }
[profile.release]
lto = true
debug = true
panic = "abort"