chore: format TOML files with taplo
This commit is contained in:
@@ -225,5 +225,5 @@ try-runtime = [
|
||||
"bizinikiwi-cli-test-utils/try-runtime",
|
||||
"pez-kitchensink-runtime/try-runtime",
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime"
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
|
||||
@@ -72,13 +72,13 @@ std = [
|
||||
runtime-benchmarks = [
|
||||
"bizinikiwi-wasm-builder?/runtime-benchmarks",
|
||||
"pez-node-primitives/runtime-benchmarks",
|
||||
"pezframe-try-runtime?/runtime-benchmarks",
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezpallet-example-mbm/runtime-benchmarks",
|
||||
"pezpallet-example-tasks/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"rand",
|
||||
"rand_pcg",
|
||||
"pezframe-try-runtime?/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks"
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-try-runtime",
|
||||
@@ -86,7 +86,7 @@ try-runtime = [
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezpallet-example-mbm/try-runtime",
|
||||
"pezpallet-example-tasks/try-runtime",
|
||||
"pezsp-runtime/try-runtime"
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
experimental = ["pezpallet-example-tasks/experimental"]
|
||||
metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"]
|
||||
|
||||
@@ -14,9 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
cfg-if = "1.0.0"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, optional = true, features = ["derive"] }
|
||||
serde = { version = "1.0.101", default-features = false, optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, optional = true, features = [
|
||||
"derive",
|
||||
] }
|
||||
serde = { version = "1.0.101", default-features = false, optional = true, features = [
|
||||
"derive",
|
||||
] }
|
||||
|
||||
[features]
|
||||
default = ["current", "std"]
|
||||
@@ -31,20 +37,9 @@ current = ["scale-info"]
|
||||
unstable = ["current"]
|
||||
|
||||
# Serde support without relying on std features
|
||||
serde_full = [
|
||||
"codec/serde",
|
||||
"scale-info/serde",
|
||||
"serde",
|
||||
"serde/alloc",
|
||||
]
|
||||
serde_full = ["codec/serde", "scale-info/serde", "serde", "serde/alloc"]
|
||||
|
||||
# Scale decode support without relying on std features
|
||||
decode = ["scale-info/decode"]
|
||||
|
||||
std = [
|
||||
"codec/std",
|
||||
"decode",
|
||||
"scale-info/std",
|
||||
"serde/std",
|
||||
"serde_full",
|
||||
]
|
||||
std = ["codec/std", "decode", "scale-info/std", "serde/std", "serde_full"]
|
||||
|
||||
@@ -114,6 +114,7 @@ std = [
|
||||
"pezframe-support/std",
|
||||
"pezframe-system/std",
|
||||
"pezkuwi-subxt-signer",
|
||||
"pezkuwi-subxt-signer?/std",
|
||||
"pezpallet-proxy/std",
|
||||
"pezpallet-revive-fixtures?/std",
|
||||
"pezpallet-timestamp/std",
|
||||
@@ -140,7 +141,6 @@ std = [
|
||||
"secp256k1/std",
|
||||
"serde/std",
|
||||
"serde_json/std",
|
||||
"pezkuwi-subxt-signer?/std"
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"k256",
|
||||
|
||||
@@ -43,13 +43,9 @@ pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"pez-revive-dev-runtime/std",
|
||||
"pezkuwi-sdk/std",
|
||||
"pezsp-runtime/std"
|
||||
]
|
||||
std = ["pez-revive-dev-runtime/std", "pezkuwi-sdk/std", "pezsp-runtime/std"]
|
||||
runtime-benchmarks = [
|
||||
"pez-revive-dev-runtime/runtime-benchmarks",
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks"
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
|
||||
@@ -51,5 +51,5 @@ std = [
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks"
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
|
||||
@@ -25,10 +25,5 @@ wasmtime = { optional = true, workspace = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"anyhow?/std",
|
||||
"codec/std",
|
||||
"log/std",
|
||||
"wasmtime?/std",
|
||||
]
|
||||
std = ["anyhow?/std", "codec/std", "log/std", "wasmtime?/std"]
|
||||
wasmtime = ["anyhow", "dep:wasmtime"]
|
||||
|
||||
@@ -33,8 +33,8 @@ std = [
|
||||
"pezsp-arithmetic/std",
|
||||
"pezsp-debug-derive/std",
|
||||
"scale-info/std",
|
||||
"schemars?/std",
|
||||
"serde/std",
|
||||
"schemars?/std"
|
||||
]
|
||||
# By default some types have documentation, `full-metadata-docs` allows to add documentation to
|
||||
# more types in the metadata.
|
||||
|
||||
@@ -37,7 +37,11 @@ pezframe-support = { workspace = true, default-features = true }
|
||||
pezframe-system = { workspace = true, default-features = true }
|
||||
pezkuwi-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["sr25519", "subxt", "unstable-eth"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = [
|
||||
"sr25519",
|
||||
"subxt",
|
||||
"unstable-eth",
|
||||
] }
|
||||
pezkuwi-teyrchain-primitives = { workspace = true, default-features = true }
|
||||
pezsc-block-builder = { workspace = true, default-features = true }
|
||||
pezsc-chain-spec = { workspace = true }
|
||||
|
||||
@@ -33,7 +33,11 @@ parking_lot = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-core = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-rpcs = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["sr25519", "subxt", "unstable-eth"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = [
|
||||
"sr25519",
|
||||
"subxt",
|
||||
"unstable-eth",
|
||||
] }
|
||||
rand = { workspace = true, default-features = true }
|
||||
serde = { workspace = true, default-features = true }
|
||||
serde_json = { workspace = true, features = ["arbitrary_precision"] }
|
||||
|
||||
Reference in New Issue
Block a user