mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2024-10-31 22:28:49 +00:00
32 lines
614 B
TOML
32 lines
614 B
TOML
[package]
|
|
authors = ["Jorge Aparicio <jorge.aparicio@ferrous-systems.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
name = "dk"
|
|
version = "0.0.0"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7.3"
|
|
cortex-m-rt = "0.7.1"
|
|
embedded-hal = "0.2.6"
|
|
hal = { package = "nrf52840-hal", version = "0.14.0" }
|
|
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
|
|
defmt = "0.3.0"
|
|
defmt-rtt = "0.3.1"
|
|
|
|
[features]
|
|
advanced = []
|
|
beginner = []
|
|
|
|
default = [
|
|
"other-feature"
|
|
]
|
|
other-feature = []
|
|
|
|
# do NOT modify these features
|
|
defmt-default = []
|
|
defmt-trace = []
|
|
defmt-debug = []
|
|
defmt-info = []
|
|
defmt-warn = []
|
|
defmt-error = []
|