embassy/Cargo.toml

35 lines
1.3 KiB
TOML
Raw Normal View History

2022-07-10 17:45:26 +00:00
[package]
name = "cyw43"
version = "0.1.0"
edition = "2021"
[features]
2022-08-13 13:37:30 +00:00
defmt = ["dep:defmt"]
2022-07-10 17:45:26 +00:00
log = ["dep:log"]
2022-08-13 13:37:30 +00:00
# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`.
firmware-logs = []
2022-07-10 17:45:26 +00:00
[dependencies]
2022-08-22 15:24:43 +00:00
embassy-time = { version = "0.1.0" }
2022-08-22 23:06:14 +00:00
embassy-sync = { version = "0.1.0" }
embassy-futures = { version = "0.1.0" }
2022-12-27 00:19:26 +00:00
embassy-net-driver-channel = { version = "0.1.0" }
2022-07-10 17:45:26 +00:00
atomic-polyfill = "0.1.5"
defmt = { version = "0.3", optional = true }
log = { version = "0.4.17", optional = true }
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
2022-10-02 19:28:34 +00:00
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.9" }
num_enum = { version = "0.5.7", default-features = false }
2023-03-27 01:33:20 +00:00
[patch.crates-io]
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "e3f8020c3bdf726dfa451b5b190f27191507a18f" }
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "e3f8020c3bdf726dfa451b5b190f27191507a18f" }
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "e3f8020c3bdf726dfa451b5b190f27191507a18f" }
embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "e3f8020c3bdf726dfa451b5b190f27191507a18f" }