This commit is contained in:
Invariantspace 2024-10-14 23:56:20 -07:00
parent 97238b56f7
commit 4d087a56d0
No known key found for this signature in database
GPG key ID: EBC4A20067373921
7 changed files with 382 additions and 169 deletions

View file

@ -9,19 +9,22 @@ serde = { version = "*", features = ["derive"] }
serde_yaml = "*"
[dependencies]
chrono = { version = "*", default-features = false}
cortex-m-rt = "*"
cyw43 = { git = "https://github.com/embassy-rs/embassy.git" }
cyw43-pio = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", features = ["arch-cortex-m", "executor-interrupt", "executor-thread", "integrated-timers", "nightly"] }
embassy-net = { git = "https://github.com/embassy-rs/embassy.git", features = ["tcp", "udp", "raw", "dhcpv4", "dhcpv4-hostname", "dns", "proto-ipv4", "multicast"] }
embassy-rp = { git = "https://github.com/embassy-rs/embassy.git", features = ["critical-section-impl", "time-driver", "rp2040"] }
embassy-net = { git = "https://github.com/embassy-rs/embassy.git", features = ["raw", "dhcpv4", "dhcpv4-hostname", "dns", "multicast", "proto-ipv4", "proto-ipv6", "tcp", "udp" ] }
embassy-rp = { git = "https://github.com/embassy-rs/embassy.git", features = ["critical-section-impl", "rp2040", "time-driver" ] }
embassy-sync = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-time = { git = "https://github.com/embassy-rs/embassy.git" }
embassy-usb-logger = { git = "https://github.com/embassy-rs/embassy.git" }
log ="*"
log = "*"
no-std-net = "*"
panic-halt = "*"
portable-atomic = { version = "*", features = ["critical-section"] }
rand = { version = "*", default-features = false }
sntpc = { version = "*", default-features = false }
sntpc = { version = "*", default-features = false, features = ["async"] }
static_cell = "*"
[profile.release]