mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 14:01:06 +00:00
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user