aboutsummaryrefslogtreecommitdiff
path: root/examples/std/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/std/Cargo.toml')
-rw-r--r--examples/std/Cargo.toml21
1 files changed, 21 insertions, 0 deletions
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 @@
1[package]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2018"
4name = "embassy-std-examples"
5version = "0.1.0"
6
7[dependencies]
8embassy = { version = "0.1.0", path = "../../embassy", features = ["log"] }
9embassy-std = { version = "0.1.0", path = "../../embassy-std" }
10embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] }
11smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="ec59aba5e10cf91df0c9253d9c2aca4dd143d2ff", default-features = false }
12
13async-io = "1.3.1"
14env_logger = "0.8.2"
15futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
16log = "0.4.11"
17nix = "0.21.0"
18libc = "0.2.81"
19clap = { version = "3.0.0-beta.2", features = ["derive"] }
20rand_core = { version = "0.6.0", features = ["std"] }
21heapless = { version = "0.5.6", default-features = false }