embassy/examples/std/Cargo.toml

26 lines
1.2 KiB
TOML
Raw Normal View History

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"
license = "MIT OR Apache-2.0"
2021-06-01 23:30:07 +00:00
[dependencies]
2023-04-13 21:03:21 +00:00
embassy-sync = { version = "0.2.0", path = "../../embassy-sync", features = ["log"] }
embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["arch-std", "executor-thread", "log", "nightly", "integrated-timers"] }
embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["log", "std", "nightly"] }
2023-01-31 21:06:41 +00:00
embassy-net = { version = "0.1.0", path = "../../embassy-net", features=[ "std", "nightly", "log", "medium-ethernet", "tcp", "udp", "dns", "dhcpv4", "unstable-traits", "proto-ipv6"] }
embassy-net-driver = { version = "0.1.0", path = "../../embassy-net-driver" }
2022-11-21 22:31:31 +00:00
embedded-io = { version = "0.4.0", features = ["async", "std", "futures"] }
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"
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-09-10 22:10:46 +00:00
libc = "0.2.101"
2021-10-17 23:19:01 +00:00
clap = { version = "3.0.0-beta.5", features = ["derive"] }
rand_core = { version = "0.6.3", features = ["std"] }
heapless = { version = "0.7.5", default-features = false }
2022-08-22 13:51:44 +00:00
static_cell = "1.0"