aboutsummaryrefslogtreecommitdiff
path: root/examples/std/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-08-25 20:34:25 +0200
committerDario Nieuwenhuis <[email protected]>2021-08-25 21:06:27 +0200
commitc4b9c8ac8762fdca52b6c37dd99346b2371387ab (patch)
tree43ff26742e7bcab026284759d3a4a7100bd9db9f /examples/std/Cargo.toml
parent7c0990ad1e8d1a455818740973ca0267bb3f5854 (diff)
std: fold into embassy core, add non-hacky time driver.
Diffstat (limited to 'examples/std/Cargo.toml')
-rw-r--r--examples/std/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index 466814850..34b8ebb67 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -5,8 +5,7 @@ name = "embassy-std-examples"
5version = "0.1.0" 5version = "0.1.0"
6 6
7[dependencies] 7[dependencies]
8embassy = { version = "0.1.0", path = "../../embassy", features = ["log"] } 8embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", "time"] }
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"] } 9embassy-net = { version = "0.1.0", path = "../../embassy-net", features=["std", "log", "medium-ethernet", "tcp", "dhcpv4"] }
11smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false } 10smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false }
12 11