diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-09-22 00:47:08 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2025-09-22 00:47:08 +0200 |
| commit | 4d71f432ad05cd8cce50b13cf6de6a1422f3b401 (patch) | |
| tree | 64f0b12c8e356d825adbc83bb6153a228cae22e8 | |
| parent | fd1c1635419f8281edda3892f08a91f0e315667a (diff) | |
Update manifests to satisfy new checks.
29 files changed, 73 insertions, 5 deletions
diff --git a/cyw43-pio/Cargo.toml b/cyw43-pio/Cargo.toml index 40dd02f61..6ab5c453e 100644 --- a/cyw43-pio/Cargo.toml +++ b/cyw43-pio/Cargo.toml | |||
| @@ -15,6 +15,9 @@ embassy-rp = { version = "0.8.0", path = "../embassy-rp" } | |||
| 15 | fixed = "1.23.1" | 15 | fixed = "1.23.1" |
| 16 | defmt = { version = "1.0.1", optional = true } | 16 | defmt = { version = "1.0.1", optional = true } |
| 17 | 17 | ||
| 18 | [features] | ||
| 19 | defmt = ["dep:defmt"] | ||
| 20 | |||
| 18 | [package.metadata.embassy] | 21 | [package.metadata.embassy] |
| 19 | build = [ | 22 | build = [ |
| 20 | {target = "thumbv6m-none-eabi", features = ["embassy-rp/rp2040"]}, | 23 | {target = "thumbv6m-none-eabi", features = ["embassy-rp/rp2040"]}, |
diff --git a/embassy-boot-nrf/Cargo.toml b/embassy-boot-nrf/Cargo.toml index 3b631ef0c..49dff061a 100644 --- a/embassy-boot-nrf/Cargo.toml +++ b/embassy-boot-nrf/Cargo.toml | |||
| @@ -52,6 +52,7 @@ defmt = [ | |||
| 52 | "embassy-boot/defmt", | 52 | "embassy-boot/defmt", |
| 53 | "embassy-nrf/defmt", | 53 | "embassy-nrf/defmt", |
| 54 | ] | 54 | ] |
| 55 | log = ["dep:log"] | ||
| 55 | softdevice = [ | 56 | softdevice = [ |
| 56 | "nrf-softdevice-mbr", | 57 | "dep:nrf-softdevice-mbr", |
| 57 | ] | 58 | ] |
diff --git a/embassy-boot/Cargo.toml b/embassy-boot/Cargo.toml index ed0242c13..a18438c81 100644 --- a/embassy-boot/Cargo.toml +++ b/embassy-boot/Cargo.toml | |||
| @@ -45,6 +45,8 @@ critical-section = { version = "1.1.1", features = ["std"] } | |||
| 45 | ed25519-dalek = { version = "2", default-features = false, features = ["std", "rand_core", "digest"] } | 45 | ed25519-dalek = { version = "2", default-features = false, features = ["std", "rand_core", "digest"] } |
| 46 | 46 | ||
| 47 | [features] | 47 | [features] |
| 48 | defmt = ["dep:defmt"] | ||
| 49 | log = ["dep:log"] | ||
| 48 | ed25519-dalek = ["dep:ed25519-dalek", "_verify"] | 50 | ed25519-dalek = ["dep:ed25519-dalek", "_verify"] |
| 49 | ed25519-salty = ["dep:salty", "_verify"] | 51 | ed25519-salty = ["dep:salty", "_verify"] |
| 50 | flash-erase-zero = [] | 52 | flash-erase-zero = [] |
diff --git a/embassy-embedded-hal/Cargo.toml b/embassy-embedded-hal/Cargo.toml index a66e01717..8b8122567 100644 --- a/embassy-embedded-hal/Cargo.toml +++ b/embassy-embedded-hal/Cargo.toml | |||
| @@ -25,6 +25,7 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-embed | |||
| 25 | target = "x86_64-unknown-linux-gnu" | 25 | target = "x86_64-unknown-linux-gnu" |
| 26 | 26 | ||
| 27 | [features] | 27 | [features] |
| 28 | defmt = ["dep:defmt"] | ||
| 28 | time = ["dep:embassy-time"] | 29 | time = ["dep:embassy-time"] |
| 29 | 30 | ||
| 30 | [dependencies] | 31 | [dependencies] |
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml index f6dce5c0e..61d060630 100644 --- a/embassy-executor/Cargo.toml +++ b/embassy-executor/Cargo.toml | |||
| @@ -123,6 +123,12 @@ rustversion = "1.0.21" | |||
| 123 | ## Enable nightly-only features | 123 | ## Enable nightly-only features |
| 124 | nightly = ["embassy-executor-macros/nightly"] | 124 | nightly = ["embassy-executor-macros/nightly"] |
| 125 | 125 | ||
| 126 | ## Enable defmt logging | ||
| 127 | defmt = ["dep:defmt"] | ||
| 128 | |||
| 129 | ## Enable log logging | ||
| 130 | log = ["dep:log"] | ||
| 131 | |||
| 126 | # Enables turbo wakers, which requires patching core. Not surfaced in the docs by default due to | 132 | # Enables turbo wakers, which requires patching core. Not surfaced in the docs by default due to |
| 127 | # being an complicated advanced and undocumented feature. | 133 | # being an complicated advanced and undocumented feature. |
| 128 | # See: https://github.com/embassy-rs/embassy/pull/1263 | 134 | # See: https://github.com/embassy-rs/embassy/pull/1263 |
diff --git a/embassy-futures/Cargo.toml b/embassy-futures/Cargo.toml index 2d62b28e5..07d5219cf 100644 --- a/embassy-futures/Cargo.toml +++ b/embassy-futures/Cargo.toml | |||
| @@ -26,3 +26,7 @@ features = ["defmt"] | |||
| 26 | [dependencies] | 26 | [dependencies] |
| 27 | defmt = { version = "1.0.1", optional = true } | 27 | defmt = { version = "1.0.1", optional = true } |
| 28 | log = { version = "0.4.14", optional = true } | 28 | log = { version = "0.4.14", optional = true } |
| 29 | |||
| 30 | [features] | ||
| 31 | defmt = ["dep:defmt"] | ||
| 32 | log = ["dep:log"] | ||
diff --git a/embassy-hal-internal/Cargo.toml b/embassy-hal-internal/Cargo.toml index b4c52ccfa..11dcc2466 100644 --- a/embassy-hal-internal/Cargo.toml +++ b/embassy-hal-internal/Cargo.toml | |||
| @@ -14,6 +14,9 @@ categories = [ | |||
| 14 | 14 | ||
| 15 | [features] | 15 | [features] |
| 16 | 16 | ||
| 17 | defmt = ["dep:defmt"] | ||
| 18 | log = ["dep:log"] | ||
| 19 | |||
| 17 | # Define the number of NVIC priority bits. | 20 | # Define the number of NVIC priority bits. |
| 18 | prio-bits-0 = [] | 21 | prio-bits-0 = [] |
| 19 | prio-bits-1 = [] | 22 | prio-bits-1 = [] |
diff --git a/embassy-imxrt/Cargo.toml b/embassy-imxrt/Cargo.toml index 8a9c1252e..7561640dd 100644 --- a/embassy-imxrt/Cargo.toml +++ b/embassy-imxrt/Cargo.toml | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | name = "embassy-imxrt" | 2 | name = "embassy-imxrt" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "Embassy Hardware Abstraction Layer (HAL) for the IMXRT microcontroller" | 6 | description = "Embassy Hardware Abstraction Layer (HAL) for the IMXRT microcontroller" |
| 7 | keywords = ["embedded", "async", "imxrt", "rt600", "embedded-hal"] | 7 | keywords = ["embedded", "async", "imxrt", "rt600", "embedded-hal"] |
| 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] | 8 | categories = ["embedded", "hardware-support", "no-std", "asynchronous"] |
diff --git a/embassy-net-driver-channel/Cargo.toml b/embassy-net-driver-channel/Cargo.toml index cf498c59f..1e40c2d87 100644 --- a/embassy-net-driver-channel/Cargo.toml +++ b/embassy-net-driver-channel/Cargo.toml | |||
| @@ -28,3 +28,7 @@ log = { version = "0.4.14", optional = true } | |||
| 28 | embassy-sync = { version = "0.7.2", path = "../embassy-sync" } | 28 | embassy-sync = { version = "0.7.2", path = "../embassy-sync" } |
| 29 | embassy-futures = { version = "0.1.2", path = "../embassy-futures" } | 29 | embassy-futures = { version = "0.1.2", path = "../embassy-futures" } |
| 30 | embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } | 30 | embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } |
| 31 | |||
| 32 | [features] | ||
| 33 | defmt = ["dep:defmt"] | ||
| 34 | log = ["dep:log"] | ||
diff --git a/embassy-net-driver/Cargo.toml b/embassy-net-driver/Cargo.toml index 34bc6c91a..a36e412ad 100644 --- a/embassy-net-driver/Cargo.toml +++ b/embassy-net-driver/Cargo.toml | |||
| @@ -23,3 +23,6 @@ features = ["defmt"] | |||
| 23 | 23 | ||
| 24 | [dependencies] | 24 | [dependencies] |
| 25 | defmt = { version = "1.0.1", optional = true } | 25 | defmt = { version = "1.0.1", optional = true } |
| 26 | |||
| 27 | [features] | ||
| 28 | defmt = ["dep:defmt"] | ||
diff --git a/embassy-net-enc28j60/Cargo.toml b/embassy-net-enc28j60/Cargo.toml index a3e3285a3..e7bad118b 100644 --- a/embassy-net-enc28j60/Cargo.toml +++ b/embassy-net-enc28j60/Cargo.toml | |||
| @@ -19,6 +19,10 @@ embassy-futures = { version = "0.1.2", path = "../embassy-futures" } | |||
| 19 | defmt = { version = "1.0.1", optional = true } | 19 | defmt = { version = "1.0.1", optional = true } |
| 20 | log = { version = "0.4.14", optional = true } | 20 | log = { version = "0.4.14", optional = true } |
| 21 | 21 | ||
| 22 | [features] | ||
| 23 | defmt = ["dep:defmt", "embassy-net-driver/defmt"] | ||
| 24 | log = ["dep:log"] | ||
| 25 | |||
| 22 | [package.metadata.embassy_docs] | 26 | [package.metadata.embassy_docs] |
| 23 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-enc28j60-v$VERSION/embassy-net-enc28j60/src/" | 27 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-enc28j60-v$VERSION/embassy-net-enc28j60/src/" |
| 24 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-enc28j60/src/" | 28 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-enc28j60/src/" |
diff --git a/embassy-net-wiznet/Cargo.toml b/embassy-net-wiznet/Cargo.toml index 36c349df1..6e6dccebd 100644 --- a/embassy-net-wiznet/Cargo.toml +++ b/embassy-net-wiznet/Cargo.toml | |||
| @@ -17,6 +17,9 @@ embassy-time = { version = "0.5.0", path = "../embassy-time" } | |||
| 17 | embassy-futures = { version = "0.1.2", path = "../embassy-futures" } | 17 | embassy-futures = { version = "0.1.2", path = "../embassy-futures" } |
| 18 | defmt = { version = "1.0.1", optional = true } | 18 | defmt = { version = "1.0.1", optional = true } |
| 19 | 19 | ||
| 20 | [features] | ||
| 21 | defmt = ["dep:defmt", "embassy-net-driver-channel/defmt"] | ||
| 22 | |||
| 20 | [package.metadata.embassy_docs] | 23 | [package.metadata.embassy_docs] |
| 21 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-wiznet-v$VERSION/embassy-net-wiznet/src/" | 24 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-wiznet-v$VERSION/embassy-net-wiznet/src/" |
| 22 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-wiznet/src/" | 25 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-wiznet/src/" |
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml index 61a2c858a..31ce7e9a6 100644 --- a/embassy-net/Cargo.toml +++ b/embassy-net/Cargo.toml | |||
| @@ -53,6 +53,8 @@ features = ["defmt", "tcp", "udp", "raw", "dns", "icmp", "dhcpv4", "proto-ipv6", | |||
| 53 | [features] | 53 | [features] |
| 54 | ## Enable defmt | 54 | ## Enable defmt |
| 55 | defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "embassy-time/defmt", "heapless/defmt-03", "defmt?/ip_in_core"] | 55 | defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "embassy-time/defmt", "heapless/defmt-03", "defmt?/ip_in_core"] |
| 56 | ## Enable log | ||
| 57 | log = ["dep:log"] | ||
| 56 | 58 | ||
| 57 | ## Trace all raw received and transmitted packets using defmt or log. | 59 | ## Trace all raw received and transmitted packets using defmt or log. |
| 58 | packet-trace = [] | 60 | packet-trace = [] |
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index 4afd28fbd..1af633500 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml | |||
| @@ -66,6 +66,8 @@ time = ["dep:embassy-time", "embassy-embedded-hal/time"] | |||
| 66 | 66 | ||
| 67 | ## Enable defmt | 67 | ## Enable defmt |
| 68 | defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt", "embassy-usb-driver/defmt", "embassy-embedded-hal/defmt"] | 68 | defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt", "embassy-usb-driver/defmt", "embassy-embedded-hal/defmt"] |
| 69 | ## Enable log | ||
| 70 | log = ["dep:log"] | ||
| 69 | 71 | ||
| 70 | ## Reexport the PAC for the currently enabled chip at `embassy_nrf::pac` (unstable) | 72 | ## Reexport the PAC for the currently enabled chip at `embassy_nrf::pac` (unstable) |
| 71 | unstable-pac = [] | 73 | unstable-pac = [] |
diff --git a/embassy-nxp/Cargo.toml b/embassy-nxp/Cargo.toml index 455915f29..073fdabe4 100644 --- a/embassy-nxp/Cargo.toml +++ b/embassy-nxp/Cargo.toml | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | name = "embassy-nxp" | 2 | name = "embassy-nxp" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | ||
| 5 | 6 | ||
| 6 | publish = false | 7 | publish = false |
| 7 | 8 | ||
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml index 101914a36..f6b0900f2 100644 --- a/embassy-rp/Cargo.toml +++ b/embassy-rp/Cargo.toml | |||
| @@ -45,6 +45,10 @@ rt = [ "rp-pac/rt" ] | |||
| 45 | 45 | ||
| 46 | ## Enable [defmt support](https://docs.rs/defmt) and enables `defmt` debug-log messages and formatting in embassy drivers. | 46 | ## Enable [defmt support](https://docs.rs/defmt) and enables `defmt` debug-log messages and formatting in embassy drivers. |
| 47 | defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"] | 47 | defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"] |
| 48 | ## Enable log support | ||
| 49 | log = ["dep:log"] | ||
| 50 | ## Enable chrono support | ||
| 51 | chrono = ["dep:chrono"] | ||
| 48 | 52 | ||
| 49 | ## Configure the [`critical-section`](https://docs.rs/critical-section) crate to use an implementation that is safe for multicore use on rp2040. | 53 | ## Configure the [`critical-section`](https://docs.rs/critical-section) crate to use an implementation that is safe for multicore use on rp2040. |
| 50 | critical-section-impl = ["critical-section/restore-state-u8"] | 54 | critical-section-impl = ["critical-section/restore-state-u8"] |
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index 6cd8ed262..369fabc50 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml | |||
| @@ -225,6 +225,10 @@ defmt = [ | |||
| 225 | "embassy-usb-synopsys-otg/defmt", | 225 | "embassy-usb-synopsys-otg/defmt", |
| 226 | "stm32-metapac/defmt" | 226 | "stm32-metapac/defmt" |
| 227 | ] | 227 | ] |
| 228 | ## Use log for logging | ||
| 229 | log = ["dep:log"] | ||
| 230 | ## Enable chrono support | ||
| 231 | chrono = ["dep:chrono"] | ||
| 228 | 232 | ||
| 229 | exti = [] | 233 | exti = [] |
| 230 | low-power = [ "dep:embassy-executor", "embassy-executor?/arch-cortex-m", "time" ] | 234 | low-power = [ "dep:embassy-executor", "embassy-executor?/arch-cortex-m", "time" ] |
diff --git a/embassy-sync/Cargo.toml b/embassy-sync/Cargo.toml index 6494da727..64d76baba 100644 --- a/embassy-sync/Cargo.toml +++ b/embassy-sync/Cargo.toml | |||
| @@ -27,6 +27,8 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-sync/ | |||
| 27 | target = "thumbv7em-none-eabi" | 27 | target = "thumbv7em-none-eabi" |
| 28 | 28 | ||
| 29 | [features] | 29 | [features] |
| 30 | defmt = ["dep:defmt"] | ||
| 31 | log = ["dep:log"] | ||
| 30 | std = [] | 32 | std = [] |
| 31 | turbowakers = [] | 33 | turbowakers = [] |
| 32 | 34 | ||
diff --git a/embassy-time/Cargo.toml b/embassy-time/Cargo.toml index 2d7c3c1fa..bad6ecf97 100644 --- a/embassy-time/Cargo.toml +++ b/embassy-time/Cargo.toml | |||
| @@ -31,6 +31,11 @@ target = "x86_64-unknown-linux-gnu" | |||
| 31 | features = ["defmt", "std"] | 31 | features = ["defmt", "std"] |
| 32 | 32 | ||
| 33 | [features] | 33 | [features] |
| 34 | ## Enable defmt | ||
| 35 | defmt = ["dep:defmt"] | ||
| 36 | ## Enable log | ||
| 37 | log = ["dep:log"] | ||
| 38 | |||
| 34 | ## Display the time since startup next to defmt log messages. | 39 | ## Display the time since startup next to defmt log messages. |
| 35 | ## At most 1 `defmt-timestamp-uptime-*` feature can be used. | 40 | ## At most 1 `defmt-timestamp-uptime-*` feature can be used. |
| 36 | ## `defmt-timestamp-uptime` is provided for backwards compatibility (provides the same format as `uptime-us`). | 41 | ## `defmt-timestamp-uptime` is provided for backwards compatibility (provides the same format as `uptime-us`). |
diff --git a/embassy-usb-dfu/Cargo.toml b/embassy-usb-dfu/Cargo.toml index 4a65c6895..e70ab970e 100644 --- a/embassy-usb-dfu/Cargo.toml +++ b/embassy-usb-dfu/Cargo.toml | |||
| @@ -49,6 +49,9 @@ esp32c3-hal = { version = "0.13.0", optional = true, default-features = false } | |||
| 49 | dfu = [] | 49 | dfu = [] |
| 50 | application = [] | 50 | application = [] |
| 51 | defmt = ["dep:defmt", "embassy-boot/defmt", "embassy-usb/defmt"] | 51 | defmt = ["dep:defmt", "embassy-boot/defmt", "embassy-usb/defmt"] |
| 52 | log = ["dep:log"] | ||
| 53 | cortex-m = ["dep:cortex-m"] | ||
| 54 | esp32c3-hal = ["dep:esp32c3-hal"] | ||
| 52 | ed25519-dalek = ["embassy-boot/ed25519-dalek", "_verify"] | 55 | ed25519-dalek = ["embassy-boot/ed25519-dalek", "_verify"] |
| 53 | ed25519-salty = ["embassy-boot/ed25519-salty", "_verify"] | 56 | ed25519-salty = ["embassy-boot/ed25519-salty", "_verify"] |
| 54 | 57 | ||
diff --git a/embassy-usb-driver/Cargo.toml b/embassy-usb-driver/Cargo.toml index de69bf694..6e4c31273 100644 --- a/embassy-usb-driver/Cargo.toml +++ b/embassy-usb-driver/Cargo.toml | |||
| @@ -21,3 +21,6 @@ features = ["defmt"] | |||
| 21 | [dependencies] | 21 | [dependencies] |
| 22 | embedded-io-async = "0.6.1" | 22 | embedded-io-async = "0.6.1" |
| 23 | defmt = { version = "1", optional = true } | 23 | defmt = { version = "1", optional = true } |
| 24 | |||
| 25 | [features] | ||
| 26 | defmt = ["dep:defmt"] | ||
diff --git a/embassy-usb-synopsys-otg/Cargo.toml b/embassy-usb-synopsys-otg/Cargo.toml index ec518ac93..61b14a215 100644 --- a/embassy-usb-synopsys-otg/Cargo.toml +++ b/embassy-usb-synopsys-otg/Cargo.toml | |||
| @@ -23,3 +23,7 @@ embassy-usb-driver = { version = "0.2.0", path = "../embassy-usb-driver" } | |||
| 23 | 23 | ||
| 24 | defmt = { version = "1.0.1", optional = true } | 24 | defmt = { version = "1.0.1", optional = true } |
| 25 | log = { version = "0.4.14", optional = true } | 25 | log = { version = "0.4.14", optional = true } |
| 26 | |||
| 27 | [features] | ||
| 28 | defmt = ["dep:defmt", "embassy-usb-driver/defmt"] | ||
| 29 | log = ["dep:log"] | ||
diff --git a/embassy-usb/Cargo.toml b/embassy-usb/Cargo.toml index e309eec93..bff48c4a6 100644 --- a/embassy-usb/Cargo.toml +++ b/embassy-usb/Cargo.toml | |||
| @@ -31,6 +31,7 @@ features = ["defmt", "usbd-hid"] | |||
| 31 | 31 | ||
| 32 | [features] | 32 | [features] |
| 33 | defmt = ["dep:defmt", "embassy-usb-driver/defmt"] | 33 | defmt = ["dep:defmt", "embassy-usb-driver/defmt"] |
| 34 | log = ["dep:log"] | ||
| 34 | usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"] | 35 | usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"] |
| 35 | default = ["usbd-hid"] | 36 | default = ["usbd-hid"] |
| 36 | 37 | ||
diff --git a/examples/mimxrt1011/Cargo.toml b/examples/mimxrt1011/Cargo.toml index 488f3167b..3038f5d4d 100644 --- a/examples/mimxrt1011/Cargo.toml +++ b/examples/mimxrt1011/Cargo.toml | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | name = "embassy-imxrt1011-examples" | 2 | name = "embassy-imxrt1011-examples" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT or Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | publish = false | 6 | publish = false |
| 7 | 7 | ||
| 8 | [dependencies] | 8 | [dependencies] |
diff --git a/examples/mimxrt1062-evk/Cargo.toml b/examples/mimxrt1062-evk/Cargo.toml index ec6c5c872..82a24490d 100644 --- a/examples/mimxrt1062-evk/Cargo.toml +++ b/examples/mimxrt1062-evk/Cargo.toml | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | name = "embassy-imxrt1062-evk-examples" | 2 | name = "embassy-imxrt1062-evk-examples" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT or Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | publish = false | 6 | publish = false |
| 7 | 7 | ||
| 8 | [dependencies] | 8 | [dependencies] |
diff --git a/examples/mimxrt6/Cargo.toml b/examples/mimxrt6/Cargo.toml index 28de9d273..3f7ad8485 100644 --- a/examples/mimxrt6/Cargo.toml +++ b/examples/mimxrt6/Cargo.toml | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | name = "embassy-imxrt-examples" | 2 | name = "embassy-imxrt-examples" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT or Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | publish = false | 6 | publish = false |
| 7 | 7 | ||
| 8 | [dependencies] | 8 | [dependencies] |
diff --git a/tests/perf-client/Cargo.toml b/tests/perf-client/Cargo.toml index 581b60d6f..c426fdd74 100644 --- a/tests/perf-client/Cargo.toml +++ b/tests/perf-client/Cargo.toml | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | name = "perf-client" | 2 | name = "perf-client" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | ||
| 5 | publish = false | 6 | publish = false |
| 6 | 7 | ||
| 7 | [dependencies] | 8 | [dependencies] |
diff --git a/tests/perf-server/Cargo.toml b/tests/perf-server/Cargo.toml index 22614a33a..f048eade2 100644 --- a/tests/perf-server/Cargo.toml +++ b/tests/perf-server/Cargo.toml | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | name = "perf-server" | 2 | name = "perf-server" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | ||
| 5 | publish = false | 6 | publish = false |
| 6 | 7 | ||
| 7 | [dependencies] | 8 | [dependencies] |
diff --git a/tests/utils/Cargo.toml b/tests/utils/Cargo.toml index f76feaa20..ddb990e0f 100644 --- a/tests/utils/Cargo.toml +++ b/tests/utils/Cargo.toml | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | name = "test-utils" | 2 | name = "test-utils" |
| 3 | version = "0.1.0" | 3 | version = "0.1.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | ||
| 5 | publish = false | 6 | publish = false |
| 6 | 7 | ||
| 7 | [dependencies] | 8 | [dependencies] |
