diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-01-26 21:29:52 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:33:32 +0100 |
| commit | 51d4eccc726d4dc7950aac6f8d74a34ddf669f67 (patch) | |
| tree | 986e53236740c3dd1e446bfc77ae51d289f35402 /rtic-channel/Cargo.toml | |
| parent | 2e96229c912076829d4c2be83a8b5ce27d81ebaa (diff) | |
Fixes in MPSC linked list and dropper handling
Diffstat (limited to 'rtic-channel/Cargo.toml')
| -rw-r--r-- | rtic-channel/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/rtic-channel/Cargo.toml b/rtic-channel/Cargo.toml new file mode 100644 index 0000000..8962352 --- /dev/null +++ b/rtic-channel/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "rtic-channel" +version = "1.0.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +heapless = "0.7" +critical-section = "1" + + +[features] +default = [] +testing = ["critical-section/std"] |
