Skip to content

Commit

Permalink
Merge pull request #570 from mrmonday/dep-upgrade
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
mrmonday committed Jun 1, 2022
2 parents a802148 + 5e620ce commit 49768c4
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pnet_transport = { path = "pnet_transport", version = "0.30.0", optional = true,
pnet_packet = { path = "pnet_packet", version = "0.30.0", default-features = false }

[dev-dependencies]
time = "0.3.5"
time = "0.3.9"

[[example]]
name = "arp_packet"
Expand Down
4 changes: 2 additions & 2 deletions pnet_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ edition = "2021"

[dependencies]
no-std-net = { version = "0.6.0", default-features = false }
serde = { version = "1.0.126", optional = true, default-features = false }
serde = { version = "1.0.137", optional = true, default-features = false }

[dev-dependencies]
serde_test = "1.0.126"
serde_test = "1.0.137"

[features]
std = ["no-std-net/std"]
Expand Down
6 changes: 3 additions & 3 deletions pnet_datalink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ std = ["pnet_base/std"]
default = ["std"]

[dependencies]
libc = "0.2.97"
libc = "0.2.126"
ipnetwork = "0.19.0"
pnet_base = { path = "../pnet_base", version = "0.30.0", default-features = false }
pnet_sys = { path = "../pnet_sys", version = "0.30.0" }

pcap = { version = "0.8.1", optional = true }
pcap = { version = "0.9.2", optional = true }
netmap_sys = { version = "0.1.4", optional = true, features = ["netmap_with_libs"] }
serde = { version = "1.0.126", optional = true, default-features = false, features = [ "derive" ] }
serde = { version = "1.0.137", optional = true, default-features = false, features = [ "derive" ] }

[dev-dependencies]
pnet = { path = "../", version = "0.30.0" }
Expand Down
10 changes: 5 additions & 5 deletions pnet_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ travis = []

[dev-dependencies]
pnet_macros_support = { path = "../pnet_macros_support", version = "0.30.0" }
trybuild = "1.0.42"
trybuild = "1.0.61"

[dependencies]
proc-macro2 = "1.0.26"
quote = "1.0.9"
syn = { version = "1.0.72", features = ["full"] }
regex = "1.5.4"
proc-macro2 = "1.0.39"
quote = "1.0.18"
syn = { version = "1.0.95", features = ["full"] }
regex = "1.5.6"
2 changes: 1 addition & 1 deletion pnet_packet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default = ["std"]

[dev-dependencies]
hex = "0.4.3"
criterion = {version = "0.3.5", features = ["html_reports"]} #added HTML feature becuase of the annoying warnings when running the tests
criterion = { version = "0.3.5", features = ["html_reports"] } #added HTML feature becuase of the annoying warnings when running the tests

[build-dependencies]
glob = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion pnet_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["network-programming"]
edition = "2021"

[dependencies]
libc = "0.2.117"
libc = "0.2.126"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = [ "winsock2", "ws2ipdef" ] }
2 changes: 1 addition & 1 deletion pnet_transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["network-programming"]
edition = "2021"

[dependencies]
libc = "0.2.94"
libc = "0.2.126"
pnet_base = { path = "../pnet_base", version = "0.30.0", default-features = false }
pnet_sys = { path = "../pnet_sys", version = "0.30.0" }
pnet_packet = { path = "../pnet_packet", version = "0.30.0" }
Expand Down

0 comments on commit 49768c4

Please sign in to comment.