mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
Do not activate critical-section/std by default
This commit is contained in:
parent
d445b20b18
commit
452bad69b4
2 changed files with 4 additions and 1 deletions
|
@ -24,6 +24,5 @@ rtic-common = { version = "1.0.0-alpha.0", path = "../rtic-common" }
|
|||
[dev-dependencies]
|
||||
parking_lot = "0.12"
|
||||
tokio = { version = "1.27", features = ["rt", "macros", "sync", "rt-multi-thread", "time"] }
|
||||
critical-section = { version = "1", features = ["std"] }
|
||||
pretty_env_logger = "0.4"
|
||||
log = "0.4"
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
//! A test that verifies the correctness of the [`TimerQueue`].
|
||||
//!
|
||||
//! To run this test, you need to activate the `critical-section/std` feature.
|
||||
|
||||
use std::{fmt::Debug, time::Duration};
|
||||
|
||||
use parking_lot::Mutex;
|
||||
|
|
Loading…
Reference in a new issue