aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-12-03 20:08:44 +0100
committerGitHub <[email protected]>2025-12-03 20:08:44 +0100
commitb75a6222e892cc58543b30f231b60dedaa0a5f5d (patch)
tree8cccb88b8e61e3eac4bd0715a5370171ecb05ccd /Cargo.toml
parent8798306fb2c124efc06443c2913c3d7a4919dd83 (diff)
Misc minor cleanups (#85)
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 96b7d6b0f..22660bee9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -33,7 +33,7 @@ embassy-time = { version = "0.5.0", optional = true }
33embassy-time-driver = { version = "0.2.1", optional = true } 33embassy-time-driver = { version = "0.2.1", optional = true }
34 34
35[features] 35[features]
36default = [] 36default = ["rt"]
37 37
38# Base defmt feature enables core + panic handler 38# Base defmt feature enables core + panic handler
39# Use with one logger feature: defmt-rtt (preferred) or defmt-uart (fallback) 39# Use with one logger feature: defmt-rtt (preferred) or defmt-uart (fallback)
@@ -41,6 +41,11 @@ defmt = ["dep:defmt", "mcxa-pac/defmt"]
41 41
42unstable-pac = [] 42unstable-pac = []
43 43
44# dummy feature to silence embassy-hal-internal lint
45#
46# This feature makes no change to embassy-mcxa's operation.
47rt = []
48
44# Embassy time 49# Embassy time
45time = [ 50time = [
46 "dep:embassy-time", 51 "dep:embassy-time",