Skip to content

Commit c508c5c

Browse files
committed
Use double quotes in Cargo.toml
1 parent 0f027c7 commit c508c5c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ stable_deref_trait = { version = "1.1.0", default-features = false, optional = t
1818

1919
# Internal feature, only used when building as part of libstd, not part of the
2020
# stable interface of this crate.
21-
core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
22-
alloc = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-alloc' }
23-
compiler_builtins = { version = '0.1.2', optional = true }
21+
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
22+
alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
23+
compiler_builtins = { version = "0.1.2", optional = true }
2424

2525
[dev-dependencies]
2626
crossbeam = "0.8"
@@ -43,15 +43,15 @@ default = ["read", "write", "std", "fallible-iterator", "endian-reader"]
4343

4444
# Internal feature, only used when building as part of libstd, not part of the
4545
# stable interface of this crate.
46-
rustc-dep-of-std = ['core', 'alloc', 'compiler_builtins']
46+
rustc-dep-of-std = ["core", "alloc", "compiler_builtins"]
4747

4848
[profile.test]
49-
split-debuginfo = 'packed'
49+
split-debuginfo = "packed"
5050

5151
[profile.bench]
5252
debug = true
5353
codegen-units = 1
54-
split-debuginfo = 'packed'
54+
split-debuginfo = "packed"
5555

5656
[[example]]
5757
name = "simple"

0 commit comments

Comments
 (0)