humpback-dds/Cargo.toml

43 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2020-08-07 13:36:00 +08:00
[package]
authors = ["occheung"]
edition = "2018"
readme = "README.md"
2020-09-25 10:23:49 +08:00
name = "humpback-dds"
2020-08-07 13:36:00 +08:00
version = "0.1.0"
[dependencies]
panic-halt = "0.2.0"
cortex-m = "0.6.2"
cortex-m-rt = "0.6.12"
2020-08-11 00:07:07 +08:00
embedded-hal = "0.2.4"
2020-09-07 14:05:13 +08:00
stm32h7xx-hal = {version = "0.7.1", features = [ "stm32h743v", "rt", "unproven", "ethernet", "phy_lan8742a" ] }
2020-09-25 17:05:40 +08:00
smoltcp = { version = "0.6.0", default-features = false, features = [ "ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp" ] }
2020-08-07 13:36:00 +08:00
nb = "1.0.0"
2020-09-01 10:21:55 +08:00
embedded-nal = "0.1.0"
2020-09-15 12:17:42 +08:00
minimq = { git = "https://github.com/quartiq/minimq.git", branch = "master" }
2020-09-23 14:56:15 +08:00
heapless = "0.5.6"
2020-09-21 17:31:34 +08:00
nom = { version = "5.1.2", default-features = false, features = [] }
2020-09-28 14:13:02 +08:00
ryu = "1.0"
2021-01-29 16:46:07 +08:00
SaiTLS = { git = "https://git.m-labs.hk/M-Labs/SaiTLS.git", features = [ "nal_tcp_stack" ] }
2020-12-18 17:37:11 +08:00
rand_core = { version = "0.5.1", default-features = false, features = [] }
sfkv = "0.1.0"
serde = { version = "1.0", default-features = false, features = ["derive"] }
# Allocator
alloc-cortex-m = "0.4.0"
2020-08-07 13:36:00 +08:00
# Logging and Panicking
panic-itm = "0.4.1"
cortex-m-rtic = "0.5.3"
cortex-m-log = { version = "0.6.2", features = [ "itm", "log-integration" ] }
2020-09-10 10:29:35 +08:00
log = {version = "0.4.11"}
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
2020-08-07 13:36:00 +08:00
2020-09-23 12:30:26 +08:00
[patch.crates-io]
smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp.git" }
2020-08-07 13:36:00 +08:00
[profile.release]
codegen-units = 1 # better optimizations
debug = true # symbols are nice and they don't increase the size on Flash
lto = true # better optimizations