Cargo.toml: style

This commit is contained in:
Robert Jördens 2020-01-21 12:45:11 +01:00
parent 289d40ede3
commit 385791a827
1 changed files with 4 additions and 4 deletions

View File

@ -32,12 +32,12 @@ cortex-m-rt = { version = "0.6", features = ["device"] }
cortex-m-log = { version = "0.6", features = ["log-integration"] } cortex-m-log = { version = "0.6", features = ["log-integration"] }
log = "0.4" log = "0.4"
panic-semihosting = { version = "0.5", optional = true } panic-semihosting = { version = "0.5", optional = true }
panic-halt = { version = "0.2" } panic-halt = "0.2"
serde = { version = "1.0", features = ["derive"], default-features = false } serde = { version = "1.0", features = ["derive"], default-features = false }
heapless = { version = "0.5" } heapless = "0.5"
serde-json-core = { version = "0.1" } serde-json-core = "0.1"
stm32h7 = { version = "0.9", features = ["stm32h743", "rt"] } stm32h7 = { version = "0.9", features = ["stm32h743", "rt"] }
cortex-m-rtfm = { version = "0.5" } cortex-m-rtfm = "0.5"
smoltcp = { version = "0.6", features = ["ethernet", "proto-ipv4", "socket-tcp"], default-features = false } smoltcp = { version = "0.6", features = ["ethernet", "proto-ipv4", "socket-tcp"], default-features = false }
[features] [features]