aboutsummaryrefslogtreecommitdiff
path: root/rtic-sync/Cargo.toml
diff options
context:
space:
mode:
authorAdinAck <adinackerman@gmail.com>2024-06-19 11:52:38 -0700
committerGitHub <noreply@github.com>2024-06-19 18:52:38 +0000
commitd516d9a214152e7bcecbc14bb3cbd22819039c3e (patch)
tree6368ae641333030c29117f21185c4c2147373877 /rtic-sync/Cargo.toml
parent689c4a068eddfe32956c1975cdc241b26d1751da (diff)
Add Signal to rtic-sync (#934)
* add signal to rtic-sync * woops update changelog * remove example, too comlicated for a doc TODO: add example to rtic-examples repo * fix @korken89's issues * ...remove fence * fix clippy warnings * add tests
Diffstat (limited to 'rtic-sync/Cargo.toml')
-rw-r--r--rtic-sync/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/rtic-sync/Cargo.toml b/rtic-sync/Cargo.toml
index 6fcf900..6d9358f 100644
--- a/rtic-sync/Cargo.toml
+++ b/rtic-sync/Cargo.toml
@@ -29,9 +29,10 @@ embedded-hal-bus = { version = "0.1.0", features = ["async"] }
defmt-03 = { package = "defmt", version = "0.3", optional = true }
[dev-dependencies]
+static_cell = "2.1.0"
tokio = { version = "1", features = ["rt", "macros", "time"] }
[features]
default = []
testing = ["critical-section/std", "rtic-common/testing"]
-defmt-03 = ["dep:defmt-03", "embedded-hal/defmt-03", "embedded-hal-async/defmt-03", "embedded-hal-bus/defmt-03"] \ No newline at end of file
+defmt-03 = ["dep:defmt-03", "embedded-hal/defmt-03", "embedded-hal-async/defmt-03", "embedded-hal-bus/defmt-03"]