Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ members = [
]

[workspace.package]
version = "0.23.1"
version = "0.23.2"
edition = "2021"
authors = ["shellrow <shellrow@foctal.com>"]

[workspace.dependencies]
nex-core = { version = "0.23.1", path = "nex-core" }
nex-datalink = { version = "0.23.1", path = "nex-datalink" }
nex-packet = { version = "0.23.1", path = "nex-packet" }
nex-sys = { version = "0.23.1", path = "nex-sys" }
nex-socket = { version = "0.23.1", path = "nex-socket" }
nex-core = { version = "0.23.2", path = "nex-core" }
nex-datalink = { version = "0.23.2", path = "nex-datalink" }
nex-packet = { version = "0.23.2", path = "nex-packet" }
nex-sys = { version = "0.23.2", path = "nex-sys" }
nex-socket = { version = "0.23.2", path = "nex-socket" }
serde = { version = "1" }
libc = "0.2"
netdev = { version = "0.37" }
netdev = { version = "0.38" }
bytes = "1"
tokio = { version = "1" }
rand = "0.8"
1 change: 0 additions & 1 deletion nex-core/src/device.rs

This file was deleted.

1 change: 0 additions & 1 deletion nex-core/src/gateway.rs

This file was deleted.

2 changes: 1 addition & 1 deletion nex-core/src/interface.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub use netdev::interface::*;
pub use netdev::*;
2 changes: 0 additions & 2 deletions nex-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
pub use netdev;

pub mod bitfield;
pub mod device;
pub mod gateway;
pub mod interface;
pub mod ip;
pub mod mac;
2 changes: 1 addition & 1 deletion nex-core/src/mac.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub use netdev::mac::*;
pub use netdev::net::mac::*;