mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
22 lines
467 B
TOML
22 lines
467 B
TOML
[package]
|
|
authors = ["Jorge Aparicio <jorge@japaric.io>"]
|
|
edition = "2018"
|
|
name = "homogeneous"
|
|
# this crate is only used for testing
|
|
publish = false
|
|
version = "0.0.0-alpha.0"
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7.3", optional = true }
|
|
bare-metal = { version = "0.2.4", optional = true }
|
|
|
|
[dependencies.cortex-m-rtic]
|
|
path = ".."
|
|
features = ["homogeneous"]
|
|
|
|
[features]
|
|
default = ["bare-metal"]
|
|
cortex-m-7 = ["cortex-m"]
|
|
|
|
[dev-dependencies]
|
|
panic-halt = "0.2.0"
|