Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
Co-authored-by: ROMemories <[email protected]>
  • Loading branch information
chrysn and ROMemories authored Oct 30, 2024
1 parent 41571dc commit 676424f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/coap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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 }
4 changes: 2 additions & 2 deletions src/lib/coapcore/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 676424f

Please sign in to comment.