Skip to content

Commit 45fca5c

Browse files
committed
Formatting fixes to Cargo.toml
1 parent 372a0e6 commit 45fca5c

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

Cargo.toml

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
authors = [
3-
"Jorge Aparicio <[email protected]>",
4-
"Per Lindgren <[email protected]>",
5-
"Emil Fresk <[email protected]>",
3+
"Jorge Aparicio <[email protected]>",
4+
"Per Lindgren <[email protected]>",
5+
"Emil Fresk <[email protected]>",
66
]
77
categories = ["data-structures", "no-std"]
88
description = "`static` friendly data structures that don't require dynamic memory allocation"
@@ -23,11 +23,19 @@ bytes = ["dep:bytes"]
2323
portable-atomic = ["dep:portable-atomic"]
2424

2525
# Enable polyfilling of atomics via portable-atomic, using critical section for locking
26-
portable-atomic-critical-section = ["dep:portable-atomic", "portable-atomic", "portable-atomic?/critical-section"]
26+
portable-atomic-critical-section = [
27+
"dep:portable-atomic",
28+
"portable-atomic",
29+
"portable-atomic?/critical-section",
30+
]
2731

2832
# Enable polyfilling of atomics via portable-atomic, using disabling interrupts for locking.
2933
# WARNING: this is only sound for single-core bare-metal privileged-mode targets!
30-
portable-atomic-unsafe-assume-single-core = ["dep:portable-atomic", "portable-atomic", "portable-atomic?/unsafe-assume-single-core"]
34+
portable-atomic-unsafe-assume-single-core = [
35+
"dep:portable-atomic",
36+
"portable-atomic",
37+
"portable-atomic?/unsafe-assume-single-core",
38+
]
3139

3240
# implement serde traits.
3341
serde = ["dep:serde"]
@@ -65,13 +73,13 @@ static_assertions = "1.1.0"
6573

6674
[package.metadata.docs.rs]
6775
features = [
68-
"bytes",
69-
"ufmt",
70-
"serde",
71-
"defmt",
72-
"mpmc_large",
73-
"portable-atomic-critical-section",
74-
"alloc",
76+
"bytes",
77+
"ufmt",
78+
"serde",
79+
"defmt",
80+
"mpmc_large",
81+
"portable-atomic-critical-section",
82+
"alloc",
7583
]
7684
# for the pool module
7785
targets = ["i686-unknown-linux-gnu"]

0 commit comments

Comments
 (0)