2020-06-09 09:52:27 +00:00
|
|
|
[package]
|
|
|
|
authors = ["Jorge Aparicio <jorge.aparicio@ferrous-systems.com>"]
|
|
|
|
edition = "2018"
|
2020-07-10 09:09:33 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-06-09 09:52:27 +00:00
|
|
|
name = "dk"
|
2020-07-10 09:09:33 +00:00
|
|
|
version = "0.0.0"
|
2020-06-09 09:52:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-12-06 17:14:36 +00:00
|
|
|
cortex-m = {version = "0.7.6", features = ["critical-section-single-core"]}
|
|
|
|
cortex-m-rt = "0.7.2"
|
|
|
|
embedded-hal = "0.2.7"
|
2022-01-06 13:37:39 +00:00
|
|
|
hal = { package = "nrf52840-hal", version = "0.14.0" }
|
2021-12-20 14:37:28 +00:00
|
|
|
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
|
2022-12-06 17:14:36 +00:00
|
|
|
defmt = "0.3.2"
|
|
|
|
defmt-rtt = "0.3.2"
|
2020-06-10 10:09:21 +00:00
|
|
|
|
|
|
|
[features]
|
2021-04-08 11:59:01 +00:00
|
|
|
advanced = []
|
2021-04-08 09:27:00 +00:00
|
|
|
beginner = []
|
2021-04-08 11:59:01 +00:00
|
|
|
|
|
|
|
default = [
|
2022-12-06 14:13:20 +00:00
|
|
|
"other-feature"
|
2021-04-08 11:59:01 +00:00
|
|
|
]
|
2022-12-06 14:13:20 +00:00
|
|
|
other-feature = []
|
2021-04-08 11:59:01 +00:00
|
|
|
|
|
|
|
# do NOT modify these features
|
|
|
|
defmt-default = []
|
|
|
|
defmt-trace = []
|
|
|
|
defmt-debug = []
|
|
|
|
defmt-info = []
|
|
|
|
defmt-warn = []
|
|
|
|
defmt-error = []
|