aboutsummaryrefslogtreecommitdiff
path: root/cyw43/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-05-30 23:22:34 +0200
committerDario Nieuwenhuis <[email protected]>2023-05-30 23:26:29 +0200
commit3f35a8876ee65d030e32ab2444bc0abb29d88382 (patch)
tree2b456e04f83b22cad28632034680e0227292a7f8 /cyw43/Cargo.toml
parentb3bbe5eb2d0f7ec6c8cae6e0486cb46a433fe11a (diff)
cyw43: adapt build to main embassy repo.
Diffstat (limited to 'cyw43/Cargo.toml')
-rw-r--r--cyw43/Cargo.toml20
1 files changed, 4 insertions, 16 deletions
diff --git a/cyw43/Cargo.toml b/cyw43/Cargo.toml
index 2bb2b8d93..c7f8816f5 100644
--- a/cyw43/Cargo.toml
+++ b/cyw43/Cargo.toml
@@ -11,10 +11,10 @@ log = ["dep:log"]
11firmware-logs = [] 11firmware-logs = []
12 12
13[dependencies] 13[dependencies]
14embassy-time = { version = "0.1.0" } 14embassy-time = { version = "0.1.0", path = "../embassy-time"}
15embassy-sync = { version = "0.2.0" } 15embassy-sync = { version = "0.2.0", path = "../embassy-sync"}
16embassy-futures = { version = "0.1.0" } 16embassy-futures = { version = "0.1.0", path = "../embassy-futures"}
17embassy-net-driver-channel = { version = "0.1.0" } 17embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-channel"}
18atomic-polyfill = "0.1.5" 18atomic-polyfill = "0.1.5"
19 19
20defmt = { version = "0.3", optional = true } 20defmt = { version = "0.3", optional = true }
@@ -26,15 +26,3 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa
26 26
27embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" } 27embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" }
28num_enum = { version = "0.5.7", default-features = false } 28num_enum = { version = "0.5.7", default-features = false }
29
30[patch.crates-io]
31embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
32embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
33embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
34embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
35embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
36
37[workspace]
38members = ["cyw43-pio"]
39default-members = ["cyw43-pio", "."]
40exclude = ["examples"] \ No newline at end of file