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
+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 }