Diener workspacify

Signed-off-by: alvicsam <alvicsam@gmail.com>
This commit is contained in:
alvicsam
2023-08-25 11:05:17 +02:00
parent 8ba894c0bc
commit f441a5fc93
422 changed files with 5044 additions and 4598 deletions
+10 -10
View File
@@ -14,22 +14,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
sp-api-proc-macro = { version = "4.0.0-dev", path = "proc-macro" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-externalities = { version = "0.19.0", default-features = false, optional = true, path = "../externalities" }
sp-version = { version = "22.0.0", default-features = false, path = "../version" }
sp-state-machine = { version = "0.28.0", default-features = false, optional = true, path = "../state-machine" }
sp-trie = { version = "22.0.0", default-features = false, optional = true, path = "../trie" }
sp-api-proc-macro = { path = "proc-macro" }
sp-core = { path = "../core", default-features = false}
sp-std = { path = "../std", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-externalities = { path = "../externalities", default-features = false, optional = true}
sp-version = { path = "../version", default-features = false}
sp-state-machine = { path = "../state-machine", default-features = false, optional = true}
sp-trie = { path = "../trie", default-features = false, optional = true}
hash-db = { version = "0.16.0", optional = true }
thiserror = { version = "1.0.30", optional = true }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-metadata-ir = { version = "0.1.0", default-features = false, optional = true, path = "../metadata-ir" }
sp-metadata-ir = { path = "../metadata-ir", default-features = false, optional = true}
log = { version = "0.4.17", default-features = false }
[dev-dependencies]
sp-test-primitives = { version = "2.0.0", path = "../test-primitives" }
sp-test-primitives = { path = "../test-primitives" }
[features]
default = [ "std" ]
+9 -9
View File
@@ -12,15 +12,15 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", path = "../" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-version = { version = "22.0.0", path = "../../version" }
sp-tracing = { version = "10.0.0", path = "../../tracing" }
sp-runtime = { version = "24.0.0", path = "../../runtime" }
sp-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
sp-api = { path = ".." }
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
sp-version = { path = "../../version" }
sp-tracing = { path = "../../tracing" }
sp-runtime = { path = "../../runtime" }
sp-consensus = { path = "../../consensus/common" }
sc-block-builder = { path = "../../../client/block-builder" }
codec = { package = "parity-scale-codec", version = "3.6.1" }
sp-state-machine = { version = "0.28.0", path = "../../state-machine" }
sp-state-machine = { path = "../../state-machine" }
trybuild = "1.0.74"
rustversion = "1.0.6"
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
@@ -29,7 +29,7 @@ scale-info = { version = "2.5.0", default-features = false, features = ["derive"
criterion = "0.4.0"
futures = "0.3.21"
log = "0.4.17"
sp-core = { version = "21.0.0", path = "../../core" }
sp-core = { path = "../../core" }
static_assertions = "1.1.0"
[[bench]]
@@ -15,12 +15,12 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-core = { path = "../core", default-features = false}
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, optional = true, features = ["derive", "alloc"] }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-io = { version = "23.0.0", default-features = false, path = "../io" }
sp-std = { path = "../std", default-features = false}
sp-io = { path = "../io", default-features = false}
[features]
default = [ "std" ]
@@ -13,8 +13,8 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", path = "../../api" }
sp-application-crypto = { version = "23.0.0", path = "../" }
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-keystore = { version = "0.27.0", default-features = false, path = "../../keystore" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-api = { path = "../../api" }
sp-application-crypto = { path = ".." }
sp-core = { path = "../../core", default-features = false}
sp-keystore = { path = "../../keystore", default-features = false}
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
+2 -2
View File
@@ -23,12 +23,12 @@ num-traits = { version = "0.2.8", default-features = false }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
static_assertions = "1.1.0"
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-std = { path = "../std", default-features = false}
[dev-dependencies]
criterion = "0.4.0"
primitive-types = "0.12.0"
sp-core = { version = "21.0.0", features = ["full_crypto"], path = "../core" }
sp-core = { path = "../core", features = ["full_crypto"]}
rand = "0.8.5"
[features]
@@ -18,7 +18,7 @@ arbitrary = "1.3.0"
fraction = "0.13.1"
honggfuzz = "0.5.49"
num-bigint = "0.4.3"
sp-arithmetic = { version = "16.0.0", path = ".." }
sp-arithmetic = { path = ".." }
[[bin]]
name = "biguint"
@@ -15,10 +15,10 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../application-crypto" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-api = { path = "../api", default-features = false}
sp-application-crypto = { path = "../application-crypto", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
@@ -13,10 +13,10 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-api = { path = "../api", default-features = false}
sp-inherents = { path = "../inherents", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
+5 -5
View File
@@ -20,8 +20,8 @@ log = "0.4.17"
parking_lot = "0.12.1"
schnellru = "0.2.1"
thiserror = "1.0.30"
sp-api = { version = "4.0.0-dev", path = "../api" }
sp-consensus = { version = "0.10.0-dev", path = "../consensus/common" }
sp-database = { version = "4.0.0-dev", path = "../database" }
sp-runtime = { version = "24.0.0", path = "../runtime" }
sp-state-machine = { version = "0.28.0", path = "../state-machine" }
sp-api = { path = "../api" }
sp-consensus = { path = "../consensus/common" }
sp-database = { path = "../database" }
sp-runtime = { path = "../runtime" }
sp-state-machine = { path = "../state-machine" }
@@ -16,13 +16,13 @@ targets = ["x86_64-unknown-linux-gnu"]
async-trait = { version = "0.1.57", optional = true }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../application-crypto" }
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" }
sp-api = { path = "../../api", default-features = false}
sp-application-crypto = { path = "../../application-crypto", default-features = false}
sp-consensus-slots = { path = "../slots", default-features = false}
sp-inherents = { path = "../../inherents", default-features = false}
sp-runtime = { path = "../../runtime", default-features = false}
sp-std = { path = "../../std", default-features = false}
sp-timestamp = { path = "../../timestamp", default-features = false}
[features]
default = [ "std" ]
@@ -17,14 +17,14 @@ async-trait = { version = "0.1.57", optional = true }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../application-crypto" }
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-timestamp = { version = "4.0.0-dev", optional = true, path = "../../timestamp" }
sp-api = { path = "../../api", default-features = false}
sp-application-crypto = { path = "../../application-crypto", default-features = false}
sp-consensus-slots = { path = "../slots", default-features = false}
sp-core = { path = "../../core", default-features = false}
sp-inherents = { path = "../../inherents", default-features = false}
sp-runtime = { path = "../../runtime", default-features = false}
sp-std = { path = "../../std", default-features = false}
sp-timestamp = { path = "../../timestamp", optional = true}
[features]
default = [ "std" ]
@@ -15,13 +15,13 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, optional = true, features = ["derive", "alloc"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../application-crypto" }
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-io = { version = "23.0.0", default-features = false, path = "../../io" }
sp-mmr-primitives = { version = "4.0.0-dev", default-features = false, path = "../../merkle-mountain-range" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-api = { path = "../../api", default-features = false}
sp-application-crypto = { path = "../../application-crypto", default-features = false}
sp-core = { path = "../../core", default-features = false}
sp-io = { path = "../../io", default-features = false}
sp-mmr-primitives = { path = "../../merkle-mountain-range", default-features = false}
sp-runtime = { path = "../../runtime", default-features = false}
sp-std = { path = "../../std", default-features = false}
strum = { version = "0.24.1", features = ["derive"], default-features = false }
lazy_static = "1.4.0"
@@ -18,14 +18,14 @@ async-trait = "0.1.57"
futures = { version = "0.3.21", features = ["thread-pool"] }
log = "0.4.17"
thiserror = "1.0.30"
sp-core = { version = "21.0.0", path = "../../core" }
sp-inherents = { version = "4.0.0-dev", path = "../../inherents" }
sp-runtime = { version = "24.0.0", path = "../../runtime" }
sp-state-machine = { version = "0.28.0", path = "../../state-machine" }
sp-core = { path = "../../core" }
sp-inherents = { path = "../../inherents" }
sp-runtime = { path = "../../runtime" }
sp-state-machine = { path = "../../state-machine" }
[dev-dependencies]
futures = "0.3.21"
sp-test-primitives = { version = "2.0.0", path = "../../test-primitives" }
sp-test-primitives = { path = "../../test-primitives" }
[features]
default = []
@@ -19,12 +19,12 @@ grandpa = { package = "finality-grandpa", version = "0.16.2", default-features =
log = { version = "0.4.17", default-features = false }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", features = ["derive", "alloc"], default-features = false, optional = true }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../application-crypto" }
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-keystore = { version = "0.27.0", default-features = false, optional = true, path = "../../keystore" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-api = { path = "../../api", default-features = false}
sp-application-crypto = { path = "../../application-crypto", default-features = false}
sp-core = { path = "../../core", default-features = false}
sp-keystore = { path = "../../keystore", default-features = false, optional = true}
sp-runtime = { path = "../../runtime", default-features = false}
sp-std = { path = "../../std", default-features = false}
[features]
default = [ "std" ]
@@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-api = { path = "../../api", default-features = false}
sp-core = { path = "../../core", default-features = false}
sp-runtime = { path = "../../runtime", default-features = false}
sp-std = { path = "../../std", default-features = false}
[features]
default = [ "std" ]
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" }
sp-std = { path = "../../std", default-features = false}
sp-timestamp = { path = "../../timestamp", default-features = false}
[features]
default = [ "std" ]
+7 -7
View File
@@ -33,10 +33,10 @@ secrecy = { version = "0.8.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, optional = true }
parking_lot = { version = "0.12.1", optional = true }
ss58-registry = { version = "1.34.0", default-features = false }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-debug-derive = { version = "8.0.0", default-features = false, path = "../debug-derive" }
sp-storage = { version = "13.0.0", default-features = false, path = "../storage" }
sp-externalities = { version = "0.19.0", optional = true, path = "../externalities" }
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.30", optional = true }
@@ -52,8 +52,8 @@ libsecp256k1 = { version = "0.7", default-features = false, features = ["static-
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false }
merlin = { version = "2.0", default-features = false }
secp256k1 = { version = "0.24.0", default-features = false, features = ["recovery", "alloc"], optional = true }
sp-core-hashing = { version = "9.0.0", path = "./hashing", default-features = false, optional = true }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../runtime-interface" }
sp-core-hashing = { path = "hashing", default-features = false, optional = true }
sp-runtime-interface = { path = "../runtime-interface", default-features = false}
# bls crypto
w3f-bls = { version = "0.1.3", default-features = false, optional = true}
@@ -63,7 +63,7 @@ bandersnatch_vrfs = { git = "https://github.com/w3f/ring-vrf", rev = "c86ebd4",
[dev-dependencies]
criterion = "0.4.0"
serde_json = "1.0"
sp-core-hashing-proc-macro = { version = "9.0.0", path = "./hashing/proc-macro" }
sp-core-hashing-proc-macro = { path = "hashing/proc-macro" }
[[bench]]
name = "bench"
@@ -18,4 +18,4 @@ proc-macro = true
[dependencies]
quote = "1.0.28"
syn = { version = "2.0.16", features = ["full", "parsing"] }
sp-core-hashing = { version = "9.0.0", default-features = false, path = "../" }
sp-core-hashing = { path = "..", default-features = false}
@@ -21,10 +21,10 @@ ark-bls12-381 = { version = "0.4.0", features = ["curve"], default-features = fa
ark-bw6-761 = { version = "0.4.0", default-features = false }
ark-ed-on-bls12-381-bandersnatch = { version = "0.4.0", default-features = false }
ark-ed-on-bls12-377 = { version = "0.4.0", default-features = false }
sp-std = { version = "8.0.0", path = "../../std", default-features = false }
sp-std = { path = "../../std", default-features = false }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
ark-scale = { version = "0.0.3", features = ["hazmat"], default-features = false }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../../runtime-interface" }
sp-runtime-interface = { path = "../../runtime-interface", default-features = false}
[dev-dependencies]
sp-io = { path = "../../io", default-features = false }
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
environmental = { version = "1.1.3", default-features = false }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-storage = { version = "13.0.0", default-features = false, path = "../storage" }
sp-std = { path = "../std", default-features = false}
sp-storage = { path = "../storage", default-features = false}
[features]
default = [ "std" ]
@@ -13,9 +13,9 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
sp-api = { path = "../api", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
serde_json = { version = "1.0.85", default-features = false, features = ["alloc"] }
[features]
+2 -2
View File
@@ -19,8 +19,8 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
impl-trait-for-tuples = "0.2.2"
thiserror = { version = "1.0.30", optional = true }
sp-runtime = { version = "24.0.0", optional = true, default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-runtime = { path = "../runtime", default-features = false, optional = true}
sp-std = { path = "../std", default-features = false}
[dev-dependencies]
futures = "0.3.21"
+8 -8
View File
@@ -18,15 +18,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = { version = "1.1.0", default-features = false }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["bytes"] }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-keystore = { version = "0.27.0", default-features = false, optional = true, path = "../keystore" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-core = { path = "../core", default-features = false}
sp-keystore = { path = "../keystore", default-features = false, optional = true}
sp-std = { path = "../std", default-features = false}
libsecp256k1 = { version = "0.7", optional = true }
sp-state-machine = { version = "0.28.0", default-features = false, optional = true, path = "../state-machine" }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "22.0.0", default-features = false, optional = true, path = "../trie" }
sp-externalities = { version = "0.19.0", default-features = false, path = "../externalities" }
sp-tracing = { version = "10.0.0", default-features = false, path = "../tracing" }
sp-state-machine = { path = "../state-machine", default-features = false, optional = true}
sp-runtime-interface = { path = "../runtime-interface", default-features = false}
sp-trie = { path = "../trie", default-features = false, optional = true}
sp-externalities = { path = "../externalities", default-features = false}
sp-tracing = { path = "../tracing", default-features = false}
log = { version = "0.4.17", optional = true }
secp256k1 = { version = "0.24.0", features = ["recovery", "global-context"], optional = true }
tracing = { version = "0.1.29", default-features = false }
+2 -2
View File
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
lazy_static = "1.4.0"
strum = { version = "0.24.1", features = ["derive"], default-features = false }
sp-core = { version = "21.0.0", path = "../core" }
sp-runtime = { version = "24.0.0", path = "../runtime" }
sp-core = { path = "../core" }
sp-runtime = { path = "../runtime" }
[features]
# This feature adds Bandersnatch crypto primitives.
+2 -2
View File
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
parking_lot = { version = "0.12.1", default-features = false }
thiserror = "1.0"
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-externalities = { version = "0.19.0", default-features = false, path = "../externalities" }
sp-core = { path = "../core", default-features = false}
sp-externalities = { path = "../externalities", default-features = false}
[dev-dependencies]
rand = "0.7.2"
@@ -17,11 +17,11 @@ scale-info = { version = "2.5.0", default-features = false, features = ["derive"
log = { version = "0.4.17", default-features = false }
mmr-lib = { package = "ckb-merkle-mountain-range", version = "0.5.2", default-features = false }
serde = { version = "1.0.163", features = ["derive", "alloc"], default-features = false, optional = true }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-debug-derive = { version = "8.0.0", default-features = false, path = "../debug-derive" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-api = { path = "../api", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-debug-derive = { path = "../debug-derive", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
thiserror = "1.0"
[dev-dependencies]
+1 -1
View File
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
frame-metadata = { version = "16.0.0", default-features = false, features = ["current"] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
@@ -16,14 +16,14 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../arithmetic" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-arithmetic = { path = "../arithmetic", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
[dev-dependencies]
rand = "0.8.5"
substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" }
substrate-test-utils = { path = "../../test-utils" }
[features]
default = [ "std" ]
@@ -17,8 +17,8 @@ targets = ["x86_64-unknown-linux-gnu"]
clap = { version = "4.2.5", features = ["derive"] }
honggfuzz = "0.5"
rand = { version = "0.8", features = ["std", "small_rng"] }
sp-npos-elections = { version = "4.0.0-dev", path = ".." }
sp-runtime = { version = "24.0.0", path = "../../runtime" }
sp-npos-elections = { path = ".." }
sp-runtime = { path = "../../runtime" }
[[bin]]
name = "reduce"
+3 -3
View File
@@ -13,9 +13,9 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-api = { path = "../api", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
[features]
default = [ "std" ]
+1 -1
View File
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
rustc-hash = "1.1.0"
serde = { version = "1.0.163", features = ["derive"] }
sp-core = { version = "21.0.0", path = "../core" }
sp-core = { path = "../core" }
[dev-dependencies]
serde_json = "1.0.85"
@@ -15,22 +15,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = { version = "1.1.0", default-features = false }
sp-wasm-interface = { version = "14.0.0", path = "../wasm-interface", default-features = false }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-tracing = { version = "10.0.0", default-features = false, path = "../tracing" }
sp-runtime-interface-proc-macro = { version = "11.0.0", path = "proc-macro" }
sp-externalities = { version = "0.19.0", default-features = false, path = "../externalities" }
sp-wasm-interface = { path = "../wasm-interface", default-features = false }
sp-std = { path = "../std", default-features = false}
sp-tracing = { path = "../tracing", default-features = false}
sp-runtime-interface-proc-macro = { path = "proc-macro" }
sp-externalities = { path = "../externalities", default-features = false}
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["bytes"] }
static_assertions = "1.0.0"
primitive-types = { version = "0.12.0", default-features = false }
sp-storage = { version = "13.0.0", default-features = false, path = "../storage" }
sp-storage = { path = "../storage", default-features = false}
impl-trait-for-tuples = "0.2.2"
[dev-dependencies]
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "test-wasm" }
sp-state-machine = { version = "0.28.0", path = "../state-machine" }
sp-core = { version = "21.0.0", path = "../core" }
sp-io = { version = "23.0.0", path = "../io" }
sp-runtime-interface-test-wasm = { path = "test-wasm" }
sp-state-machine = { path = "../state-machine" }
sp-core = { path = "../core" }
sp-io = { path = "../io" }
rustversion = "1.0.6"
trybuild = "1.0.74"
@@ -13,12 +13,12 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-io = { version = "23.0.0", default-features = false, path = "../../io" }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../" }
sp-core = { path = "../../core", default-features = false}
sp-io = { path = "../../io", default-features = false}
sp-runtime-interface = { path = "..", default-features = false}
[build-dependencies]
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder", optional = true }
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
[features]
default = [ "std" ]
@@ -14,13 +14,13 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = { version = "1.1.0", default-features = false }
sp-core = { version = "21.0.0", default-features = false, path = "../../core" }
sp-io = { version = "23.0.0", default-features = false, path = "../../io" }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../" }
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }
sp-core = { path = "../../core", default-features = false}
sp-io = { path = "../../io", default-features = false}
sp-runtime-interface = { path = "..", default-features = false}
sp-std = { path = "../../std", default-features = false}
[build-dependencies]
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder", optional = true }
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
[features]
default = [ "std" ]
@@ -14,11 +14,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
tracing = "0.1.29"
tracing-core = "0.1.28"
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
sc-executor-common = { version = "0.10.0-dev", path = "../../../client/executor/common" }
sp-io = { version = "23.0.0", path = "../../io" }
sp-runtime = { version = "24.0.0", path = "../../runtime" }
sp-runtime-interface = { version = "17.0.0", path = "../" }
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "../test-wasm" }
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0", path = "../test-wasm-deprecated" }
sp-state-machine = { version = "0.28.0", path = "../../state-machine" }
sc-executor = { path = "../../../client/executor" }
sc-executor-common = { path = "../../../client/executor/common" }
sp-io = { path = "../../io" }
sp-runtime = { path = "../../runtime" }
sp-runtime-interface = { path = ".." }
sp-runtime-interface-test-wasm = { path = "../test-wasm" }
sp-runtime-interface-test-wasm-deprecated = { path = "../test-wasm-deprecated" }
sp-state-machine = { path = "../../state-machine" }
+10 -10
View File
@@ -23,21 +23,21 @@ paste = "1.0"
rand = { version = "0.8.5", optional = true }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../arithmetic" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-io = { version = "23.0.0", default-features = false, path = "../io" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-weights = { version = "20.0.0", default-features = false, path = "../weights" }
sp-application-crypto = { path = "../application-crypto", default-features = false}
sp-arithmetic = { path = "../arithmetic", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-io = { path = "../io", default-features = false}
sp-std = { path = "../std", default-features = false}
sp-weights = { path = "../weights", default-features = false}
[dev-dependencies]
rand = "0.8.5"
serde_json = "1.0.85"
zstd = { version = "0.12.3", default-features = false }
sp-api = { version = "4.0.0-dev", path = "../api" }
sp-state-machine = { version = "0.28.0", path = "../state-machine" }
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
sp-api = { path = "../api" }
sp-state-machine = { path = "../state-machine" }
sp-tracing = { path = "../tracing" }
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
[features]
runtime-benchmarks = []
+6 -6
View File
@@ -15,12 +15,12 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "24.0.0", optional = true, path = "../runtime" }
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../staking" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-keystore = { version = "0.27.0", path = "../keystore", optional = true }
sp-api = { path = "../api", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-runtime = { path = "../runtime", optional = true}
sp-staking = { path = "../staking", default-features = false}
sp-std = { path = "../std", default-features = false}
sp-keystore = { path = "../keystore", optional = true }
[features]
default = [ "std" ]
+3 -3
View File
@@ -18,9 +18,9 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
impl-trait-for-tuples = "0.2.2"
sp-core = { default-features = false, path = "../core" }
sp-runtime = { default-features = false, path = "../runtime" }
sp-std = { default-features = false, path = "../std" }
sp-core = { path = "../core", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
@@ -22,18 +22,18 @@ rand = { version = "0.8.5", optional = true }
smallvec = "1.11.0"
thiserror = { version = "1.0.30", optional = true }
tracing = { version = "0.1.29", optional = true }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-externalities = { version = "0.19.0", default-features = false, path = "../externalities" }
sp-panic-handler = { version = "8.0.0", optional = true, path = "../panic-handler" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-trie = { version = "22.0.0", default-features = false, path = "../trie" }
sp-core = { path = "../core", default-features = false}
sp-externalities = { path = "../externalities", default-features = false}
sp-panic-handler = { path = "../panic-handler", optional = true}
sp-std = { path = "../std", default-features = false}
sp-trie = { path = "../trie", default-features = false}
trie-db = { version = "0.27.1", default-features = false }
[dev-dependencies]
array-bytes = "6.1"
pretty_assertions = "1.2.1"
rand = "0.8.5"
sp-runtime = { version = "24.0.0", path = "../runtime" }
sp-runtime = { path = "../runtime" }
assert_matches = "1.5"
[features]
@@ -15,13 +15,13 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../application-crypto" }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../runtime-interface" }
sp-externalities = { version = "0.19.0", default-features = false, path = "../externalities" }
sp-core = { path = "../core", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
sp-api = { path = "../api", default-features = false}
sp-application-crypto = { path = "../application-crypto", default-features = false}
sp-runtime-interface = { path = "../runtime-interface", default-features = false}
sp-externalities = { path = "../externalities", default-features = false}
thiserror = { version = "1.0", optional = true }
# ECIES dependencies
+2 -2
View File
@@ -18,8 +18,8 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
impl-serde = { version = "0.4.0", optional = true, default-features = false }
ref-cast = "1.0.0"
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
sp-debug-derive = { version = "8.0.0", default-features = false, path = "../debug-derive" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-debug-derive = { path = "../debug-derive", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
@@ -15,10 +15,10 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, features = ["derive"], optional = true }
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../application-crypto" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-application-crypto = { path = "../application-crypto", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
+3 -3
View File
@@ -16,9 +16,9 @@ targets = ["x86_64-unknown-linux-gnu"]
async-trait = { version = "0.1.57", optional = true }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.30", optional = true }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-inherents = { path = "../inherents", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
+1 -1
View File
@@ -18,7 +18,7 @@ features = ["with-tracing"]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
[dependencies]
sp-std = { version = "8.0.0", path = "../std", default-features = false }
sp-std = { path = "../std", default-features = false }
codec = { version = "3.6.1", package = "parity-scale-codec", default-features = false, features = [
"derive",
] }
@@ -14,8 +14,8 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-api = { path = "../api", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
[features]
default = [ "std" ]
@@ -16,11 +16,11 @@ targets = ["x86_64-unknown-linux-gnu"]
async-trait = { version = "0.1.57", optional = true }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
sp-core = { version = "21.0.0", optional = true, path = "../core" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-trie = { version = "22.0.0", optional = true, path = "../trie" }
sp-core = { path = "../core", optional = true}
sp-inherents = { path = "../inherents", default-features = false}
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
sp-trie = { path = "../trie", optional = true}
[features]
default = [ "std" ]
+3 -3
View File
@@ -31,8 +31,8 @@ thiserror = { version = "1.0.30", optional = true }
tracing = { version = "0.1.29", optional = true }
trie-db = { version = "0.27.0", default-features = false }
trie-root = { version = "0.18.0", default-features = false }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-core = { path = "../core", default-features = false}
sp-std = { path = "../std", default-features = false}
schnellru = { version = "0.2.1", optional = true }
[dev-dependencies]
@@ -40,7 +40,7 @@ array-bytes = "6.1"
criterion = "0.4.0"
trie-bench = "0.37.0"
trie-standardmap = "0.16.0"
sp-runtime = { version = "24.0.0", path = "../runtime" }
sp-runtime = { path = "../runtime" }
[features]
default = [ "std" ]
+4 -4
View File
@@ -20,10 +20,10 @@ parity-wasm = { version = "0.45", optional = true }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"], optional = true }
thiserror = { version = "1.0.30", optional = true }
sp-core-hashing-proc-macro = { version = "9.0.0", path = "../core/hashing/proc-macro" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-version-proc-macro = { version = "8.0.0", default-features = false, path = "proc-macro" }
sp-core-hashing-proc-macro = { path = "../core/hashing/proc-macro" }
sp-runtime = { path = "../runtime", default-features = false}
sp-std = { path = "../std", default-features = false}
sp-version-proc-macro = { path = "proc-macro", default-features = false}
[features]
default = [ "std" ]
@@ -22,4 +22,4 @@ quote = "1.0.28"
syn = { version = "2.0.16", features = ["full", "fold", "extra-traits", "visit"] }
[dev-dependencies]
sp-version = { version = "22.0.0", path = ".." }
sp-version = { path = ".." }
@@ -19,7 +19,7 @@ impl-trait-for-tuples = "0.2.2"
log = { version = "0.4.17", optional = true }
wasmtime = { version = "8.0.1", default-features = false, optional = true }
anyhow = { version = "1.0.68", optional = true }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]
+4 -4
View File
@@ -17,10 +17,10 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.163", default-features = false, optional = true, features = ["derive", "alloc"] }
smallvec = "1.11.0"
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../arithmetic" }
sp-core = { version = "21.0.0", default-features = false, path = "../core" }
sp-debug-derive = { version = "8.0.0", default-features = false, path = "../debug-derive" }
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
sp-arithmetic = { path = "../arithmetic", default-features = false}
sp-core = { path = "../core", default-features = false}
sp-debug-derive = { path = "../debug-derive", default-features = false}
sp-std = { path = "../std", default-features = false}
[features]
default = [ "std" ]