2021-03-29 02:11:32 +00:00
|
|
|
[package]
|
2022-02-16 02:54:39 +00:00
|
|
|
edition = "2021"
|
2021-03-29 02:11:32 +00:00
|
|
|
name = "embassy-rp-examples"
|
|
|
|
version = "0.1.0"
|
2022-10-07 10:41:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-03-29 02:11:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-22 19:46:09 +00:00
|
|
|
embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] }
|
2022-08-17 21:40:16 +00: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-12-13 12:51:48 +00:00
|
|
|
embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "pio", "critical-section-impl"] }
|
2022-12-26 02:33:49 +00:00
|
|
|
embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"] }
|
2022-12-26 01:42:36 +00:00
|
|
|
embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "nightly", "tcp", "dhcpv4", "medium-ethernet"] }
|
2022-09-22 14:48:35 +00:00
|
|
|
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
|
2022-11-17 08:26:15 +00:00
|
|
|
embassy-usb-logger = { version = "0.1.0", path = "../../embassy-usb-logger" }
|
2021-03-29 02:11:32 +00:00
|
|
|
|
2021-11-15 16:19:19 +00:00
|
|
|
defmt = "0.3"
|
2022-11-29 20:15:24 +00:00
|
|
|
defmt-rtt = "0.4"
|
2021-03-29 02:11:32 +00:00
|
|
|
|
2022-12-10 07:26:35 +00:00
|
|
|
#cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
|
|
cortex-m = { version = "0.7.6" }
|
2021-08-18 22:56:11 +00:00
|
|
|
cortex-m-rt = "0.7.0"
|
2021-11-15 16:19:19 +00:00
|
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
2021-09-10 22:10:46 +00:00
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
|
2021-07-20 08:06:57 +00:00
|
|
|
display-interface-spi = "0.4.1"
|
|
|
|
embedded-graphics = "0.7.1"
|
|
|
|
st7789 = "0.6.1"
|
2022-02-16 02:54:39 +00:00
|
|
|
display-interface = "0.4.1"
|
|
|
|
byte-slice-cast = { version = "1.2.0", default-features = false }
|
2022-04-22 17:58:24 +00:00
|
|
|
|
2022-10-01 08:33:36 +00:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-alpha.9" }
|
2022-11-21 22:31:31 +00:00
|
|
|
embedded-hal-async = "0.2.0-alpha.0"
|
|
|
|
embedded-io = { version = "0.4.0", features = ["async", "defmt"] }
|
2022-10-26 08:01:52 +00:00
|
|
|
embedded-storage = { version = "0.3" }
|
2022-08-24 21:46:07 +00:00
|
|
|
static_cell = "1.0.0"
|
2022-11-17 08:26:15 +00:00
|
|
|
log = "0.4"
|
2022-07-27 20:45:46 +00:00
|
|
|
pio-proc = "0.2"
|
2022-12-26 21:30:22 +00:00
|
|
|
pio = "0.2.1"
|
2022-09-28 08:20:04 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|