aboutsummaryrefslogtreecommitdiff
path: root/rtic-common/Cargo.toml
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2023-01-29 20:16:23 +0100
committerHenrik Tjäder <henrik@tjaders.com>2023-03-01 00:33:38 +0100
commite65e532c2a342f77080ac6fc8e5be11aa7d82575 (patch)
tree5a1f21ad66e277bd13e75c8f29bbd89ba4e10a46 /rtic-common/Cargo.toml
parent58692a35e87ddc8b8faca5bb262070d343ceb869 (diff)
Move common data structures to `rtic-common`
Diffstat (limited to 'rtic-common/Cargo.toml')
-rw-r--r--rtic-common/Cargo.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/rtic-common/Cargo.toml b/rtic-common/Cargo.toml
new file mode 100644
index 0000000..258caae
--- /dev/null
+++ b/rtic-common/Cargo.toml
@@ -0,0 +1,13 @@
+[package]
+name = "rtic-common"
+version = "1.0.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+critical-section = "1"
+
+[features]
+default = []
+testing = ["critical-section/std"]