summaryrefslogtreecommitdiff
path: root/examples/Cargo.toml
blob: 49c5316c0688156de276943d6aedbf83c06078cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2018"
name = "nrf-softdevice-examples"
version = "0.1.0"

[features]
default = [ "defmt-default" ]
defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []

[dependencies]
async-flash = { version = "0.1.0", path = "../async-flash" }
cortex-m        = { version = "0.6.3" }
cortex-m-rt = "0.6.12"
cortex-m-rtic = { version = "0.5.5", optional = true }
defmt = "0.1.0"
defmt-rtt = "0.1.0"
panic-probe = "0.1.0"
nrf52840-hal    = { version = "0.11.0" }
nrf-softdevice = { version = "0.1.0", path = "../nrf-softdevice", features = ["defmt-trace", "nrf52840", "s140", "ble-peripheral", "ble-central"] }
nrf-softdevice-s140 = { version = "0.1.1", path = "../nrf-softdevice-s140" }
static-executor  = { version = "0.1.0", features=["defmt"]}
static-executor-cortex-m  = { version = "0.1.0" }
futures = { version = "0.3.5", default-features = false }

[[bin]]
name = "rtic"
required-features = ["cortex-m-rtic"]