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"
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-15 17:33:44 +01:00
|
|
|
embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt"] }
|
2021-06-02 01:30:07 +02:00
|
|
|
embassy-traits = { version = "0.1.0", path = "../../embassy-traits", features = ["defmt"] }
|
2021-11-15 17:19:19 +01:00
|
|
|
embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] }
|
2021-12-13 01:13:37 +01:00
|
|
|
embassy-hal-common = { version = "0.1.0", path = "../../embassy-hal-common" }
|
2020-11-01 17:17:24 +01:00
|
|
|
|
2021-11-15 17:19:19 +01:00
|
|
|
defmt = "0.3"
|
|
|
|
defmt-rtt = "0.3"
|
2020-11-01 17:17:24 +01:00
|
|
|
|
2021-11-15 20:11:08 +01:00
|
|
|
cortex-m = "0.7.3"
|
2021-08-19 17:11:17 +02:00
|
|
|
cortex-m-rt = "0.7.0"
|
2021-11-15 20:11:08 +01:00
|
|
|
embedded-hal = "0.2.6"
|
2021-11-15 17:19:19 +01:00
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
2021-09-11 00:10:46 +02:00
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
|
2021-06-29 09:26:16 +02:00
|
|
|
rand = { version = "0.8.4", default-features = false }
|
2021-10-22 02:09:55 +02:00
|
|
|
embedded-storage = "0.2.0"
|
2021-12-13 01:13:37 +01:00
|
|
|
|
|
|
|
usb-device = "0.2"
|
|
|
|
usbd-serial = "0.1.1"
|
|
|
|
nrf-usbd = "0.1.0"
|