mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 03:41:02 +00:00
Enforce consistent and correct toml formatting (#2518)
Using taplo, fixes all our broken and inconsistent toml formatting and adds CI to keep them tidy. If people want we can customise the format rules as described here https://taplo.tamasfe.dev/configuration/formatter-options.html @ggwpez, I suggest zepter is used only for checking features are propagated, and leave formatting for taplo to avoid duplicate work and conflicts. TODO - [x] Use `exclude = [...]` syntax in taplo file to ignore zombienet tests instead of deleting the dir --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
@@ -13,27 +13,27 @@ documentation = "https://docs.rs/sp-core"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive","max-encoded-len"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
serde = { version = "1.0.193", optional = true, default-features = false, features = ["derive", "alloc"] }
|
||||
serde = { version = "1.0.193", optional = true, default-features = false, features = ["alloc", "derive"] }
|
||||
bounded-collections = { version = "0.1.8", default-features = false }
|
||||
primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "scale-info"] }
|
||||
impl-serde = { version = "0.4.0", default-features = false, optional = true }
|
||||
hash-db = { version = "0.16.0", default-features = false }
|
||||
hash256-std-hasher = { version = "0.15.2", default-features = false }
|
||||
bs58 = { version = "0.5.0", default-features = false, optional = true }
|
||||
rand = { version = "0.8.5", features = ["small_rng"], optional = true }
|
||||
rand = { version = "0.8.5", features = ["small_rng"], optional = true }
|
||||
substrate-bip39 = { version = "0.4.4", optional = true }
|
||||
bip39 = { version = "2.0.0", default-features = false }
|
||||
zeroize = { version = "1.4.3", default-features = false }
|
||||
secrecy = { version = "0.8.0", default-features = false }
|
||||
parking_lot = { version = "0.12.1", optional = true }
|
||||
ss58-registry = { version = "1.34.0", default-features = false }
|
||||
sp-std = { path = "../std", default-features = false}
|
||||
sp-debug-derive = { path = "../debug-derive", default-features = false}
|
||||
sp-storage = { path = "../storage", default-features = false}
|
||||
sp-externalities = { path = "../externalities", optional = true}
|
||||
sp-std = { path = "../std", default-features = false }
|
||||
sp-debug-derive = { path = "../debug-derive", default-features = false }
|
||||
sp-storage = { path = "../storage", default-features = false }
|
||||
sp-externalities = { path = "../externalities", optional = true }
|
||||
futures = { version = "0.3.21", optional = true }
|
||||
dyn-clonable = { version = "0.9.0", optional = true }
|
||||
thiserror = { version = "1.0.48", optional = true }
|
||||
@@ -49,12 +49,12 @@ blake2 = { version = "0.10.4", default-features = false, optional = true }
|
||||
libsecp256k1 = { version = "0.7", default-features = false, features = ["static-context"], optional = true }
|
||||
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false }
|
||||
merlin = { version = "2.0", default-features = false }
|
||||
secp256k1 = { version = "0.28.0", default-features = false, features = ["recovery", "alloc"], optional = true }
|
||||
secp256k1 = { version = "0.28.0", default-features = false, features = ["alloc", "recovery"], optional = true }
|
||||
sp-core-hashing = { path = "hashing", default-features = false, optional = true }
|
||||
sp-runtime-interface = { path = "../runtime-interface", default-features = false}
|
||||
sp-runtime-interface = { path = "../runtime-interface", default-features = false }
|
||||
|
||||
# bls crypto
|
||||
w3f-bls = { version = "0.1.3", default-features = false, optional = true}
|
||||
w3f-bls = { version = "0.1.3", default-features = false, optional = true }
|
||||
# bandersnatch crypto
|
||||
bandersnatch_vrfs = { git = "https://github.com/w3f/ring-vrf", rev = "3ddc205", default-features = false, optional = true }
|
||||
|
||||
@@ -73,7 +73,7 @@ harness = false
|
||||
bench = false
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"array-bytes",
|
||||
"bandersnatch_vrfs?/std",
|
||||
@@ -153,9 +153,9 @@ full_crypto = [
|
||||
# This feature adds BLS crypto primitives.
|
||||
# It should not be used in production since the implementation and interface may still
|
||||
# be subject to significant changes.
|
||||
bls-experimental = [ "w3f-bls" ]
|
||||
bls-experimental = ["w3f-bls"]
|
||||
|
||||
# This feature adds Bandersnatch crypto primitives.
|
||||
# It should not be used in production since the implementation and interface may still
|
||||
# be subject to significant changes.
|
||||
bandersnatch-experimental = [ "bandersnatch_vrfs" ]
|
||||
bandersnatch-experimental = ["bandersnatch_vrfs"]
|
||||
|
||||
@@ -21,7 +21,7 @@ sha3 = { version = "0.10.0", default-features = false }
|
||||
twox-hash = { version = "1.6.3", default-features = false, features = ["digest_0_10"] }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
default = ["std"]
|
||||
std = [
|
||||
"blake2b_simd/std",
|
||||
"byteorder/std",
|
||||
|
||||
@@ -18,4 +18,4 @@ proc-macro = true
|
||||
[dependencies]
|
||||
quote = "1.0.28"
|
||||
syn = { version = "2.0.38", features = ["full", "parsing"] }
|
||||
sp-core-hashing = { path = "..", default-features = false}
|
||||
sp-core-hashing = { path = "..", default-features = false }
|
||||
|
||||
Reference in New Issue
Block a user