Skip to content

Commit

Permalink
fix(coapcore): Make oluru module test runnable
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Jul 2, 2024
1 parent e0b0e75 commit fb45e92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/lib/coapcore/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#![no_std]
// Might warrant a standalone crate at some point
mod oluru;
//
// This is pub only to make the doctests run (but the crate's pub-ness needs a major overhaul
// anyway)
pub mod oluru;
pub mod seccontext;
4 changes: 2 additions & 2 deletions src/lib/coapcore/src/oluru.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ pub trait PriorityLevel {
///
/// # Usage
///
/// ```ignore
/// use crate::oluru::{OrderedPool, PriorityLevel};
/// ```
/// use coapcore::oluru::{OrderedPool, PriorityLevel};
///
/// #[derive(Debug)]
/// struct MyValue {
Expand Down

0 comments on commit fb45e92

Please sign in to comment.