From 99c140692397040298fd91c051b754e2cf753618 Mon Sep 17 00:00:00 2001 From: chrysn Date: Mon, 29 Jan 2024 22:00:49 +0100 Subject: [PATCH] Bump version * Add autoinit module. * Drop SUIT support. The module was in such disrepair in the previous that it was apparently not used. * SAUL: Compatibly follow renaming of G* units done in C * Add constants for common error values. * Add initializers based on peripheral numbers. * Add BOARD const. * gcoap: * Allow registration without scope for 'static listeners * Provide link encoder based on coap_handler::wkc * Support coap-message 0.3 / coap-handler 0.2 * Support embedded-hal 1.0 on selected modules. * Add tests for mutex and random. * Small refactorings. * Fixes to existing tests. * riot-sys is pulled to the latest version in this commit because there is no cross-version testing happening. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e0afd64..45dda09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "riot-wrappers" -version = "0.8.1" +version = "0.8.2" authors = ["Christian Amsüss "] edition = "2021" rust-version = "1.65" @@ -22,7 +22,7 @@ embedded-hal-0-2 = { package = "embedded-hal", version = "0.2.4", features = ["u embedded-hal = "1" switch-hal = "0.4.0" nb = "0.1.1" -riot-sys = "0.7.8" +riot-sys = "0.7.10" num-traits = { version = "0.2", default-features = false } mutex-trait = "0.2"