8a4ab29819
Resolves #187 Like the stm32 driver, this has both a non-blocking and blocking API, and implements `rand_core::RngCore` for the blocking API.
32 lines
959 B
TOML
32 lines
959 B
TOML
[package]
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
edition = "2018"
|
|
name = "embassy-nrf-examples"
|
|
version = "0.1.0"
|
|
|
|
[features]
|
|
default = [
|
|
"defmt-default",
|
|
]
|
|
defmt-default = []
|
|
defmt-trace = []
|
|
defmt-debug = []
|
|
defmt-info = []
|
|
defmt-warn = []
|
|
defmt-error = []
|
|
|
|
|
|
[dependencies]
|
|
embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] }
|
|
embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] }
|
|
embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "defmt-trace", "nrf52840"] }
|
|
|
|
defmt = "0.2.0"
|
|
defmt-rtt = "0.2.0"
|
|
|
|
cortex-m = { version = "0.7.1", features = ["inline-asm"] }
|
|
cortex-m-rt = "0.6.13"
|
|
embedded-hal = { version = "0.2.4" }
|
|
panic-probe = { version = "0.2.0", features = ["print-defmt"] }
|
|
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
|
|
rand = { version = "0.8.4", default-features = false }
|