Skip to content

Commit 69da875

Browse files
committed
edge-nal now implement directly in edge-nal-std
1 parent 9f7c054 commit 69da875

File tree

3 files changed

+0
-608
lines changed

3 files changed

+0
-608
lines changed

Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,8 @@ keywords = ["select", "ESP IDF"]
1111
categories = ["asynchronous", "network-programming", "MCU", "embedded"]
1212
exclude = ["/.*"]
1313

14-
[patch.crates-io]
15-
edge-nal = { git = "https://github.com/ivmarkov/edge-net" }
16-
1714
[features]
1815
default = ["futures-io", "futures-lite"]
19-
edge-nal = ["embedded-io-async", "dep:edge-nal", "futures-io", "futures-lite/std", "embassy-time"]
2016

2117
[dependencies]
2218
libc = "0.2"
@@ -25,8 +21,6 @@ heapless = "0.8"
2521
log = { version = "0.4", default-features = false }
2622
futures-io = { version = "0.3", default-features = false, optional = true, features = ["std"] }
2723
futures-lite = { version = "1", default-features = false, optional = true }
28-
edge-nal = { version = "0.2", default-features = false, optional = true }
29-
embedded-io-async = { version = "0.6", optional = true, features = ["std"] }
3024
embassy-time = { version = "0.3", optional = true }
3125

3226
[dev-dependencies]

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ use std::os::unix::io::{AsFd, AsRawFd, BorrowedFd, OwnedFd, RawFd};
3838

3939
use reactor::{Event, REACTOR};
4040

41-
#[cfg(feature = "edge-nal")]
42-
pub mod nal;
43-
4441
mod reactor;
4542
mod sys;
4643

0 commit comments

Comments
 (0)