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