Skip to content

Commit 97ece70

Browse files
committed
Release v0.35.0
1 parent 49c8c68 commit 97ece70

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = [ "Robert Clipsham <[email protected]>" ]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"
@@ -25,11 +25,11 @@ default = ["std"]
2525
[dependencies]
2626
ipnetwork = { version = "0.20.0", optional = true }
2727

28-
pnet_base = { path = "pnet_base", version = "0.34.0", default-features = false }
29-
pnet_sys = { path = "pnet_sys", version = "0.34.0", optional = true, default-features = false }
30-
pnet_datalink = { path = "pnet_datalink", version = "0.34.0", optional = true, default-features = false }
31-
pnet_transport = { path = "pnet_transport", version = "0.34.0", optional = true, default-features = false }
32-
pnet_packet = { path = "pnet_packet", version = "0.34.0", default-features = false }
28+
pnet_base = { path = "pnet_base", version = "0.35.0", default-features = false }
29+
pnet_sys = { path = "pnet_sys", version = "0.35.0", optional = true, default-features = false }
30+
pnet_datalink = { path = "pnet_datalink", version = "0.35.0", optional = true, default-features = false }
31+
pnet_transport = { path = "pnet_transport", version = "0.35.0", optional = true, default-features = false }
32+
pnet_packet = { path = "pnet_packet", version = "0.35.0", default-features = false }
3333

3434
[dev-dependencies]
3535
time = "0.3.23"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ To use `libpnet` in your project, add the following to your Cargo.toml:
6868

6969
```
7070
[dependencies.pnet]
71-
version = "0.34.0"
71+
version = "0.35.0"
7272
```
7373

7474
`libpnet` should work with the latest stable version of Rust.

pnet_base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet_base"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = ["Robert Clipsham <[email protected]>", "Linus Färnstrand <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"

pnet_datalink/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet_datalink"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = ["Robert Clipsham <[email protected]>", "Linus Färnstrand <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"
@@ -19,8 +19,8 @@ default = ["std"]
1919
[dependencies]
2020
libc = "0.2.147"
2121
ipnetwork = "0.20.0"
22-
pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false }
23-
pnet_sys = { path = "../pnet_sys", version = "0.34.0" }
22+
pnet_base = { path = "../pnet_base", version = "0.35.0", default-features = false }
23+
pnet_sys = { path = "../pnet_sys", version = "0.35.0" }
2424

2525
pcap = { version = "1.1.0", optional = true }
2626
netmap_sys = { version = "0.1.4", optional = true, features = ["netmap_with_libs"] }

pnet_macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet_macros"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = ["Robert Clipsham <[email protected]>", "Pierre Chifflier <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"
@@ -19,7 +19,7 @@ default = []
1919
travis = []
2020

2121
[dev-dependencies]
22-
pnet_macros_support = { path = "../pnet_macros_support", version = "0.34.0" }
22+
pnet_macros_support = { path = "../pnet_macros_support", version = "0.35.0" }
2323
trybuild = "1.0.81"
2424

2525
[dependencies]

pnet_macros_support/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "pnet_macros_support"
4-
version = "0.34.0"
4+
version = "0.35.0"
55
authors = ["Robert Clipsham <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
homepage = "https://github.com/libpnet/libpnet"
@@ -12,4 +12,4 @@ keywords = ["networking", "bitfields", "packet", "protocol"]
1212
edition = "2021"
1313

1414
[dependencies]
15-
pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false }
15+
pnet_base = { path = "../pnet_base", version = "0.35.0", default-features = false }

pnet_packet/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet_packet"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = ["Robert Clipsham <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"
@@ -12,9 +12,9 @@ categories = ["network-programming", "parser-implementations"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false }
16-
pnet_macros_support = { path = "../pnet_macros_support", version = "0.34.0" }
17-
pnet_macros = { path = "../pnet_macros", version = "0.34.0" }
15+
pnet_base = { path = "../pnet_base", version = "0.35.0", default-features = false }
16+
pnet_macros_support = { path = "../pnet_macros_support", version = "0.35.0" }
17+
pnet_macros = { path = "../pnet_macros", version = "0.35.0" }
1818

1919
[features]
2020
std = ["pnet_base/std"]

pnet_sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet_sys"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = ["Robert Clipsham <[email protected]>", "Linus Färnstrand <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"

pnet_transport/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pnet_transport"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
authors = ["Robert Clipsham <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/libpnet/libpnet"
@@ -13,9 +13,9 @@ edition = "2021"
1313

1414
[dependencies]
1515
libc = "0.2.147"
16-
pnet_base = { path = "../pnet_base", version = "0.34.0", default-features = false }
17-
pnet_sys = { path = "../pnet_sys", version = "0.34.0" }
18-
pnet_packet = { path = "../pnet_packet", version = "0.34.0" }
16+
pnet_base = { path = "../pnet_base", version = "0.35.0", default-features = false }
17+
pnet_sys = { path = "../pnet_sys", version = "0.35.0" }
18+
pnet_packet = { path = "../pnet_packet", version = "0.35.0" }
1919

2020
[features]
2121
std = ["pnet_base/std"]

0 commit comments

Comments
 (0)