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
+18 -18
View File
@@ -19,29 +19,29 @@ schnellru = "0.2.1"
tracing = "0.1.29"
codec = { package = "parity-scale-codec", version = "3.6.1" }
sc-executor-common = { version = "0.10.0-dev", path = "common" }
sc-executor-wasmtime = { version = "0.10.0-dev", path = "wasmtime" }
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
sp-core = { version = "21.0.0", path = "../../primitives/core" }
sp-externalities = { version = "0.19.0", path = "../../primitives/externalities" }
sp-io = { version = "23.0.0", path = "../../primitives/io" }
sp-panic-handler = { version = "8.0.0", path = "../../primitives/panic-handler" }
sp-runtime-interface = { version = "17.0.0", path = "../../primitives/runtime-interface" }
sp-trie = { version = "22.0.0", path = "../../primitives/trie" }
sp-version = { version = "22.0.0", path = "../../primitives/version" }
sp-wasm-interface = { version = "14.0.0", path = "../../primitives/wasm-interface" }
sc-executor-common = { path = "common" }
sc-executor-wasmtime = { path = "wasmtime" }
sp-api = { path = "../../primitives/api" }
sp-core = { path = "../../primitives/core" }
sp-externalities = { path = "../../primitives/externalities" }
sp-io = { path = "../../primitives/io" }
sp-panic-handler = { path = "../../primitives/panic-handler" }
sp-runtime-interface = { path = "../../primitives/runtime-interface" }
sp-trie = { path = "../../primitives/trie" }
sp-version = { path = "../../primitives/version" }
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
[dev-dependencies]
array-bytes = "6.1"
assert_matches = "1.3.0"
wat = "1.0"
sc-runtime-test = { version = "2.0.0", path = "runtime-test" }
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../primitives/maybe-compressed-blob" }
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
sc-runtime-test = { path = "runtime-test" }
substrate-test-runtime = { path = "../../test-utils/runtime" }
sp-state-machine = { path = "../../primitives/state-machine" }
sp-runtime = { path = "../../primitives/runtime" }
sp-maybe-compressed-blob = { path = "../../primitives/maybe-compressed-blob" }
sc-tracing = { path = "../tracing" }
sp-tracing = { path = "../../primitives/tracing" }
tracing-subscriber = "0.2.19"
paste = "1.0"
regex = "1.6.0"
+3 -3
View File
@@ -16,9 +16,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
thiserror = "1.0.30"
wasm-instrument = "0.3"
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../../primitives/maybe-compressed-blob" }
sp-wasm-interface = { version = "14.0.0", path = "../../../primitives/wasm-interface" }
sc-allocator = { path = "../../allocator" }
sp-maybe-compressed-blob = { path = "../../../primitives/maybe-compressed-blob" }
sp-wasm-interface = { path = "../../../primitives/wasm-interface" }
[features]
default = []
@@ -13,14 +13,14 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
sp-io = { version = "23.0.0", default-features = false, features = ["improved_panic_error_reporting"], path = "../../../primitives/io" }
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../../../primitives/runtime-interface" }
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
sp-core = { path = "../../../primitives/core", default-features = false}
sp-io = { path = "../../../primitives/io", default-features = false, features = ["improved_panic_error_reporting"]}
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
sp-runtime-interface = { path = "../../../primitives/runtime-interface", default-features = false}
sp-std = { path = "../../../primitives/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" ]
@@ -27,10 +27,10 @@ wasmtime = { version = "8.0.1", default-features = false, features = [
"pooling-allocator"
] }
anyhow = "1.0.68"
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
sc-executor-common = { version = "0.10.0-dev", path = "../common" }
sp-runtime-interface = { version = "17.0.0", path = "../../../primitives/runtime-interface" }
sp-wasm-interface = { version = "14.0.0", path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
sc-allocator = { path = "../../allocator" }
sc-executor-common = { path = "../common" }
sp-runtime-interface = { path = "../../../primitives/runtime-interface" }
sp-wasm-interface = { path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
# Here we include the rustix crate in the exactly same semver-compatible version as used by
# wasmtime and enable its 'use-libc' flag.
@@ -42,8 +42,8 @@ rustix = { version = "0.36.7", default-features = false, features = ["std", "mm"
[dev-dependencies]
wat = "1.0"
sc-runtime-test = { version = "2.0.0", path = "../runtime-test" }
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
sc-runtime-test = { path = "../runtime-test" }
sp-io = { path = "../../../primitives/io" }
tempfile = "3.3.0"
paste = "1.0"
codec = { package = "parity-scale-codec", version = "3.6.1" }