From 86dc086379a3d53373dce0b9b684dbf12922f2e4 Mon Sep 17 00:00:00 2001 From: chrysn Date: Mon, 1 Aug 2022 16:07:47 +0200 Subject: [PATCH] rust: Bring lock files in sync with toml files The riotmodules dependency was missed in bc8ec6d5, and while generally it does not severly harm builds, it does harm builds riotdocker CI where branches are switched, which is blocked by dirty files in the checkout. The riot-wrappers version was missed when what is now 5e75f4bd was rebased onto fdc4e11a. --- examples/rust-gcoap/Cargo.lock | 5 +++++ examples/rust-hello-world/Cargo.lock | 5 +++++ sys/rust_riotmodules_standalone/Cargo.lock | 3 ++- tests/rust_minimal/Cargo.lock | 5 +++++ 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/examples/rust-gcoap/Cargo.lock b/examples/rust-gcoap/Cargo.lock index 30a5f622cc..939c985541 100644 --- a/examples/rust-gcoap/Cargo.lock +++ b/examples/rust-gcoap/Cargo.lock @@ -660,8 +660,13 @@ dependencies = [ "coap-message-demos", "riot-coap-handler-demos", "riot-wrappers", + "rust_riotmodules", ] +[[package]] +name = "rust_riotmodules" +version = "0.1.0" + [[package]] name = "rustc-hash" version = "1.1.0" diff --git a/examples/rust-hello-world/Cargo.lock b/examples/rust-hello-world/Cargo.lock index 504de50d2b..24943670bf 100644 --- a/examples/rust-hello-world/Cargo.lock +++ b/examples/rust-hello-world/Cargo.lock @@ -536,8 +536,13 @@ name = "rust-hello-world" version = "0.1.0" dependencies = [ "riot-wrappers", + "rust_riotmodules", ] +[[package]] +name = "rust_riotmodules" +version = "0.1.0" + [[package]] name = "rustc-hash" version = "1.1.0" diff --git a/sys/rust_riotmodules_standalone/Cargo.lock b/sys/rust_riotmodules_standalone/Cargo.lock index 439acede22..485ff8cb6a 100644 --- a/sys/rust_riotmodules_standalone/Cargo.lock +++ b/sys/rust_riotmodules_standalone/Cargo.lock @@ -493,7 +493,8 @@ dependencies = [ [[package]] name = "riot-wrappers" -version = "0.7.22" +version = "0.7.23" +source = "git+https://github.com/RIOT-OS/rust-riot-wrappers#db9d163e3eddcb7154edcf25db7207e4123964ee" dependencies = [ "bare-metal 1.0.0", "cstr_core", diff --git a/tests/rust_minimal/Cargo.lock b/tests/rust_minimal/Cargo.lock index ab88a39553..91a5297046 100644 --- a/tests/rust_minimal/Cargo.lock +++ b/tests/rust_minimal/Cargo.lock @@ -536,8 +536,13 @@ name = "rust-minimal" version = "0.1.0" dependencies = [ "riot-wrappers", + "rust_riotmodules", ] +[[package]] +name = "rust_riotmodules" +version = "0.1.0" + [[package]] name = "rustc-hash" version = "1.1.0"