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
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ members = [
]

[workspace.package]
version = "0.20.0"
version = "0.21.0"
edition = "2021"
authors = ["shellrow <shellrow@fortnium.com>"]

[workspace.dependencies]
nex-core = { version = "0.20.0", path = "nex-core" }
nex-datalink = { version = "0.20.0", path = "nex-datalink" }
nex-packet = { version = "0.20.0", path = "nex-packet" }
nex-sys = { version = "0.20.0", path = "nex-sys" }
nex-socket = { version = "0.20.0", path = "nex-socket" }
nex-core = { version = "0.21.0", path = "nex-core" }
nex-datalink = { version = "0.21.0", path = "nex-datalink" }
nex-packet = { version = "0.21.0", path = "nex-packet" }
nex-sys = { version = "0.21.0", path = "nex-sys" }
nex-socket = { version = "0.21.0", path = "nex-socket" }
serde = { version = "1" }
libc = "0.2"
netdev = { version = "0.36" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To use `nex`, add it as a dependency in your `Cargo.toml`:

```toml
[dependencies]
nex = "0.20"
nex = "0.21"
```

## Using Specific Sub-crates
Expand Down
2 changes: 1 addition & 1 deletion nex-packet/src/flowcontrol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl fmt::Display for FlowControlOpcode {

/// Represents an Ethernet Flow Control packet defined by IEEE 802.3x.
///
/// [EtherTypes::FlowControl](crate::ethernet::EtherTypes::FlowControl) ethertype (0x8808).
/// [EtherType::FlowControl](crate::ethernet::EtherType::FlowControl) ethertype (0x8808).
pub struct FlowControlPacket {
pub command: FlowControlOpcode,
pub quanta: u16be,
Expand Down