2021-03-29 04:11:32 +02:00
|
|
|
[package]
|
2022-02-16 03:54:39 +01:00
|
|
|
edition = "2021"
|
2021-03-29 04:11:32 +02:00
|
|
|
name = "embassy-rp-examples"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-22 21:46:09 +02:00
|
|
|
embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] }
|
2022-08-17 23:40:16 +02:00
|
|
|
embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["defmt", "integrated-timers"] }
|
|
|
|
embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
|
2022-02-15 17:28:48 +01:00
|
|
|
embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] }
|
2022-08-24 23:46:07 +02:00
|
|
|
embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
|
|
|
|
embassy-usb-serial = { version = "0.1.0", path = "../../embassy-usb-serial", features = ["defmt"] }
|
2022-08-30 19:25:36 +02:00
|
|
|
embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "nightly", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] }
|
2022-08-24 23:46:07 +02:00
|
|
|
embassy-usb-ncm = { version = "0.1.0", path = "../../embassy-usb-ncm", features = ["defmt"] }
|
2021-03-29 04:11:32 +02:00
|
|
|
|
2021-11-15 17:19:19 +01:00
|
|
|
defmt = "0.3"
|
|
|
|
defmt-rtt = "0.3"
|
2021-03-29 04:11:32 +02:00
|
|
|
|
2022-08-14 23:16:06 +02:00
|
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
2021-08-19 00:56:11 +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", "cfg-target-has-atomic", "unstable"] }
|
2021-07-20 10:06:57 +02:00
|
|
|
display-interface-spi = "0.4.1"
|
|
|
|
embedded-graphics = "0.7.1"
|
|
|
|
st7789 = "0.6.1"
|
2022-02-16 03:54:39 +01:00
|
|
|
display-interface = "0.4.1"
|
|
|
|
byte-slice-cast = { version = "1.2.0", default-features = false }
|
2022-04-22 19:58:24 +02:00
|
|
|
|
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" }
|
2022-05-29 22:34:08 +02:00
|
|
|
embedded-hal-async = { version = "0.1.0-alpha.1" }
|
2022-08-24 23:46:07 +02:00
|
|
|
embedded-io = { version = "0.3.0", features = ["async", "defmt"] }
|
|
|
|
static_cell = "1.0.0"
|