aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-04 21:10:24 +0000
committerGitHub <noreply@github.com>2023-03-04 21:10:24 +0000
commit7c7d6558f6d9c50fbb4d2487c98c9a5be15f2f7b (patch)
tree80a47f0dc40059014e9448c4c2eb34c54dff45fe /Cargo.toml
parent1c5db277e4161470136dbd2a11e914ff1d383581 (diff)
parent98c5490d94950608d31cd5ad9dd260f2f853735c (diff)
Merge #694
694: RTIC 2 r=AfoHT a=korken89 Co-authored-by: Emil Fresk <emil.fresk@gmail.com> Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml64
1 files changed, 9 insertions, 55 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 68fea4c..888a6ee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,57 +1,18 @@
-[package]
-authors = [
- "The Real-Time Interrupt-driven Concurrency developers",
- "Jorge Aparicio <jorge@japaric.io>",
- "Per Lindgren <per.lindgren@ltu.se>",
+[workspace]
+members = [
+ "rtic",
+ "rtic-sync",
+ "rtic-common",
+ "rtic-macros",
+ "rtic-monotonics",
+ "rtic-time",
+ "xtask",
]
-categories = ["concurrency", "embedded", "no-std"]
-description = "Real-Time Interrupt-driven Concurrency (RTIC): a concurrency framework for building real-time systems"
-documentation = "https://rtic.rs/"
-edition = "2021"
-keywords = ["arm", "cortex-m"]
-license = "MIT OR Apache-2.0"
-name = "cortex-m-rtic"
-readme = "README.md"
-repository = "https://github.com/rtic-rs/cortex-m-rtic"
-
-version = "1.1.4"
-
-[lib]
-name = "rtic"
-
-[dependencies]
-cortex-m = "0.7.0"
-cortex-m-rtic-macros = { path = "macros", version = "1.1.6" }
-rtic-monotonic = "1.0.0"
-rtic-core = "1.0.0"
-heapless = "0.7.7"
-bare-metal = "1.0.0"
-
-[build-dependencies]
-version_check = "0.9"
-
-[dev-dependencies]
-lm3s6965 = "0.1.3"
-cortex-m-semihosting = "0.5.0"
-systick-monotonic = "1.0.0"
-
-[dev-dependencies.panic-semihosting]
-features = ["exit"]
-version = "0.6.0"
-
-[target.x86_64-unknown-linux-gnu.dev-dependencies]
-trybuild = "1"
[profile.release]
codegen-units = 1
lto = true
-[workspace]
-members = [
- "macros",
- "xtask",
-]
-
# do not optimize proc-macro deps or build scripts
[profile.dev.build-override]
codegen-units = 16
@@ -70,10 +31,3 @@ overflow-checks = false
[patch.crates-io]
lm3s6965 = { git = "https://github.com/japaric/lm3s6965" }
-
-[features]
-test-critical-section = ["cortex-m/critical-section-single-core"]
-
-[[example]]
-name = "pool"
-required-features = ["test-critical-section"]