mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 10:31:04 +00:00
bump codec minor version (#2247)
This commit is contained in:
committed by
GitHub
parent
9aebac3c69
commit
a3682f8d9d
Generated
+2
-2
@@ -4498,9 +4498,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "parity-scale-codec"
|
name = "parity-scale-codec"
|
||||||
version = "1.3.5"
|
version = "1.3.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7c740e5fbcb6847058b40ac7e5574766c6388f585e184d769910fe0d3a2ca861"
|
checksum = "79602888a81ace83e3d1d4b2873286c1f5f906c84db667594e8db8da3506c383"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec 0.5.2",
|
"arrayvec 0.5.2",
|
||||||
"bitvec",
|
"bitvec",
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = [ "derive" ] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = [ "derive" ] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
primitives = { package = "polkadot-primitives", path = "../primitives" }
|
primitives = { package = "polkadot-primitives", path = "../primitives" }
|
||||||
reed_solomon = { package = "reed-solomon-erasure", version = "4.0.2" }
|
reed_solomon = { package = "reed-solomon-erasure", version = "4.0.2" }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }
|
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
thiserror = "1.0.23"
|
thiserror = "1.0.23"
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ tracing = "0.1.22"
|
|||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
bitvec = "0.17.4"
|
bitvec = "0.17.4"
|
||||||
|
|
||||||
parity-scale-codec = { version = "1.3.5", features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", features = ["derive"] }
|
||||||
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
||||||
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
||||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ tracing = "0.1.22"
|
|||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
|
|
||||||
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["bit-vec", "derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["bit-vec", "derive"] }
|
||||||
|
|
||||||
polkadot-primitives = { path = "../../../primitives" }
|
polkadot-primitives = { path = "../../../primitives" }
|
||||||
polkadot-parachain = { path = "../../../parachain" }
|
polkadot-parachain = { path = "../../../parachain" }
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
parity-scale-codec = { version = "1.3.5", features = ["std"] }
|
parity-scale-codec = { version = "1.3.6", features = ["std"] }
|
||||||
polkadot-primitives = { path = "../../../primitives" }
|
polkadot-primitives = { path = "../../../primitives" }
|
||||||
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||||
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
polkadot-primitives = { path = "../../../primitives" }
|
polkadot-primitives = { path = "../../../primitives" }
|
||||||
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
||||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ futures = "0.3.8"
|
|||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
polkadot-primitives = { path = "../../../primitives" }
|
polkadot-primitives = { path = "../../../primitives" }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
||||||
|
|||||||
@@ -9,5 +9,5 @@ description = "Primitives types for the Node-side"
|
|||||||
polkadot-primitives = { path = "../../../primitives" }
|
polkadot-primitives = { path = "../../../primitives" }
|
||||||
polkadot-node-primitives = { path = "../../primitives" }
|
polkadot-node-primitives = { path = "../../primitives" }
|
||||||
polkadot-node-jaeger = { path = "../../jaeger" }
|
polkadot-node-jaeger = { path = "../../jaeger" }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ description = "Primitives types for the Node-side"
|
|||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
polkadot-primitives = { path = "../../primitives" }
|
polkadot-primitives = { path = "../../primitives" }
|
||||||
polkadot-statement-table = { path = "../../statement-table" }
|
polkadot-statement-table = { path = "../../statement-table" }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ futures = "0.3.8"
|
|||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
pin-project = "1.0.4"
|
pin-project = "1.0.4"
|
||||||
polkadot-node-primitives = { path = "../primitives" }
|
polkadot-node-primitives = { path = "../primitives" }
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ description = "Subsystem traits and message definitions"
|
|||||||
async-trait = "0.1.42"
|
async-trait = "0.1.42"
|
||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
parking_lot = { version = "0.11.1", optional = true }
|
parking_lot = { version = "0.11.1", optional = true }
|
||||||
pin-project = "1.0.4"
|
pin-project = "1.0.4"
|
||||||
streamunordered = "0.5.1"
|
streamunordered = "0.5.1"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ mick-jaeger = "0.1.2"
|
|||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
pin-project = "1.0.4"
|
pin-project = "1.0.4"
|
||||||
polkadot-node-primitives = { path = "../primitives" }
|
polkadot-node-primitives = { path = "../primitives" }
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
|
|
||||||
# Polkadot dependencies
|
# Polkadot dependencies
|
||||||
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ edition = "2018"
|
|||||||
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
|
# note: special care is taken to avoid inclusion of `sp-io` externals when compiling
|
||||||
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
|
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
|
||||||
# various unnecessary Substrate-specific endpoints.
|
# various unnecessary Substrate-specific endpoints.
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = [ "derive" ] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = [ "derive" ] }
|
||||||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tiny-keccak = "2.0.2"
|
tiny-keccak = "2.0.2"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
|
|
||||||
parachain = { package = "polkadot-parachain", path = ".." }
|
parachain = { package = "polkadot-parachain", path = ".." }
|
||||||
adder = { package = "test-parachain-adder", path = "adder" }
|
adder = { package = "test-parachain-adder", path = "adder" }
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ build = "build.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
|
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
||||||
dlmalloc = { version = "0.2.1", features = [ "global" ] }
|
dlmalloc = { version = "0.2.1", features = [ "global" ] }
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ name = "adder-collator"
|
|||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.118", optional = true, features = ["derive"] }
|
serde = { version = "1.0.118", optional = true, features = ["derive"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["bit-vec", "derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["bit-vec", "derive"] }
|
||||||
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
|
|||||||
@@ -26,5 +26,5 @@ sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch =
|
|||||||
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" }
|
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false }
|
parity-scale-codec = { version = "1.3.6", default-features = false }
|
||||||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
log = { version = "0.4.11", optional = true }
|
log = { version = "0.4.11", optional = true }
|
||||||
rustc-hex = { version = "2.1.0", default-features = false }
|
rustc-hex = { version = "2.1.0", default-features = false }
|
||||||
serde = { version = "1.0.118", default-features = false }
|
serde = { version = "1.0.118", default-features = false }
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build = "build.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
log = { version = "0.4.11", optional = true }
|
log = { version = "0.4.11", optional = true }
|
||||||
rustc-hex = { version = "2.1.0", default-features = false }
|
rustc-hex = { version = "2.1.0", default-features = false }
|
||||||
serde = { version = "1.0.118", default-features = false }
|
serde = { version = "1.0.118", default-features = false }
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
rustc-hex = { version = "2.1.0", default-features = false }
|
rustc-hex = { version = "2.1.0", default-features = false }
|
||||||
serde = { version = "1.0.118", features = [ "derive" ], optional = true }
|
serde = { version = "1.0.118", features = [ "derive" ], optional = true }
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build = "build.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
log = { version = "0.4.11", optional = true }
|
log = { version = "0.4.11", optional = true }
|
||||||
rustc-hex = { version = "2.1.0", default-features = false }
|
rustc-hex = { version = "2.1.0", default-features = false }
|
||||||
serde = { version = "1.0.118", default-features = false }
|
serde = { version = "1.0.118", default-features = false }
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ edition = "2018"
|
|||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
serde = { version = "1.0.118", default-features = false }
|
serde = { version = "1.0.118", default-features = false }
|
||||||
serde_derive = { version = "1.0.117", optional = true }
|
serde_derive = { version = "1.0.117", optional = true }
|
||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build = "build.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
log = { version = "0.4.11", optional = true }
|
log = { version = "0.4.11", optional = true }
|
||||||
rustc-hex = { version = "2.1.0", default-features = false }
|
rustc-hex = { version = "2.1.0", default-features = false }
|
||||||
serde = { version = "1.0.118", default-features = false }
|
serde = { version = "1.0.118", default-features = false }
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ build = "build.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
log = { version = "0.4.11", optional = true }
|
log = { version = "0.4.11", optional = true }
|
||||||
rustc-hex = { version = "2.1.0", default-features = false }
|
rustc-hex = { version = "2.1.0", default-features = false }
|
||||||
serde = { version = "1.0.118", default-features = false }
|
serde = { version = "1.0.118", default-features = false }
|
||||||
|
|||||||
@@ -5,6 +5,6 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
primitives = { package = "polkadot-primitives", path = "../primitives" }
|
primitives = { package = "polkadot-primitives", path = "../primitives" }
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ consensus = { package = "sp-consensus", git = "https://github.com/paritytech/sub
|
|||||||
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master" }
|
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
|
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ description = "The basic XCM datastructures."
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = [ "derive" ] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = [ "derive" ] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ description = "Tools & types for building with XCM and its executor."
|
|||||||
version = "0.8.22"
|
version = "0.8.22"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
xcm = { path = "..", default-features = false }
|
xcm = { path = "..", default-features = false }
|
||||||
xcm-executor = { path = "../xcm-executor", default-features = false }
|
xcm-executor = { path = "../xcm-executor", default-features = false }
|
||||||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ version = "0.8.22"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
impl-trait-for-tuples = "0.2.0"
|
impl-trait-for-tuples = "0.2.0"
|
||||||
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
|
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] }
|
||||||
xcm = { path = "..", default-features = false }
|
xcm = { path = "..", default-features = false }
|
||||||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
|
|||||||
Reference in New Issue
Block a user