rtic/Cargo.toml

79 lines
1.8 KiB
TOML
Raw Normal View History

2017-03-05 06:26:14 +01:00
[package]
authors = [
2020-06-11 19:18:29 +02:00
"The Real-Time Interrupt-driven Concurrency developers",
"Emil Fresk <emil.fresk@gmail.com>",
"Henrik Tjäder <henrik@tjaders.com>",
"Jorge Aparicio <jorge@japaric.io>",
"Per Lindgren <per.lindgren@ltu.se>",
]
categories = ["concurrency", "embedded", "no-std", "asynchronous"]
description = "Real-Time Interrupt-driven Concurrency (RTIC): a concurrency framework for building real-time systems"
2020-06-11 19:18:29 +02:00
documentation = "https://rtic.rs/"
2021-12-25 13:10:10 +01:00
edition = "2021"
keywords = ["arm", "cortex-m", "risc-v", "embedded", "async", "runtime", "futures", "await", "no-std", "rtos", "bare-metal"]
2017-04-27 22:37:27 +02:00
license = "MIT OR Apache-2.0"
name = "rtic"
2018-11-03 17:02:41 +01:00
readme = "README.md"
repository = "https://github.com/rtic-rs/rtic"
2021-03-04 20:37:15 +01:00
version = "2.0.0-alpha.0"
2017-04-10 05:42:17 +02:00
2018-11-03 17:02:41 +01:00
[lib]
2020-06-11 19:18:29 +02:00
name = "rtic"
2018-11-03 17:02:41 +01:00
[dependencies]
2020-12-30 00:08:06 +01:00
cortex-m = "0.7.0"
rtic-macros = { path = "macros", version = "2.0.0-alpha.0" }
2021-12-25 14:04:30 +01:00
rtic-monotonic = "1.0.0"
rtic-core = "1.0.0"
2021-09-22 13:22:45 +02:00
heapless = "0.7.7"
bare-metal = "1.0.0"
[build-dependencies]
version_check = "0.9"
2018-11-03 17:02:41 +01:00
[dev-dependencies]
lm3s6965 = "0.1.3"
cortex-m-semihosting = "0.5.0"
2021-12-25 14:04:30 +01:00
systick-monotonic = "1.0.0"
2018-11-03 17:02:41 +01:00
[dev-dependencies.panic-semihosting]
features = ["exit"]
version = "0.6.0"
2018-11-03 17:02:41 +01:00
[target.x86_64-unknown-linux-gnu.dev-dependencies]
trybuild = "1"
[profile.release]
2018-11-03 17:02:41 +01:00
codegen-units = 1
lto = true
2018-11-03 17:02:41 +01:00
[workspace]
2023-01-07 17:59:39 +01:00
members = ["macros", "xtask"]
2020-05-26 21:43:11 +02:00
# do not optimize proc-macro deps or build scripts
[profile.dev.build-override]
codegen-units = 16
debug = false
debug-assertions = false
opt-level = 0
overflow-checks = false
2020-05-26 22:08:31 +02:00
2020-05-26 21:43:11 +02:00
[profile.release.build-override]
codegen-units = 16
debug = false
debug-assertions = false
opt-level = 0
overflow-checks = false
2020-12-30 00:08:06 +01:00
[patch.crates-io]
lm3s6965 = { git = "https://github.com/japaric/lm3s6965" }
[features]
test-critical-section = ["cortex-m/critical-section-single-core"]
2023-01-07 17:59:39 +01:00
# [[example]]
# name = "pool"
# required-features = ["test-critical-section"]