Skip to content

Commit

Permalink
taplo-fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Feb 1, 2024
1 parent 6880b81 commit 315cc0f
Show file tree
Hide file tree
Showing 16 changed files with 227 additions and 227 deletions.
42 changes: 21 additions & 21 deletions claims/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ license = "Apache-2.0"
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
libsecp256k1 = { workspace = true, optional = true }
parity-scale-codec = { workspace = true }
rustc-hex = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true }
Expand All @@ -29,32 +29,32 @@ hex-literal = { workspace = true }
libsecp256k1 = { workspace = true, features = ["std"] }
pallet-balances = { workspace = true, features = ["std"] }
pallet-vesting = { workspace = true, features = ["std"] }
serde_json = { workspace = true, features = ["std"]}
serde_json = { workspace = true, features = ["std"] }
sp-core = { workspace = true, features = ["std"] }

[features]
default = [ "std" ]
default = ["std"]

std = [
"claims-primitives/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
"parity-scale-codec/std",
"rustc-hex/std",
"scale-info/std",
"serde/std",
"serde_derive",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"claims-primitives/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
"parity-scale-codec/std",
"rustc-hex/std",
"scale-info/std",
"serde/std",
"serde_derive",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"libsecp256k1/hmac",
"libsecp256k1/static-context",
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"libsecp256k1/hmac",
"libsecp256k1/static-context",
]

try-runtime = [ "frame-support/try-runtime" ]
try-runtime = ["frame-support/try-runtime"]
50 changes: 25 additions & 25 deletions enclave-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ license = "MS-RSL"
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
log = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true, optional = true }

Expand All @@ -22,11 +22,11 @@ teerex-primitives = { path = "../primitives/teerex", default-features = false }
# substrate dependencies
frame-support = { workspace = true }
frame-system = { workspace = true }
pallet-timestamp = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
pallet-timestamp = { workspace = true }

# benchmarking
frame-benchmarking = { workspace = true, optional = true }
Expand All @@ -44,33 +44,33 @@ sp-keyring = { workspace = true }
test-utils = { path = "../test-utils" }

[features]
default = [ "std" ]
default = ["std"]
std = [
"enclave-bridge-primitives/std",
"frame-support/std",
"frame-system/std",
"log/std",
"pallet-teerex/std",
"pallet-timestamp/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"teerex-primitives/std",
"enclave-bridge-primitives/std",
"frame-support/std",
"frame-system/std",
"log/std",
"pallet-teerex/std",
"pallet-timestamp/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"teerex-primitives/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"hex-literal",
"pallet-balances",
"pallet-timestamp/runtime-benchmarks",
"test-utils",
"pallet-teerex/runtime-benchmarks"
"frame-benchmarking",
"hex-literal",
"pallet-balances",
"pallet-timestamp/runtime-benchmarks",
"test-utils",
"pallet-teerex/runtime-benchmarks",
]

try-runtime = [
"frame-support/try-runtime",
"pallet-teerex/try-runtime"
"frame-support/try-runtime",
"pallet-teerex/try-runtime",
]
28 changes: 14 additions & 14 deletions parentchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ license = "Apache-2.0"
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
log = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true, optional = true }

Expand All @@ -28,19 +28,19 @@ env_logger = { workspace = true }
sp-keyring = { workspace = true }

[features]
default = [ "std" ]
default = ["std"]
std = [
"frame-support/std",
"frame-system/std",
"log/std",
"pallet-balances/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"frame-support/std",
"frame-system/std",
"log/std",
"pallet-balances/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]

try-runtime = [ "frame-support/try-runtime" ]
try-runtime = ["frame-support/try-runtime"]
18 changes: 9 additions & 9 deletions primitives/claims/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ sp-runtime = { workspace = true }
sp-std = { workspace = true }

[features]
default = [ "std" ]
serde_derive = [ "serde" ]
default = ["std"]
serde_derive = ["serde"]
std = [
"parity-scale-codec/std",
"rustc-hex/std",
"scale-info/std",
"serde/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"parity-scale-codec/std",
"rustc-hex/std",
"scale-info/std",
"serde/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
14 changes: 7 additions & 7 deletions primitives/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ license = "Apache-2.0"
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
derive_more = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }

# substrate deps
Expand All @@ -18,11 +18,11 @@ sp-runtime = { workspace = true }
sp-std = { workspace = true }

[features]
default = [ "std" ]
default = ["std"]
std = [
"parity-scale-codec/std",
"scale-info/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"parity-scale-codec/std",
"scale-info/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
]
20 changes: 10 additions & 10 deletions primitives/enclave-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ license = "Apache-2.0"
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
common-primitives = { path = "../common", default-features = false }
log = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true }

Expand All @@ -24,14 +24,14 @@ sp-std = { workspace = true }
hex-literal = { workspace = true }

[features]
default = [ "std" ]
default = ["std"]
std = [
"common-primitives/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"common-primitives/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
18 changes: 9 additions & 9 deletions primitives/sidechain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ sp-std = { workspace = true }


[features]
default = [ "full_crypto", "std" ]
full_crypto = [ "sp-core/full_crypto" ]
default = ["full_crypto", "std"]
full_crypto = ["sp-core/full_crypto"]
std = [
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
]
4 changes: 2 additions & 2 deletions primitives/teeracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ sp-std = { workspace = true }


[features]
default = [ "std" ]
std = [ "common-primitives/std", "sp-std/std", "substrate-fixed/std" ]
default = ["std"]
std = ["common-primitives/std", "sp-std/std", "substrate-fixed/std"]
20 changes: 10 additions & 10 deletions primitives/teerex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ license = "Apache-2.0"
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
common-primitives = { path = "../common", default-features = false }
derive_more = { workspace = true }
log = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true }

Expand All @@ -24,14 +24,14 @@ sp-std = { workspace = true }
hex-literal = { workspace = true }

[features]
default = [ "std" ]
default = ["std"]
std = [
"common-primitives/std",
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"common-primitives/std",
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"serde/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
]
14 changes: 7 additions & 7 deletions primitives/xcm-transactor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ xcm = { workspace = true }
cumulus-primitives-core = { workspace = true }

[features]
default = [ "std" ]
default = ["std"]
ksm = []
dot = []
std = [
"common-primitives/std",
"cumulus-primitives-core/std",
"frame-support/std",
"parity-scale-codec/std",
"sp-std/std",
"xcm/std",
"common-primitives/std",
"cumulus-primitives-core/std",
"frame-support/std",
"parity-scale-codec/std",
"sp-std/std",
"xcm/std",
]
Loading

0 comments on commit 315cc0f

Please sign in to comment.