21 lines
752 B
TOML
21 lines
752 B
TOML
[package]
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
edition = "2018"
|
|
name = "embassy-std-examples"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", "time", "nightly"] }
|
|
embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["nightly", "std", "log", "medium-ethernet", "tcp", "dhcpv4", "pool-16"] }
|
|
embedded-io = { version = "0.2.0", features = ["async", "std"] }
|
|
|
|
async-io = "1.6.0"
|
|
env_logger = "0.9.0"
|
|
futures = { version = "0.3.17" }
|
|
log = "0.4.14"
|
|
nix = "0.22.1"
|
|
libc = "0.2.101"
|
|
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 }
|