File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 "
3838libc = " 0.2.139"
3939netdev = " 0.42.0"
4040socket2 = { version = " 0.6" , features = [" all" ] }
@@ -55,7 +55,7 @@ objc2-core-foundation = "0.3.2"
5555objc2-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"
5959netlink-packet-core = " 0.8.1"
6060netlink-proto = " 0.12.0"
6161netlink-sys = " 0.8.7"
@@ -82,8 +82,8 @@ testresult = "0.4.1"
8282tracing-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 ]
Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments