21 lines
452 B
TOML
21 lines
452 B
TOML
[package]
|
|
name = "nrf52-dk-app"
|
|
version = "0.1.0"
|
|
authors = ["Andres O. Vela"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7.2"
|
|
cortex-m-rt = "0.6.14"
|
|
cortex-m-semihosting = "0.3.7"
|
|
|
|
panic-semihosting = "0.5.6"
|
|
|
|
nrf52-pac = { git = "https://git.blackfinn.de/rust/nrf52-pac.git" }
|
|
|
|
[dependencies.embedded-hal]
|
|
version = "0.2.3"
|
|
features = ["unproven"]
|