embassy/embassy-net-esp-hosted/Cargo.toml

27 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2023-06-09 03:36:48 +02:00
[package]
name = "embassy-net-esp-hosted"
version = "0.1.0"
edition = "2021"
[dependencies]
defmt = { version = "0.3", optional = true }
log = { version = "0.4.14", optional = true }
embassy-time = { version = "0.2", path = "../embassy-time" }
embassy-sync = { version = "0.5.0", path = "../embassy-sync"}
2023-06-09 03:36:48 +02:00
embassy-futures = { version = "0.1.0", path = "../embassy-futures"}
embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel"}
2023-06-09 03:36:48 +02:00
2023-12-14 16:01:51 +01:00
embedded-hal = { version = "1.0.0-rc.3" }
embedded-hal-async = { version = "=1.0.0-rc.3" }
2023-06-09 03:36:48 +02:00
noproto = { git="https://github.com/embassy-rs/noproto", rev = "f5e6d1f325b6ad4e344f60452b09576e24671f62", default-features = false, features = ["derive"] }
2023-06-09 03:36:48 +02:00
#noproto = { version = "0.1", path = "/home/dirbaio/noproto", default-features = false, features = ["derive"] }
heapless = "0.8"
2023-07-18 18:15:35 +02:00
[package.metadata.embassy_docs]
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-esp-hosted-v$VERSION/embassy-net-esp-hosted/src/"
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-esp-hosted/src/"
target = "thumbv7em-none-eabi"
2023-08-28 17:00:18 +02:00
features = ["defmt"]