new-sonar/firmware/Cargo.toml
David Lenfesty 7b53e8be2a fw: clean up and get command processing actually working
Still an issue where connecting to a socket the first time will time
out, unsure what the cause of that or where to start, but can ignore for
now and figure out more when I have more info later
2023-06-16 14:36:44 -06:00

24 lines
565 B
TOML

[package]
name = "fw"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
riscv-rt = "0.11.0"
riscv = "0.10.1"
panic-halt = "0.2.0"
embedded-hal = "0.2.7"
defmt = { version = "0.3.4", features = ["encoding-raw"] }
crc-any = { version = "2.4", default-features = false }
[dependencies.smoltcp]
version = "0.9.1"
default-features = false
features = ["medium-ethernet", "proto-ipv4", "socket-tcp", "socket-icmp", "defmt"]
[profile.release]
debug = true
opt-level = "s"