Skip to content

Commit

Permalink
Release v0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmonday committed Feb 3, 2023
1 parent 77305b2 commit b206925
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet"
version = "0.32.0"
version = "0.33.0"
authors = [ "Robert Clipsham <robert@octarineparrot.com>" ]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -25,11 +25,11 @@ default = ["std"]
[dependencies]
ipnetwork = { version = "0.20.0", optional = true }

pnet_base = { path = "pnet_base", version = "0.32.0", default-features = false }
pnet_sys = { path = "pnet_sys", version = "0.32.0", optional = true, default-features = false }
pnet_datalink = { path = "pnet_datalink", version = "0.32.0", optional = true, default-features = false }
pnet_transport = { path = "pnet_transport", version = "0.32.0", optional = true, default-features = false }
pnet_packet = { path = "pnet_packet", version = "0.32.0", default-features = false }
pnet_base = { path = "pnet_base", version = "0.33.0", default-features = false }
pnet_sys = { path = "pnet_sys", version = "0.33.0", optional = true, default-features = false }
pnet_datalink = { path = "pnet_datalink", version = "0.33.0", optional = true, default-features = false }
pnet_transport = { path = "pnet_transport", version = "0.33.0", optional = true, default-features = false }
pnet_packet = { path = "pnet_packet", version = "0.33.0", default-features = false }

[dev-dependencies]
time = "0.3.17"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -68,7 +68,7 @@ To use `libpnet` in your project, add the following to your Cargo.toml:

```
[dependencies.pnet]
version = "0.32.0"
version = "0.33.0"
```

`libpnet` should work with the latest stable version of Rust.
Expand Down
2 changes: 1 addition & 1 deletion pnet_base/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet_base"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Linus Färnstrand <faern@faern.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand Down
6 changes: 3 additions & 3 deletions pnet_datalink/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet_datalink"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Linus Färnstrand <faern@faern.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -19,8 +19,8 @@ default = ["std"]
[dependencies]
libc = "0.2.139"
ipnetwork = "0.20.0"
pnet_base = { path = "../pnet_base", version = "0.32.0", default-features = false }
pnet_sys = { path = "../pnet_sys", version = "0.32.0" }
pnet_base = { path = "../pnet_base", version = "0.33.0", default-features = false }
pnet_sys = { path = "../pnet_sys", version = "0.33.0" }

pcap = { version = "1.0.0", optional = true }
netmap_sys = { version = "0.1.4", optional = true, features = ["netmap_with_libs"] }
Expand Down
4 changes: 2 additions & 2 deletions pnet_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet_macros"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Pierre Chifflier <chifflier@wzdftpd.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -19,7 +19,7 @@ default = []
travis = []

[dev-dependencies]
pnet_macros_support = { path = "../pnet_macros_support", version = "0.32.0" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.33.0" }
trybuild = "1.0.77"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions pnet_macros_support/Cargo.toml
@@ -1,7 +1,7 @@
[package]

name = "pnet_macros_support"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -12,4 +12,4 @@ keywords = ["networking", "bitfields", "packet", "protocol"]
edition = "2021"

[dependencies]
pnet_base = { path = "../pnet_base", version = "0.32.0", default-features = false }
pnet_base = { path = "../pnet_base", version = "0.33.0", default-features = false }
8 changes: 4 additions & 4 deletions pnet_packet/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet_packet"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -12,9 +12,9 @@ categories = ["network-programming", "parser-implementations"]
edition = "2018"

[dependencies]
pnet_base = { path = "../pnet_base", version = "0.32.0", default-features = false }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.32.0" }
pnet_macros = { path = "../pnet_macros", version = "0.32.0" }
pnet_base = { path = "../pnet_base", version = "0.33.0", default-features = false }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.33.0" }
pnet_macros = { path = "../pnet_macros", version = "0.33.0" }

[features]
std = ["pnet_base/std"]
Expand Down
2 changes: 1 addition & 1 deletion pnet_sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet_sys"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>", "Linus Färnstrand <faern@faern.net>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand Down
8 changes: 4 additions & 4 deletions pnet_transport/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pnet_transport"
version = "0.32.0"
version = "0.33.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -13,9 +13,9 @@ edition = "2021"

[dependencies]
libc = "0.2.139"
pnet_base = { path = "../pnet_base", version = "0.32.0", default-features = false }
pnet_sys = { path = "../pnet_sys", version = "0.32.0" }
pnet_packet = { path = "../pnet_packet", version = "0.32.0" }
pnet_base = { path = "../pnet_base", version = "0.33.0", default-features = false }
pnet_sys = { path = "../pnet_sys", version = "0.33.0" }
pnet_packet = { path = "../pnet_packet", version = "0.33.0" }

[features]
std = ["pnet_base/std"]
Expand Down

0 comments on commit b206925

Please sign in to comment.