aboutsummaryrefslogtreecommitdiff
path: root/embassy-cortex-m/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-cortex-m/Cargo.toml')
-rw-r--r--embassy-cortex-m/Cargo.toml45
1 files changed, 0 insertions, 45 deletions
diff --git a/embassy-cortex-m/Cargo.toml b/embassy-cortex-m/Cargo.toml
deleted file mode 100644
index 70adda7df..000000000
--- a/embassy-cortex-m/Cargo.toml
+++ /dev/null
@@ -1,45 +0,0 @@
1[package]
2name = "embassy-cortex-m"
3version = "0.1.0"
4edition = "2021"
5license = "MIT OR Apache-2.0"
6
7[package.metadata.embassy_docs]
8src_base = "https://github.com/embassy-rs/embassy/blob/embassy-cortex-m-v$VERSION/embassy-cortex-m/src/"
9src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-cortex-m/src/"
10features = ["prio-bits-3"]
11flavors = [
12 { name = "thumbv6m-none-eabi", target = "thumbv6m-none-eabi", features = [] },
13 { name = "thumbv7m-none-eabi", target = "thumbv7m-none-eabi", features = [] },
14 { name = "thumbv7em-none-eabi", target = "thumbv7em-none-eabi", features = [] },
15 { name = "thumbv7em-none-eabihf", target = "thumbv7em-none-eabihf", features = [] },
16 { name = "thumbv8m.main-none-eabihf", target = "thumbv8m.main-none-eabihf", features = [] },
17]
18
19[features]
20default = []
21
22# Define the number of NVIC priority bits.
23prio-bits-0 = []
24prio-bits-1 = []
25prio-bits-2 = []
26prio-bits-3 = []
27prio-bits-4 = []
28prio-bits-5 = []
29prio-bits-6 = []
30prio-bits-7 = []
31prio-bits-8 = []
32
33[dependencies]
34defmt = { version = "0.3", optional = true }
35log = { version = "0.4.14", optional = true }
36
37embassy-sync = { version = "0.2.0", path = "../embassy-sync" }
38embassy-executor = { version = "0.2.0", path = "../embassy-executor"}
39embassy-macros = { version = "0.2.0", path = "../embassy-macros"}
40embassy-hal-common = { version = "0.1.0", path = "../embassy-hal-common"}
41atomic-polyfill = "1.0.1"
42critical-section = "1.1"
43cfg-if = "1.0.0"
44cortex-m = "0.7.6"
45