summaryrefslogtreecommitdiffstats
path: root/ble/Cargo.toml
blob: ad11b1897f30438693b2409ed45e906576c6632a (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
35
36
37
38
[package]
name = "ble"
version = "0.1.0"
authors = ["Brian Cully <bjc@kublai.com>"]
edition = "2018"

[dependencies]
nrf52840-mdk-bsp = { path = "../../nrf52-hal/boards/nrf52840-mdk" }
nrf52840-hal = "0.8"
rubble = "0.0"
rubble-nrf52 = "0.0"
cortex-m = "~0.6"
cortex-m-rt = "~0.6"
embedded-hal = "0.2"
panic-semihosting = "~0.5"
nb = "~0.1"
log = "0.4"
starb = "0.1"
clint = "0.2"
cortex-m-semihosting = "0.3"

[features]
default = ["rt", "rubble-nrf52/52840"]
rt = ["nrf52840-hal/rt"]

[patch.crates-io]
nrf52840-hal = { path = "../../nrf52-hal/nrf52840-hal" }

[profile.dev]
incremental = false
codegen-units = 1
debug = true
lto = false

[profile.release]
debug = true
lto = true
opt-level = "s"