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