From 676424f553d00aa9d112b0e37bd9f2f8cb833bd3 Mon Sep 17 00:00:00 2001 From: chrysn Date: Wed, 30 Oct 2024 10:51:56 +0100 Subject: [PATCH] fixup! Co-authored-by: ROMemories <152802150+ROMemories@users.noreply.github.com> --- examples/coap/Cargo.toml | 4 ++-- src/lib/coapcore/src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/coap/Cargo.toml b/examples/coap/Cargo.toml index c8a788bf4..dc24090e0 100644 --- a/examples/coap/Cargo.toml +++ b/examples/coap/Cargo.toml @@ -12,7 +12,7 @@ workspace = true [dependencies] embassy-executor = { workspace = true, default-features = false } embassy-net = { workspace = true, features = ["udp"] } -embassy-sync.workspace = true +embassy-sync = { workspace = true } embassy-time = { workspace = true, default-features = false } heapless = { workspace = true } riot-rs = { path = "../../src/riot-rs", features = [ @@ -33,4 +33,4 @@ static-alloc = { version = "0.2.5", features = ["polyfill"] } coap-scroll-ring-server = "0.2.0" scroll-ring = "0.1.1" -riot-rs-coap.workspace = true +riot-rs-coap = { workspace = true } diff --git a/src/lib/coapcore/src/lib.rs b/src/lib/coapcore/src/lib.rs index 088339bbd..53d24cc9f 100644 --- a/src/lib/coapcore/src/lib.rs +++ b/src/lib/coapcore/src/lib.rs @@ -1,10 +1,10 @@ -//! A CoAP security for embedded devices, supporting OSCORE/EDHOC and managing credentials +//! A CoAP security for embedded devices, supporting OSCORE/EDHOC and managing credentials. //! //! The crate is under heavy development: Its API is in flux. So far, it has hidden dependencies on a //! particular implementation of the [`coap-message`] provided (it needs to be a //! [`coap_message_implementations::inmemory_write::Message`]). //! -//! ## Logging +//! # Logging //! //! Extensive logging is available in this crate through [`defmt_or_log`], depending on features //! enabled.