36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
authors = ["occheung"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
name = "humpback-dds"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
panic-halt = "0.2.0"
|
|
cortex-m = "0.6.2"
|
|
cortex-m-rt = "0.6.12"
|
|
embedded-hal = "0.2.4"
|
|
stm32h7xx-hal = {version = "0.7.1", features = [ "stm32h743v", "rt", "unproven", "ethernet", "phy_lan8742a" ] }
|
|
smoltcp = { version = "0.6.0", default-features = false, features = [ "ethernet", "proto-ipv4", "proto-ipv6", "socket-tcp" ] }
|
|
nb = "1.0.0"
|
|
embedded-nal = "0.1.0"
|
|
minimq = { git = "https://github.com/quartiq/minimq.git", branch = "master" }
|
|
heapless = "0.5.6"
|
|
nom = { version = "5.1.2", default-features = false, features = [] }
|
|
ryu = "1.0"
|
|
|
|
# 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" ] }
|
|
log = {version = "0.4.11"}
|
|
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
|
|
|
|
[patch.crates-io]
|
|
smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp.git" }
|
|
|
|
[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
|