Move examples to a subdirectory
This commit is contained in:
21
examples/std/Cargo.toml
Normal file
21
examples/std/Cargo.toml
Normal file
@ -0,0 +1,21 @@
|
||||
[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"] }
|
||||
embassy-std = { version = "0.1.0", path = "../../embassy-std" }
|
||||
embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] }
|
||||
smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="ec59aba5e10cf91df0c9253d9c2aca4dd143d2ff", default-features = false }
|
||||
|
||||
async-io = "1.3.1"
|
||||
env_logger = "0.8.2"
|
||||
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
|
||||
log = "0.4.11"
|
||||
nix = "0.21.0"
|
||||
libc = "0.2.81"
|
||||
clap = { version = "3.0.0-beta.2", features = ["derive"] }
|
||||
rand_core = { version = "0.6.0", features = ["std"] }
|
||||
heapless = { version = "0.5.6", default-features = false }
|
Reference in New Issue
Block a user