diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-01-29 20:16:23 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:33:38 +0100 |
| commit | e65e532c2a342f77080ac6fc8e5be11aa7d82575 (patch) | |
| tree | 5a1f21ad66e277bd13e75c8f29bbd89ba4e10a46 /rtic-channel/Cargo.toml | |
| parent | 58692a35e87ddc8b8faca5bb262070d343ceb869 (diff) | |
Move common data structures to `rtic-common`
Diffstat (limited to 'rtic-channel/Cargo.toml')
| -rw-r--r-- | rtic-channel/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtic-channel/Cargo.toml b/rtic-channel/Cargo.toml index 5d4cbd0..a0955bc 100644 --- a/rtic-channel/Cargo.toml +++ b/rtic-channel/Cargo.toml @@ -8,6 +8,7 @@ edition = "2021" [dependencies] heapless = "0.7" critical-section = "1" +rtic-common = { version = "1.0.0", path = "../rtic-common" } [dev-dependencies] tokio = { version = "1", features = ["rt", "macros", "time"] } @@ -15,4 +16,4 @@ tokio = { version = "1", features = ["rt", "macros", "time"] } [features] default = [] -testing = ["critical-section/std"] +testing = ["critical-section/std", "rtic-common/testing"] |
