2020-09-22 18:03:43 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
|
|
edition = "2018"
|
2021-01-01 22:41:59 +01:00
|
|
|
name = "embassy-nrf-examples"
|
2020-09-22 18:03:43 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [
|
|
|
|
"defmt-default",
|
|
|
|
]
|
|
|
|
defmt-default = []
|
|
|
|
defmt-trace = []
|
|
|
|
defmt-debug = []
|
|
|
|
defmt-info = []
|
|
|
|
defmt-warn = []
|
|
|
|
defmt-error = []
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-01 00:23:54 +01:00
|
|
|
embassy = { version = "0.1.0", path = "../embassy", features = ["defmt", "defmt-trace"] }
|
2021-03-02 21:14:58 +01:00
|
|
|
embassy-traits = { version = "0.1.0", path = "../embassy-traits", features = ["defmt"] }
|
2021-05-11 03:04:59 +02:00
|
|
|
embassy-nrf = { version = "0.1.0", path = "../embassy-nrf", features = ["defmt", "defmt-trace", "nrf52840"] }
|
2020-11-01 17:17:24 +01:00
|
|
|
|
2021-02-24 08:44:23 +01:00
|
|
|
defmt = "0.2.0"
|
|
|
|
defmt-rtt = "0.2.0"
|
2020-11-01 17:17:24 +01:00
|
|
|
|
2021-02-28 22:05:37 +01:00
|
|
|
cortex-m = { version = "0.7.1", features = ["inline-asm"] }
|
2020-12-01 17:46:56 +01:00
|
|
|
cortex-m-rt = "0.6.13"
|
2020-09-22 18:03:43 +02:00
|
|
|
embedded-hal = { version = "0.2.4" }
|
2021-05-02 20:58:01 +02:00
|
|
|
panic-probe = { version = "0.2.0", features = ["print-defmt"] }
|
|
|
|
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
|