2021-06-01 23:30:07 +00:00
|
|
|
[package]
|
2022-06-18 00:15:48 +00:00
|
|
|
edition = "2021"
|
2021-06-01 23:30:07 +00:00
|
|
|
name = "embassy-std-examples"
|
|
|
|
version = "0.1.0"
|
2022-10-07 10:41:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-06-01 23:30:07 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-12-04 13:03:30 +00:00
|
|
|
embassy-sync = { version = "0.5.0", path = "../../embassy-sync", features = ["log"] }
|
2023-12-21 13:57:49 +00:00
|
|
|
embassy-executor = { version = "0.4.0", path = "../../embassy-executor", features = ["arch-std", "executor-thread", "log", "integrated-timers"] }
|
2023-12-04 13:03:30 +00:00
|
|
|
embassy-time = { version = "0.2", path = "../../embassy-time", features = ["log", "std", ] }
|
2023-11-29 16:23:48 +00:00
|
|
|
embassy-net = { version = "0.2.0", path = "../../embassy-net", features=[ "std", "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] }
|
2023-08-03 12:23:11 +00:00
|
|
|
embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" }
|
2023-08-25 17:49:43 +00:00
|
|
|
embassy-net-ppp = { version = "0.1.0", path = "../../embassy-net-ppp", features = ["log"]}
|
2023-11-29 15:37:07 +00:00
|
|
|
embedded-io-async = { version = "0.6.1" }
|
|
|
|
embedded-io-adapters = { version = "0.6.1", features = ["futures-03"] }
|
2022-08-14 21:16:06 +00:00
|
|
|
critical-section = { version = "1.1", features = ["std"] }
|
2021-06-01 23:30:07 +00:00
|
|
|
|
2021-09-10 22:10:46 +00:00
|
|
|
async-io = "1.6.0"
|
|
|
|
env_logger = "0.9.0"
|
2021-11-07 22:52:11 +00:00
|
|
|
futures = { version = "0.3.17" }
|
2021-09-10 22:10:46 +00:00
|
|
|
log = "0.4.14"
|
2023-01-18 09:10:33 +00:00
|
|
|
nix = "0.26.2"
|
2021-10-17 23:19:01 +00:00
|
|
|
clap = { version = "3.0.0-beta.5", features = ["derive"] }
|
2021-12-06 13:59:15 +00:00
|
|
|
rand_core = { version = "0.6.3", features = ["std"] }
|
2023-11-08 21:59:58 +00:00
|
|
|
heapless = { version = "0.8", default-features = false }
|
2023-12-21 13:57:49 +00:00
|
|
|
static_cell = "2"
|
2023-07-27 01:32:40 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 2
|