Skip to content

Commit

Permalink
Merge pull request #390 from JuxhinDB/master
Browse files Browse the repository at this point in the history
Version Bump to 0.23.0
  • Loading branch information
JuxhinDB committed Nov 6, 2019
2 parents dddacd8 + aba941c commit cd46f24
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet"
version = "0.22.0"
version = "0.23.0"
authors = [ "Robert Clipsham <robert@octarineparrot.com>" ]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -22,11 +22,11 @@ serde = ["pnet_base/serde"]
[dependencies]
ipnetwork = "0.15.0"

pnet_base = { path = "pnet_base", version = "0.22.0" }
pnet_sys = { path = "pnet_sys", version = "0.22.0" }
pnet_datalink = { path = "pnet_datalink", version = "0.22.0" }
pnet_transport = { path = "pnet_transport", version = "0.22.0" }
pnet_packet = { path = "pnet_packet", version = "0.22.0" }
pnet_base = { path = "pnet_base", version = "0.23.0" }
pnet_sys = { path = "pnet_sys", version = "0.23.0" }
pnet_datalink = { path = "pnet_datalink", version = "0.23.0" }
pnet_transport = { path = "pnet_transport", version = "0.23.0" }
pnet_packet = { path = "pnet_packet", version = "0.23.0" }

[dev-dependencies]
time = ">=0.1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To use `libpnet` in your project, add the following to your Cargo.toml:

```
[dependencies.pnet]
version = "0.22.0"
version = "0.23.0"
```

`libpnet` should work on any Rust channel (stable, beta, or nightly), starting
Expand Down
2 changes: 1 addition & 1 deletion pnet_base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_base"
version = "0.22.0"
version = "0.23.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_datalink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_datalink"
version = "0.22.0"
version = "0.23.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 @@ -14,9 +14,9 @@ netmap = []

[dependencies]
libc = "0.2.42"
ipnetwork = "0.14.0"
pnet_base = { path = "../pnet_base", version = "0.22.0" }
pnet_sys = { path = "../pnet_sys", version = "0.22.0" }
ipnetwork = "0.15.0"
pnet_base = { path = "../pnet_base", version = "0.23.0" }
pnet_sys = { path = "../pnet_sys", version = "0.23.0" }

pcap = { version = "0.7", optional = true }
netmap_sys = { version = ">=0.0", optional = true, features = ["netmap_with_libs"] }
Expand Down
6 changes: 3 additions & 3 deletions pnet_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_macros"
version = "0.22.0"
version = "0.23.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -15,8 +15,8 @@ default = []
travis = []

[dev-dependencies]
pnet_base = { path = "../pnet_base", version = "0.22.0" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.22.0" }
pnet_base = { path = "../pnet_base", version = "0.23.0" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.23.0" }

[dependencies]
regex = "1.0.*"
Expand Down
4 changes: 2 additions & 2 deletions pnet_macros_support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "pnet_macros_support"
version = "0.22.0"
version = "0.23.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,4 +11,4 @@ readme = "../README.md"
keywords = ["networking", "bitfields", "packet", "protocol"]

[dependencies]
pnet_base = { path = "../pnet_base", version = ">=0.22.0" }
pnet_base = { path = "../pnet_base", version = ">=0.23.0" }
6 changes: 3 additions & 3 deletions pnet_packet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_packet"
version = "0.22.0"
version = "0.23.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,8 +11,8 @@ categories = ["network-programming", "parser-implementations"]
build = "build.rs"

[dependencies]
pnet_base = { path = "../pnet_base", version = "0.22.0" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.22.0" }
pnet_base = { path = "../pnet_base", version = "0.23.0" }
pnet_macros_support = { path = "../pnet_macros_support", version = "0.23.0" }

[build-dependencies]
glob = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion pnet_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_sys"
version = "0.22.0"
version = "0.23.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pnet_transport"
version = "0.22.0"
version = "0.23.0"
authors = ["Robert Clipsham <robert@octarineparrot.com>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
Expand All @@ -11,6 +11,6 @@ categories = ["network-programming"]

[dependencies]
libc = "0.2.39"
pnet_base = { path = "../pnet_base", version = "0.22.0" }
pnet_sys = { path = "../pnet_sys", version = "0.22.0" }
pnet_packet = { path = "../pnet_packet", version = "0.22.0" }
pnet_base = { path = "../pnet_base", version = "0.23.0" }
pnet_sys = { path = "../pnet_sys", version = "0.23.0" }
pnet_packet = { path = "../pnet_packet", version = "0.23.0" }

0 comments on commit cd46f24

Please sign in to comment.