diff --git a/Cargo.toml b/Cargo.toml index d2d683a6..4af1773c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet" -version = "0.33.0" +version = "0.34.0" authors = [ "Robert Clipsham " ] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" @@ -25,11 +25,11 @@ default = ["std"] [dependencies] ipnetwork = { version = "0.20.0", optional = true } -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 } +pnet_base = { path = "pnet_base", version = "0.34.0", default-features = false } +pnet_sys = { path = "pnet_sys", version = "0.34.0", optional = true, default-features = false } +pnet_datalink = { path = "pnet_datalink", version = "0.34.0", optional = true, default-features = false } +pnet_transport = { path = "pnet_transport", version = "0.34.0", optional = true, default-features = false } +pnet_packet = { path = "pnet_packet", version = "0.34.0", default-features = false } [dev-dependencies] time = "0.3.23" diff --git a/README.md b/README.md index 22f897b0..e6bb4a97 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ To use `libpnet` in your project, add the following to your Cargo.toml: ``` [dependencies.pnet] -version = "0.33.0" +version = "0.34.0" ``` `libpnet` should work with the latest stable version of Rust. diff --git a/pnet_base/Cargo.toml b/pnet_base/Cargo.toml index 1cf02d15..3c547db3 100644 --- a/pnet_base/Cargo.toml +++ b/pnet_base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet_base" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham ", "Linus Färnstrand "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" diff --git a/pnet_datalink/Cargo.toml b/pnet_datalink/Cargo.toml index 127d7d33..455e0df2 100644 --- a/pnet_datalink/Cargo.toml +++ b/pnet_datalink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet_datalink" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham ", "Linus Färnstrand "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" @@ -19,8 +19,8 @@ default = ["std"] [dependencies] libc = "0.2.147" ipnetwork = "0.20.0" -pnet_base = { path = "../pnet_base", version = "0.33.0", default-features = false } -pnet_sys = { path = "../pnet_sys", version = "0.33.0" } +pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false } +pnet_sys = { path = "../pnet_sys", version = "0.34.0" } pcap = { version = "1.1.0", optional = true } netmap_sys = { version = "0.1.4", optional = true, features = ["netmap_with_libs"] } diff --git a/pnet_macros/Cargo.toml b/pnet_macros/Cargo.toml index 0179c115..371bd7ed 100644 --- a/pnet_macros/Cargo.toml +++ b/pnet_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet_macros" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham ", "Pierre Chifflier "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" @@ -19,7 +19,7 @@ default = [] travis = [] [dev-dependencies] -pnet_macros_support = { path = "../pnet_macros_support", version = "0.33.0" } +pnet_macros_support = { path = "../pnet_macros_support", version = "0.34.0" } trybuild = "1.0.81" [dependencies] diff --git a/pnet_macros_support/Cargo.toml b/pnet_macros_support/Cargo.toml index 1af27faf..08a96b29 100644 --- a/pnet_macros_support/Cargo.toml +++ b/pnet_macros_support/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pnet_macros_support" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" @@ -12,4 +12,4 @@ keywords = ["networking", "bitfields", "packet", "protocol"] edition = "2021" [dependencies] -pnet_base = { path = "../pnet_base", version = "0.33.0", default-features = false } +pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false } diff --git a/pnet_packet/Cargo.toml b/pnet_packet/Cargo.toml index 6e172db9..d265291a 100644 --- a/pnet_packet/Cargo.toml +++ b/pnet_packet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet_packet" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" @@ -12,9 +12,9 @@ categories = ["network-programming", "parser-implementations"] edition = "2018" [dependencies] -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" } +pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false } +pnet_macros_support = { path = "../pnet_macros_support", version = "0.34.0" } +pnet_macros = { path = "../pnet_macros", version = "0.34.0" } [features] std = ["pnet_base/std"] diff --git a/pnet_sys/Cargo.toml b/pnet_sys/Cargo.toml index 372b7c7f..49b0cad0 100644 --- a/pnet_sys/Cargo.toml +++ b/pnet_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet_sys" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham ", "Linus Färnstrand "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" diff --git a/pnet_transport/Cargo.toml b/pnet_transport/Cargo.toml index 43ec510d..50c0d2f6 100644 --- a/pnet_transport/Cargo.toml +++ b/pnet_transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pnet_transport" -version = "0.33.0" +version = "0.34.0" authors = ["Robert Clipsham "] license = "MIT/Apache-2.0" homepage = "https://github.com/libpnet/libpnet" @@ -13,9 +13,9 @@ edition = "2021" [dependencies] libc = "0.2.147" -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" } +pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false } +pnet_sys = { path = "../pnet_sys", version = "0.34.0" } +pnet_packet = { path = "../pnet_packet", version = "0.34.0" } [features] std = ["pnet_base/std"]