Skip to content

Commit

Permalink
convert more single to double quotes in cargo tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
dmoka committed Jan 10, 2025
1 parent 8efbd02 commit 3671b68
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion pallets/circuit-breaker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pretty_assertions = { workspace = true }
test-case = { workspace = true }

[features]
default = ['std']
default = ["std"]
std = [
"codec/std",
"frame-support/std",
Expand Down
2 changes: 1 addition & 1 deletion pallets/claims/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pallet-balances = { workspace = true }
sp-core = { workspace = true }

[features]
default = ['std']
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
Expand Down
2 changes: 1 addition & 1 deletion pallets/dca/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ test-case = { workspace = true }
primitive-types = { workspace = true }

[features]
default = ['std']
default = ["std"]
std = [
"codec/std",
"frame-support/std",
Expand Down
2 changes: 1 addition & 1 deletion pallets/dynamic-fees/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sp-io = { workspace = true }
proptest = { workspace = true }

[features]
default = ['std']
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-system/runtime-benchmarks",
Expand Down
2 changes: 1 addition & 1 deletion pallets/ema-oracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sp-io = { workspace = true }
test-utils = { workspace = true }

[features]
default = ['std']
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-system/runtime-benchmarks",
Expand Down
2 changes: 1 addition & 1 deletion pallets/genesis-history/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sp-core = { workspace = true }
hex-literal = { workspace = true }

[features]
default = ['std']
default = ["std"]
std = [
"codec/std",
"frame-support/std",
Expand Down
2 changes: 1 addition & 1 deletion pallets/liquidation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test-utils = { workspace = true }
parking_lot = { workspace = true }

[features]
default = ['std']
default = ["std"]
std = [
"codec/std",
"frame-support/std",
Expand Down
2 changes: 1 addition & 1 deletion pallets/otc-settlements/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ test-utils = { workspace = true }
parking_lot = { workspace = true }

[features]
default = ['std']
default = ["std"]
std = [
"codec/std",
"frame-support/std",
Expand Down
2 changes: 1 addition & 1 deletion pallets/route-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ hydradx-adapters = { workspace = true }
test-utils = { workspace = true }

[features]
default = ['std']
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-system/runtime-benchmarks",
Expand Down
18 changes: 9 additions & 9 deletions pallets/stableswap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ test-utils = { workspace = true }
pretty_assertions = "1.4.0"

[features]
default = ['std']
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking",
"frame-system/runtime-benchmarks",
Expand All @@ -60,17 +60,17 @@ runtime-benchmarks = [
]
std = [
"serde/std",
'codec/std',
"codec/std",
"scale-info/std",
'frame-support/std',
'frame-system/std',
'sp-runtime/std',
'sp-core/std',
'sp-io/std',
'sp-std/std',
"frame-support/std",
"frame-system/std",
"sp-runtime/std",
"sp-core/std",
"sp-io/std",
"sp-std/std",
"orml-tokens/std",
"frame-benchmarking/std",
'orml-traits/std',
"orml-traits/std",
"hydra-dx-math/std",
"pallet-broadcast/std",
]
Expand Down
24 changes: 12 additions & 12 deletions pallets/xcm-rate-limiter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ orml-tokens = { workspace = true, features = ["std"] }
pretty_assertions = { workspace = true }

[features]
default = ['std']
default = ["std"]
std = [
'sp-std/std',
'sp-core/std',
'sp-runtime/std',
'codec/std',
'frame-support/std',
'frame-system/std',
'serde/std',
'scale-info/std',
'cumulus-pallet-xcmp-queue/std',
'orml-traits/std',
'hydra-dx-math/std',
"sp-std/std",
"sp-core/std",
"sp-runtime/std",
"codec/std",
"frame-support/std",
"frame-system/std",
"serde/std",
"scale-info/std",
"cumulus-pallet-xcmp-queue/std",
"orml-traits/std",
"hydra-dx-math/std",
]
runtime-benchmarks = [
"frame-benchmarking",
Expand Down
2 changes: 1 addition & 1 deletion pallets/xyk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sp-api = { workspace = true }
proptest = { workspace = true }

[features]
default = ['std']
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking",
"frame-system/runtime-benchmarks",
Expand Down

0 comments on commit 3671b68

Please sign in to comment.