aboutsummaryrefslogtreecommitdiff
path: root/embassy-boot-nrf/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-01-11 18:55:59 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-11 18:55:59 +0100
commite0775fbc8ab1ecc83bce42fe6e11accf481bc9e1 (patch)
tree3d5119500fbb8627829e54e6bc999c3689ab4a0f /embassy-boot-nrf/Cargo.toml
parentb452a6bcf6858893a85882614e2dcde5a3405748 (diff)
Flatten embassy-boot dir tree
Diffstat (limited to 'embassy-boot-nrf/Cargo.toml')
-rw-r--r--embassy-boot-nrf/Cargo.toml44
1 files changed, 44 insertions, 0 deletions
diff --git a/embassy-boot-nrf/Cargo.toml b/embassy-boot-nrf/Cargo.toml
new file mode 100644
index 000000000..7fc53648a
--- /dev/null
+++ b/embassy-boot-nrf/Cargo.toml
@@ -0,0 +1,44 @@
1[package]
2edition = "2021"
3name = "embassy-boot-nrf"
4version = "0.1.0"
5description = "Bootloader lib for nRF chips"
6license = "MIT OR Apache-2.0"
7repository = "https://github.com/embassy-rs/embassy"
8categories = [
9 "embedded",
10 "no-std",
11 "asynchronous",
12]
13
14[package.metadata.embassy_docs]
15src_base = "https://github.com/embassy-rs/embassy/blob/embassy-boot-nrf-v$VERSION/embassy-boot-nrf/src/"
16src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-boot-nrf/src/"
17features = ["embassy-nrf/nrf52840"]
18target = "thumbv7em-none-eabi"
19
20[lib]
21
22[dependencies]
23defmt = { version = "0.3", optional = true }
24
25embassy-sync = { version = "0.5.0", path = "../embassy-sync" }
26embassy-nrf = { version = "0.1.0", path = "../embassy-nrf", default-features = false }
27embassy-boot = { version = "0.1.0", path = "../embassy-boot" }
28cortex-m = { version = "0.7.6" }
29cortex-m-rt = { version = "0.7" }
30embedded-storage = "0.3.1"
31embedded-storage-async = { version = "0.4.1" }
32cfg-if = "1.0.0"
33
34nrf-softdevice-mbr = { version = "0.2.0", optional = true }
35
36[features]
37defmt = [
38 "dep:defmt",
39 "embassy-boot/defmt",
40 "embassy-nrf/defmt",
41]
42softdevice = [
43 "nrf-softdevice-mbr",
44]