forked from embed-rs/stm32f7-discovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 805 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
[package]
authors = ["Philipp Oppermann <[email protected]>"]
name = "stm32f7_discovery"
version = "0.1.0"
license = "MIT/Apache-2.0"
[[bin]]
doc = false
name = "stm32f7_discovery"
[dependencies]
bit_field = "0.7.0"
byteorder = { version = "1.0.0", default-features = false }
cortex-m = "0.1.4"
r0 = "0.1.0"
spin = "0.4.5"
volatile = "0.2.1"
net = {git = "https://github.com/embed-rs/net.git"}
rusttype = {git = "https://github.com/phil-opp/rusttype.git", branch = "no_std"}
alloc-cortex-m = {git = "https://github.com/f-bro/alloc-cortex-m.git", branch = "new-alloc-api"}
bitflags = "0.7.0"
[dependencies.arrayvec]
default-features = false
version = "0.3.20"
[dependencies.embedded_stm32f7]
git = "https://github.com/embed-rs/embedded_stm32f7.git"
[profile]
[profile.release]
lto = true
debug = true