2020-09-22 18:03:43 +02:00
|
|
|
[package]
|
|
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
2022-03-10 01:05:33 +01:00
|
|
|
edition = "2021"
|
2021-01-01 22:41:59 +01:00
|
|
|
name = "embassy-nrf-examples"
|
2020-09-22 18:03:43 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
|
2022-02-12 00:24:04 +01:00
|
|
|
[features]
|
|
|
|
default = ["nightly"]
|
2022-02-16 03:54:39 +01:00
|
|
|
nightly = ["embassy-nrf/nightly", "embassy-nrf/unstable-traits"]
|
2020-09-22 18:03:43 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-02 04:35:06 +02:00
|
|
|
embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-timestamp-uptime"] }
|
2022-03-09 01:34:35 +01:00
|
|
|
embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac"] }
|
|
|
|
embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
|
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 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 }
|
2022-02-07 12:35:58 +01:00
|
|
|
embedded-storage = "0.3.0"
|
2021-12-13 01:13:37 +01:00
|
|
|
|