Skip to content

Commit 97ef90b

Browse files
feat!: update to noq-udp@0.10 and other deps (#134)
update to noq-udp@0.10 and other deps ...so it is updated --------- Co-authored-by: Ruediger Klaehn <rklaehn@protonmail.com>
1 parent d77c60b commit 97ef90b

3 files changed

Lines changed: 138 additions & 33 deletions

File tree

Cargo.lock

Lines changed: 133 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netwatch/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tracing = "0.1"
3434

3535
# non-browser dependencies
3636
[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies]
37-
noq-udp = "0.9"
37+
noq-udp = "0.10"
3838
libc = "0.2.139"
3939
netdev = "0.42.0"
4040
socket2 = { version = "0.6", features = ["all"] }
@@ -55,7 +55,7 @@ objc2-core-foundation = "0.3.2"
5555
objc2-system-configuration = "0.3.2"
5656

5757
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
58-
netlink-packet-route = "0.29.0"
58+
netlink-packet-route = "0.30.0"
5959
netlink-packet-core = "0.8.1"
6060
netlink-proto = "0.12.0"
6161
netlink-sys = "0.8.7"
@@ -82,8 +82,8 @@ testresult = "0.4.1"
8282
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
8383

8484
[target.'cfg(target_os = "linux")'.dev-dependencies]
85-
patchbay = "0.3"
86-
ctor = "0.8"
85+
patchbay = "0.5"
86+
ctor = "0.10"
8787

8888
# *non*-wasm-in-browser test/dev dependencies
8989
[target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dev-dependencies]

netwatch/tests/patchbay.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async fn default_route_after_replug_v4_to_v6() -> TestResult {
9999
assert_eq!(state.default_route_interface.as_deref(), Some("eth0"));
100100

101101
// Replug from the v4 router to the v6 router.
102-
device.replug_iface("eth0", v6_router.id()).await?;
102+
device.iface("eth0").unwrap().replug(v6_router.id()).await?;
103103

104104
let state = device.spawn(|_| State::new())?.await?;
105105
assert!(!state.have_v4, "should not have v4");

0 commit comments

Comments
 (0)