diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-05-30 23:22:34 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-05-30 23:26:29 +0200 |
| commit | 3f35a8876ee65d030e32ab2444bc0abb29d88382 (patch) | |
| tree | 2b456e04f83b22cad28632034680e0227292a7f8 /cyw43/Cargo.toml | |
| parent | b3bbe5eb2d0f7ec6c8cae6e0486cb46a433fe11a (diff) | |
cyw43: adapt build to main embassy repo.
Diffstat (limited to 'cyw43/Cargo.toml')
| -rw-r--r-- | cyw43/Cargo.toml | 20 |
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"] | |||
| 11 | firmware-logs = [] | 11 | firmware-logs = [] |
| 12 | 12 | ||
| 13 | [dependencies] | 13 | [dependencies] |
| 14 | embassy-time = { version = "0.1.0" } | 14 | embassy-time = { version = "0.1.0", path = "../embassy-time"} |
| 15 | embassy-sync = { version = "0.2.0" } | 15 | embassy-sync = { version = "0.2.0", path = "../embassy-sync"} |
| 16 | embassy-futures = { version = "0.1.0" } | 16 | embassy-futures = { version = "0.1.0", path = "../embassy-futures"} |
| 17 | embassy-net-driver-channel = { version = "0.1.0" } | 17 | embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver-channel"} |
| 18 | atomic-polyfill = "0.1.5" | 18 | atomic-polyfill = "0.1.5" |
| 19 | 19 | ||
| 20 | defmt = { version = "0.3", optional = true } | 20 | defmt = { version = "0.3", optional = true } |
| @@ -26,15 +26,3 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa | |||
| 26 | 26 | ||
| 27 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" } | 27 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" } |
| 28 | num_enum = { version = "0.5.7", default-features = false } | 28 | num_enum = { version = "0.5.7", default-features = false } |
| 29 | |||
| 30 | [patch.crates-io] | ||
| 31 | embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" } | ||
| 32 | embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" } | ||
| 33 | embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" } | ||
| 34 | embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" } | ||
| 35 | embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" } | ||
| 36 | |||
| 37 | [workspace] | ||
| 38 | members = ["cyw43-pio"] | ||
| 39 | default-members = ["cyw43-pio", "."] | ||
| 40 | exclude = ["examples"] \ No newline at end of file | ||
