2020-09-22 18:03:43 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
name = "embassy-examples"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [
|
|
|
|
"defmt-default",
|
|
|
|
]
|
|
|
|
defmt-default = []
|
|
|
|
defmt-trace = []
|
|
|
|
defmt-debug = []
|
|
|
|
defmt-info = []
|
|
|
|
defmt-warn = []
|
|
|
|
defmt-error = []
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = { version = "0.6.3" }
|
|
|
|
cortex-m-rt = "0.6.12"
|
|
|
|
defmt = "0.1.0"
|
|
|
|
embedded-hal = { version = "0.2.4" }
|
|
|
|
defmt-rtt = "0.1.0"
|
|
|
|
panic-probe = "0.1.0"
|
|
|
|
nrf52840-hal = { version = "0.11.0" }
|
|
|
|
embassy = { version = "0.1.0", path = "../embassy" }
|
2020-09-24 19:56:47 +02:00
|
|
|
embassy-nrf = { version = "0.1.0", path = "../embassy-nrf", features = ["defmt-trace", "52840"] }
|
2020-09-22 18:03:43 +02:00
|
|
|
static-executor = { version = "0.1.0", features=["defmt"]}
|
|
|
|
futures = { version = "0.3.5", default-features = false }
|
2020-09-24 22:46:00 +02:00
|
|
|
futures-intrusive = { version = "0.3.1", default-features = false }
|