aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cyw43-pio/Cargo.toml3
-rw-r--r--embassy-boot-nrf/Cargo.toml3
-rw-r--r--embassy-boot/Cargo.toml2
-rw-r--r--embassy-embedded-hal/Cargo.toml1
-rw-r--r--embassy-executor/Cargo.toml6
-rw-r--r--embassy-futures/Cargo.toml4
-rw-r--r--embassy-hal-internal/Cargo.toml3
-rw-r--r--embassy-imxrt/Cargo.toml2
-rw-r--r--embassy-net-driver-channel/Cargo.toml4
-rw-r--r--embassy-net-driver/Cargo.toml3
-rw-r--r--embassy-net-enc28j60/Cargo.toml4
-rw-r--r--embassy-net-wiznet/Cargo.toml3
-rw-r--r--embassy-net/Cargo.toml2
-rw-r--r--embassy-nrf/Cargo.toml2
-rw-r--r--embassy-nxp/Cargo.toml1
-rw-r--r--embassy-rp/Cargo.toml4
-rw-r--r--embassy-stm32/Cargo.toml4
-rw-r--r--embassy-sync/Cargo.toml2
-rw-r--r--embassy-time/Cargo.toml5
-rw-r--r--embassy-usb-dfu/Cargo.toml3
-rw-r--r--embassy-usb-driver/Cargo.toml3
-rw-r--r--embassy-usb-synopsys-otg/Cargo.toml4
-rw-r--r--embassy-usb/Cargo.toml1
-rw-r--r--examples/mimxrt1011/Cargo.toml2
-rw-r--r--examples/mimxrt1062-evk/Cargo.toml2
-rw-r--r--examples/mimxrt6/Cargo.toml2
-rw-r--r--tests/perf-client/Cargo.toml1
-rw-r--r--tests/perf-server/Cargo.toml1
-rw-r--r--tests/utils/Cargo.toml1
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" }
15fixed = "1.23.1" 15fixed = "1.23.1"
16defmt = { version = "1.0.1", optional = true } 16defmt = { version = "1.0.1", optional = true }
17 17
18[features]
19defmt = ["dep:defmt"]
20
18[package.metadata.embassy] 21[package.metadata.embassy]
19build = [ 22build = [
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]
55log = ["dep:log"]
55softdevice = [ 56softdevice = [
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"] }
45ed25519-dalek = { version = "2", default-features = false, features = ["std", "rand_core", "digest"] } 45ed25519-dalek = { version = "2", default-features = false, features = ["std", "rand_core", "digest"] }
46 46
47[features] 47[features]
48defmt = ["dep:defmt"]
49log = ["dep:log"]
48ed25519-dalek = ["dep:ed25519-dalek", "_verify"] 50ed25519-dalek = ["dep:ed25519-dalek", "_verify"]
49ed25519-salty = ["dep:salty", "_verify"] 51ed25519-salty = ["dep:salty", "_verify"]
50flash-erase-zero = [] 52flash-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
25target = "x86_64-unknown-linux-gnu" 25target = "x86_64-unknown-linux-gnu"
26 26
27[features] 27[features]
28defmt = ["dep:defmt"]
28time = ["dep:embassy-time"] 29time = ["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
124nightly = ["embassy-executor-macros/nightly"] 124nightly = ["embassy-executor-macros/nightly"]
125 125
126## Enable defmt logging
127defmt = ["dep:defmt"]
128
129## Enable log logging
130log = ["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]
27defmt = { version = "1.0.1", optional = true } 27defmt = { version = "1.0.1", optional = true }
28log = { version = "0.4.14", optional = true } 28log = { version = "0.4.14", optional = true }
29
30[features]
31defmt = ["dep:defmt"]
32log = ["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
17defmt = ["dep:defmt"]
18log = ["dep:log"]
19
17# Define the number of NVIC priority bits. 20# Define the number of NVIC priority bits.
18prio-bits-0 = [] 21prio-bits-0 = []
19prio-bits-1 = [] 22prio-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 @@
2name = "embassy-imxrt" 2name = "embassy-imxrt"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT" 5license = "MIT OR Apache-2.0"
6description = "Embassy Hardware Abstraction Layer (HAL) for the IMXRT microcontroller" 6description = "Embassy Hardware Abstraction Layer (HAL) for the IMXRT microcontroller"
7keywords = ["embedded", "async", "imxrt", "rt600", "embedded-hal"] 7keywords = ["embedded", "async", "imxrt", "rt600", "embedded-hal"]
8categories = ["embedded", "hardware-support", "no-std", "asynchronous"] 8categories = ["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 }
28embassy-sync = { version = "0.7.2", path = "../embassy-sync" } 28embassy-sync = { version = "0.7.2", path = "../embassy-sync" }
29embassy-futures = { version = "0.1.2", path = "../embassy-futures" } 29embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
30embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } 30embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" }
31
32[features]
33defmt = ["dep:defmt"]
34log = ["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]
25defmt = { version = "1.0.1", optional = true } 25defmt = { version = "1.0.1", optional = true }
26
27[features]
28defmt = ["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" }
19defmt = { version = "1.0.1", optional = true } 19defmt = { version = "1.0.1", optional = true }
20log = { version = "0.4.14", optional = true } 20log = { version = "0.4.14", optional = true }
21 21
22[features]
23defmt = ["dep:defmt", "embassy-net-driver/defmt"]
24log = ["dep:log"]
25
22[package.metadata.embassy_docs] 26[package.metadata.embassy_docs]
23src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-enc28j60-v$VERSION/embassy-net-enc28j60/src/" 27src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-enc28j60-v$VERSION/embassy-net-enc28j60/src/"
24src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-enc28j60/src/" 28src_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" }
17embassy-futures = { version = "0.1.2", path = "../embassy-futures" } 17embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
18defmt = { version = "1.0.1", optional = true } 18defmt = { version = "1.0.1", optional = true }
19 19
20[features]
21defmt = ["dep:defmt", "embassy-net-driver-channel/defmt"]
22
20[package.metadata.embassy_docs] 23[package.metadata.embassy_docs]
21src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-wiznet-v$VERSION/embassy-net-wiznet/src/" 24src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-wiznet-v$VERSION/embassy-net-wiznet/src/"
22src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-wiznet/src/" 25src_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
55defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "embassy-time/defmt", "heapless/defmt-03", "defmt?/ip_in_core"] 55defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "embassy-time/defmt", "heapless/defmt-03", "defmt?/ip_in_core"]
56## Enable log
57log = ["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.
58packet-trace = [] 60packet-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
68defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt", "embassy-usb-driver/defmt", "embassy-embedded-hal/defmt"] 68defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt", "embassy-usb-driver/defmt", "embassy-embedded-hal/defmt"]
69## Enable log
70log = ["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)
71unstable-pac = [] 73unstable-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 @@
2name = "embassy-nxp" 2name = "embassy-nxp"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0"
5 6
6publish = false 7publish = 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.
47defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"] 47defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"]
48## Enable log support
49log = ["dep:log"]
50## Enable chrono support
51chrono = ["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.
50critical-section-impl = ["critical-section/restore-state-u8"] 54critical-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
229log = ["dep:log"]
230## Enable chrono support
231chrono = ["dep:chrono"]
228 232
229exti = [] 233exti = []
230low-power = [ "dep:embassy-executor", "embassy-executor?/arch-cortex-m", "time" ] 234low-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/
27target = "thumbv7em-none-eabi" 27target = "thumbv7em-none-eabi"
28 28
29[features] 29[features]
30defmt = ["dep:defmt"]
31log = ["dep:log"]
30std = [] 32std = []
31turbowakers = [] 33turbowakers = []
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"
31features = ["defmt", "std"] 31features = ["defmt", "std"]
32 32
33[features] 33[features]
34## Enable defmt
35defmt = ["dep:defmt"]
36## Enable log
37log = ["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 }
49dfu = [] 49dfu = []
50application = [] 50application = []
51defmt = ["dep:defmt", "embassy-boot/defmt", "embassy-usb/defmt"] 51defmt = ["dep:defmt", "embassy-boot/defmt", "embassy-usb/defmt"]
52log = ["dep:log"]
53cortex-m = ["dep:cortex-m"]
54esp32c3-hal = ["dep:esp32c3-hal"]
52ed25519-dalek = ["embassy-boot/ed25519-dalek", "_verify"] 55ed25519-dalek = ["embassy-boot/ed25519-dalek", "_verify"]
53ed25519-salty = ["embassy-boot/ed25519-salty", "_verify"] 56ed25519-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]
22embedded-io-async = "0.6.1" 22embedded-io-async = "0.6.1"
23defmt = { version = "1", optional = true } 23defmt = { version = "1", optional = true }
24
25[features]
26defmt = ["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
24defmt = { version = "1.0.1", optional = true } 24defmt = { version = "1.0.1", optional = true }
25log = { version = "0.4.14", optional = true } 25log = { version = "0.4.14", optional = true }
26
27[features]
28defmt = ["dep:defmt", "embassy-usb-driver/defmt"]
29log = ["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]
33defmt = ["dep:defmt", "embassy-usb-driver/defmt"] 33defmt = ["dep:defmt", "embassy-usb-driver/defmt"]
34log = ["dep:log"]
34usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"] 35usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"]
35default = ["usbd-hid"] 36default = ["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 @@
2name = "embassy-imxrt1011-examples" 2name = "embassy-imxrt1011-examples"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT or Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false 6publish = 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 @@
2name = "embassy-imxrt1062-evk-examples" 2name = "embassy-imxrt1062-evk-examples"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT or Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false 6publish = 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 @@
2name = "embassy-imxrt-examples" 2name = "embassy-imxrt-examples"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT or Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false 6publish = 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 @@
2name = "perf-client" 2name = "perf-client"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0"
5publish = false 6publish = 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 @@
2name = "perf-server" 2name = "perf-server"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0"
5publish = false 6publish = 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 @@
2name = "test-utils" 2name = "test-utils"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0"
5publish = false 6publish = false
6 7
7[dependencies] 8[dependencies]