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