mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-26 20:00:27 +00:00
Update manifests to satisfy new checks.
This commit is contained in:
parent
fd1c163541
commit
4d71f432ad
@ -15,6 +15,9 @@ embassy-rp = { version = "0.8.0", path = "../embassy-rp" }
|
||||
fixed = "1.23.1"
|
||||
defmt = { version = "1.0.1", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
|
||||
[package.metadata.embassy]
|
||||
build = [
|
||||
{target = "thumbv6m-none-eabi", features = ["embassy-rp/rp2040"]},
|
||||
|
@ -52,6 +52,7 @@ defmt = [
|
||||
"embassy-boot/defmt",
|
||||
"embassy-nrf/defmt",
|
||||
]
|
||||
log = ["dep:log"]
|
||||
softdevice = [
|
||||
"nrf-softdevice-mbr",
|
||||
"dep:nrf-softdevice-mbr",
|
||||
]
|
||||
|
@ -45,6 +45,8 @@ critical-section = { version = "1.1.1", features = ["std"] }
|
||||
ed25519-dalek = { version = "2", default-features = false, features = ["std", "rand_core", "digest"] }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
log = ["dep:log"]
|
||||
ed25519-dalek = ["dep:ed25519-dalek", "_verify"]
|
||||
ed25519-salty = ["dep:salty", "_verify"]
|
||||
flash-erase-zero = []
|
||||
|
@ -25,6 +25,7 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-embed
|
||||
target = "x86_64-unknown-linux-gnu"
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
time = ["dep:embassy-time"]
|
||||
|
||||
[dependencies]
|
||||
|
@ -123,6 +123,12 @@ rustversion = "1.0.21"
|
||||
## Enable nightly-only features
|
||||
nightly = ["embassy-executor-macros/nightly"]
|
||||
|
||||
## Enable defmt logging
|
||||
defmt = ["dep:defmt"]
|
||||
|
||||
## Enable log logging
|
||||
log = ["dep:log"]
|
||||
|
||||
# Enables turbo wakers, which requires patching core. Not surfaced in the docs by default due to
|
||||
# being an complicated advanced and undocumented feature.
|
||||
# See: https://github.com/embassy-rs/embassy/pull/1263
|
||||
|
@ -26,3 +26,7 @@ features = ["defmt"]
|
||||
[dependencies]
|
||||
defmt = { version = "1.0.1", optional = true }
|
||||
log = { version = "0.4.14", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
log = ["dep:log"]
|
||||
|
@ -14,6 +14,9 @@ categories = [
|
||||
|
||||
[features]
|
||||
|
||||
defmt = ["dep:defmt"]
|
||||
log = ["dep:log"]
|
||||
|
||||
# Define the number of NVIC priority bits.
|
||||
prio-bits-0 = []
|
||||
prio-bits-1 = []
|
||||
|
@ -2,7 +2,7 @@
|
||||
name = "embassy-imxrt"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Embassy Hardware Abstraction Layer (HAL) for the IMXRT microcontroller"
|
||||
keywords = ["embedded", "async", "imxrt", "rt600", "embedded-hal"]
|
||||
categories = ["embedded", "hardware-support", "no-std", "asynchronous"]
|
||||
|
@ -28,3 +28,7 @@ log = { version = "0.4.14", optional = true }
|
||||
embassy-sync = { version = "0.7.2", path = "../embassy-sync" }
|
||||
embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
|
||||
embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
log = ["dep:log"]
|
||||
|
@ -23,3 +23,6 @@ features = ["defmt"]
|
||||
|
||||
[dependencies]
|
||||
defmt = { version = "1.0.1", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
|
@ -19,6 +19,10 @@ embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
|
||||
defmt = { version = "1.0.1", optional = true }
|
||||
log = { version = "0.4.14", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt", "embassy-net-driver/defmt"]
|
||||
log = ["dep:log"]
|
||||
|
||||
[package.metadata.embassy_docs]
|
||||
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-enc28j60-v$VERSION/embassy-net-enc28j60/src/"
|
||||
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-enc28j60/src/"
|
||||
|
@ -17,6 +17,9 @@ embassy-time = { version = "0.5.0", path = "../embassy-time" }
|
||||
embassy-futures = { version = "0.1.2", path = "../embassy-futures" }
|
||||
defmt = { version = "1.0.1", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt", "embassy-net-driver-channel/defmt"]
|
||||
|
||||
[package.metadata.embassy_docs]
|
||||
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-wiznet-v$VERSION/embassy-net-wiznet/src/"
|
||||
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-wiznet/src/"
|
||||
|
@ -53,6 +53,8 @@ features = ["defmt", "tcp", "udp", "raw", "dns", "icmp", "dhcpv4", "proto-ipv6",
|
||||
[features]
|
||||
## Enable defmt
|
||||
defmt = ["dep:defmt", "smoltcp/defmt", "embassy-net-driver/defmt", "embassy-time/defmt", "heapless/defmt-03", "defmt?/ip_in_core"]
|
||||
## Enable log
|
||||
log = ["dep:log"]
|
||||
|
||||
## Trace all raw received and transmitted packets using defmt or log.
|
||||
packet-trace = []
|
||||
|
@ -66,6 +66,8 @@ time = ["dep:embassy-time", "embassy-embedded-hal/time"]
|
||||
|
||||
## Enable defmt
|
||||
defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt", "embassy-usb-driver/defmt", "embassy-embedded-hal/defmt"]
|
||||
## Enable log
|
||||
log = ["dep:log"]
|
||||
|
||||
## Reexport the PAC for the currently enabled chip at `embassy_nrf::pac` (unstable)
|
||||
unstable-pac = []
|
||||
|
@ -2,6 +2,7 @@
|
||||
name = "embassy-nxp"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
publish = false
|
||||
|
||||
|
@ -45,6 +45,10 @@ rt = [ "rp-pac/rt" ]
|
||||
|
||||
## Enable [defmt support](https://docs.rs/defmt) and enables `defmt` debug-log messages and formatting in embassy drivers.
|
||||
defmt = ["dep:defmt", "embassy-usb-driver/defmt", "embassy-hal-internal/defmt"]
|
||||
## Enable log support
|
||||
log = ["dep:log"]
|
||||
## Enable chrono support
|
||||
chrono = ["dep:chrono"]
|
||||
|
||||
## Configure the [`critical-section`](https://docs.rs/critical-section) crate to use an implementation that is safe for multicore use on rp2040.
|
||||
critical-section-impl = ["critical-section/restore-state-u8"]
|
||||
|
@ -225,6 +225,10 @@ defmt = [
|
||||
"embassy-usb-synopsys-otg/defmt",
|
||||
"stm32-metapac/defmt"
|
||||
]
|
||||
## Use log for logging
|
||||
log = ["dep:log"]
|
||||
## Enable chrono support
|
||||
chrono = ["dep:chrono"]
|
||||
|
||||
exti = []
|
||||
low-power = [ "dep:embassy-executor", "embassy-executor?/arch-cortex-m", "time" ]
|
||||
|
@ -27,6 +27,8 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-sync/
|
||||
target = "thumbv7em-none-eabi"
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
log = ["dep:log"]
|
||||
std = []
|
||||
turbowakers = []
|
||||
|
||||
|
@ -31,6 +31,11 @@ target = "x86_64-unknown-linux-gnu"
|
||||
features = ["defmt", "std"]
|
||||
|
||||
[features]
|
||||
## Enable defmt
|
||||
defmt = ["dep:defmt"]
|
||||
## Enable log
|
||||
log = ["dep:log"]
|
||||
|
||||
## Display the time since startup next to defmt log messages.
|
||||
## At most 1 `defmt-timestamp-uptime-*` feature can be used.
|
||||
## `defmt-timestamp-uptime` is provided for backwards compatibility (provides the same format as `uptime-us`).
|
||||
|
@ -49,6 +49,9 @@ esp32c3-hal = { version = "0.13.0", optional = true, default-features = false }
|
||||
dfu = []
|
||||
application = []
|
||||
defmt = ["dep:defmt", "embassy-boot/defmt", "embassy-usb/defmt"]
|
||||
log = ["dep:log"]
|
||||
cortex-m = ["dep:cortex-m"]
|
||||
esp32c3-hal = ["dep:esp32c3-hal"]
|
||||
ed25519-dalek = ["embassy-boot/ed25519-dalek", "_verify"]
|
||||
ed25519-salty = ["embassy-boot/ed25519-salty", "_verify"]
|
||||
|
||||
|
@ -21,3 +21,6 @@ features = ["defmt"]
|
||||
[dependencies]
|
||||
embedded-io-async = "0.6.1"
|
||||
defmt = { version = "1", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt"]
|
||||
|
@ -23,3 +23,7 @@ embassy-usb-driver = { version = "0.2.0", path = "../embassy-usb-driver" }
|
||||
|
||||
defmt = { version = "1.0.1", optional = true }
|
||||
log = { version = "0.4.14", optional = true }
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt", "embassy-usb-driver/defmt"]
|
||||
log = ["dep:log"]
|
||||
|
@ -31,6 +31,7 @@ features = ["defmt", "usbd-hid"]
|
||||
|
||||
[features]
|
||||
defmt = ["dep:defmt", "embassy-usb-driver/defmt"]
|
||||
log = ["dep:log"]
|
||||
usbd-hid = ["dep:usbd-hid", "dep:ssmarshal"]
|
||||
default = ["usbd-hid"]
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
name = "embassy-imxrt1011-examples"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT or Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
|
@ -2,7 +2,7 @@
|
||||
name = "embassy-imxrt1062-evk-examples"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT or Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
|
@ -2,7 +2,7 @@
|
||||
name = "embassy-imxrt-examples"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT or Apache-2.0"
|
||||
license = "MIT OR Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
|
@ -2,6 +2,7 @@
|
||||
name = "perf-client"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
|
@ -2,6 +2,7 @@
|
||||
name = "perf-server"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
|
@ -2,6 +2,7 @@
|
||||
name = "test-utils"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
|
Loading…
x
Reference in New Issue
Block a user