diff --git a/drivers/lsm303agr/Cargo.toml b/drivers/lsm303agr/Cargo.toml index b751d71727..2a2b95a18b 100644 --- a/drivers/lsm303agr/Cargo.toml +++ b/drivers/lsm303agr/Cargo.toml @@ -12,4 +12,4 @@ publish = false [dependencies] lsm303agr = "1.0" -riot-wrappers = "^0.8" +riot-wrappers = "^0.9.0" diff --git a/examples/rust-gcoap/Cargo.toml b/examples/rust-gcoap/Cargo.toml index 182baaeb48..7bb7b50be4 100644 --- a/examples/rust-gcoap/Cargo.toml +++ b/examples/rust-gcoap/Cargo.toml @@ -19,7 +19,7 @@ codegen-units = 1 opt-level = "s" [dependencies] -riot-wrappers = { version = "^0.8", features = [ "set_panic_handler", "panic_handler_format", "with_coap_message", "with_coap_handler" ] } +riot-wrappers = { version = "^0.9.0", features = [ "set_panic_handler", "panic_handler_format", "with_coap_message", "with_coap_handler" ] } coap-message-demos = { git = "https://gitlab.com/chrysn/coap-message-demos/", default-features = false } coap-handler-implementations = "0.5" diff --git a/examples/rust-gcoap/src/lib.rs b/examples/rust-gcoap/src/lib.rs index 084e9eb215..03f2549c79 100644 --- a/examples/rust-gcoap/src/lib.rs +++ b/examples/rust-gcoap/src/lib.rs @@ -37,7 +37,7 @@ fn main() { println!("CoAP server ready; waiting for interfaces to settle before reporting addresses..."); let sectimer = ztimer::Clock::sec(); - sectimer.sleep_ticks(2); + sectimer.sleep(ztimer::Ticks(2)); for netif in gnrc::Netif::all() { println!("Active interface from PID {:?} ({:?})", netif.pid(), netif.pid().get_name().unwrap_or("unnamed")); diff --git a/examples/rust-hello-world/Cargo.toml b/examples/rust-hello-world/Cargo.toml index 215d2fe63b..21e200d9b4 100644 --- a/examples/rust-hello-world/Cargo.toml +++ b/examples/rust-hello-world/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["staticlib"] panic = "abort" [dependencies] -riot-wrappers = { version = "0.8", features = [ "set_panic_handler" ] } +riot-wrappers = { version = "0.9.0", features = [ "set_panic_handler" ] } # While currently this example does not use any RIOT modules implemented in # Rust, that may change; it is best practice for any RIOT application that has diff --git a/sys/rust_riotmodules_standalone/Cargo.toml b/sys/rust_riotmodules_standalone/Cargo.toml index 61d3139873..b9e8a93a3a 100644 --- a/sys/rust_riotmodules_standalone/Cargo.toml +++ b/sys/rust_riotmodules_standalone/Cargo.toml @@ -16,7 +16,7 @@ panic = "abort" codegen-units = 1 [dependencies] -riot-wrappers = { version = "0.8", features = [ "set_panic_handler" ] } +riot-wrappers = { version = "0.9.0", features = [ "set_panic_handler" ] } rust_riotmodules = { path = "../rust_riotmodules" } diff --git a/sys/shell/democommands/Cargo.toml b/sys/shell/democommands/Cargo.toml index 1599a443b9..e310fcef7f 100644 --- a/sys/shell/democommands/Cargo.toml +++ b/sys/shell/democommands/Cargo.toml @@ -11,4 +11,4 @@ license = "LGPL-2.1-only" publish = false [dependencies] -riot-wrappers = "^0.8" +riot-wrappers = "^0.9.0" diff --git a/tests/rust_minimal/Cargo.toml b/tests/rust_minimal/Cargo.toml index 1cc386e57d..c2c32358dc 100644 --- a/tests/rust_minimal/Cargo.toml +++ b/tests/rust_minimal/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["staticlib"] panic = "abort" [dependencies] -riot-wrappers = { version = "0.8", features = [ "set_panic_handler" ] } +riot-wrappers = { version = "0.9.0", features = [ "set_panic_handler" ] } # While currently this test does not use any RIOT modules implemented in Rust, # that may change; it is best practice for any RIOT application that has its