aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBob McWhirter <[email protected]>2021-11-15 11:40:06 -0500
committerBob McWhirter <[email protected]>2021-11-15 11:40:06 -0500
commit57ca241658f95e4e30940b29dff541b2ee1e1b56 (patch)
treeaaa5e778b5cc888183606d229063e68969dcecbe /examples
parent23fdca9e527de92b981b04b5f3d671749b62acb5 (diff)
Further cargo muckings for smol/defmt.
Diffstat (limited to 'examples')
-rw-r--r--examples/std/Cargo.toml6
-rw-r--r--examples/stm32f7/Cargo.toml4
2 files changed, 7 insertions, 3 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index 002d0487a..2e2f0bd1c 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -7,7 +7,6 @@ version = "0.1.0"
7[dependencies] 7[dependencies]
8embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", "time"] } 8embassy = { version = "0.1.0", path = "../../embassy", features = ["log", "std", "time"] }
9embassy-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"] }
10smoltcp = { git = "https://github.com/smoltcp-rs/smoltcp", rev="e4241510337e095b9d21136c5f58b2eaa1b78479", default-features = false }
11 10
12async-io = "1.6.0" 11async-io = "1.6.0"
13env_logger = "0.9.0" 12env_logger = "0.9.0"
@@ -18,3 +17,8 @@ libc = "0.2.101"
18clap = { version = "3.0.0-beta.5", features = ["derive"] } 17clap = { version = "3.0.0-beta.5", features = ["derive"] }
19rand_core = { version = "0.6.3", features = ["std"] } 18rand_core = { version = "0.6.3", features = ["std"] }
20heapless = { version = "0.7.5", default-features = false } 19heapless = { version = "0.7.5", default-features = false }
20
21[dependencies.smoltcp]
22git = "https://github.com/bobmcwhirter/smoltcp"
23rev = "faf81d21daae16b650b16e59a8422a8283e8a302"
24default-features = false
diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml
index ac46cd86e..8d7710c44 100644
--- a/examples/stm32f7/Cargo.toml
+++ b/examples/stm32f7/Cargo.toml
@@ -29,8 +29,8 @@ critical-section = "0.2.3"
29 29
30 30
31[dependencies.smoltcp] 31[dependencies.smoltcp]
32git = "https://github.com/smoltcp-rs/smoltcp" 32git = "https://github.com/bobmcwhirter/smoltcp"
33rev = "e4241510337e095b9d21136c5f58b2eaa1b78479" 33rev = "faf81d21daae16b650b16e59a8422a8283e8a302"
34default-features = false 34default-features = false
35features = [ 35features = [
36 "proto-ipv4", 36 "proto-ipv4",