From dff03ecfc74d6af716637888338ebfa99ab7a027 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Wed, 2 Jun 2021 01:30:07 +0200 Subject: Move examples to a subdirectory --- examples/std/Cargo.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/std/Cargo.toml (limited to 'examples/std/Cargo.toml') diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml new file mode 100644 index 000000000..04e89269d --- /dev/null +++ b/examples/std/Cargo.toml @@ -0,0 +1,21 @@ +[package] +authors = ["Dario Nieuwenhuis "] +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 } -- cgit