mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 05:57:59 +00:00
point things to substrate git repo
This commit is contained in:
@@ -8,14 +8,14 @@ error-chain = "0.12"
|
||||
polkadot-executor = { path = "../executor" }
|
||||
polkadot-runtime = { path = "../runtime" }
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-io = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-executive = { path = "../../substrate/runtime/executive" }
|
||||
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
||||
substrate-client = { path = "../../substrate/client" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-executor = { path = "../../substrate/executor" }
|
||||
substrate-state-machine = { path = "../../substrate/state-machine" }
|
||||
substrate-client = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-executor = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-state-machine = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-keyring = { path = "../../substrate/keyring" }
|
||||
substrate-keyring = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
|
||||
@@ -8,8 +8,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
parking_lot = "0.4"
|
||||
log = "0.3"
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
kvdb = { git = "https://github.com/paritytech/parity.git" }
|
||||
kvdb-rocksdb = { git = "https://github.com/paritytech/parity.git" }
|
||||
kvdb-memorydb = { git = "https://github.com/paritytech/parity.git" }
|
||||
|
||||
+12
-12
@@ -14,18 +14,18 @@ tokio = "0.1.7"
|
||||
futures = "0.1.17"
|
||||
parking_lot = "0.4"
|
||||
exit-future = "0.1"
|
||||
substrate-cli = { path = "../../substrate/cli" }
|
||||
substrate-client = { path = "../../substrate/client" }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-extrinsic-pool = { path = "../../substrate/extrinsic-pool" }
|
||||
substrate-network = { path = "../../substrate/network" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-rpc = { path = "../../substrate/rpc" }
|
||||
substrate-rpc-servers = { path = "../../substrate/rpc-servers" }
|
||||
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
||||
substrate-service = { path = "../../substrate/service" }
|
||||
substrate-state-machine = { path = "../../substrate/state-machine" }
|
||||
substrate-telemetry = { path = "../../substrate/telemetry" }
|
||||
substrate-cli = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-client = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-extrinsic-pool = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-network = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-rpc = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-rpc-servers = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-service = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-state-machine = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-telemetry = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
polkadot-runtime = { path = "../runtime" }
|
||||
polkadot-service = { path = "../service" }
|
||||
|
||||
@@ -6,13 +6,13 @@ description = "Collator node implementation"
|
||||
|
||||
[dependencies]
|
||||
futures = "0.1.17"
|
||||
substrate-client = { path = "../../substrate/client" }
|
||||
substrate-codec = { path = "../../substrate/codec", version = "0.1" }
|
||||
substrate-primitives = { path = "../../substrate/primitives", version = "0.1" }
|
||||
substrate-client = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate", version = "0.1" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate", version = "0.1" }
|
||||
polkadot-api = { path = "../api" }
|
||||
polkadot-runtime = { path = "../runtime", version = "0.1" }
|
||||
polkadot-primitives = { path = "../primitives", version = "0.1" }
|
||||
polkadot-cli = { path = "../cli" }
|
||||
log = "0.4"
|
||||
ed25519 = { path = "../../substrate/ed25519" }
|
||||
ed25519 = { git = "https://github.com/paritytech/paritysubstrate/ed25519" }
|
||||
tokio = "0.1.7"
|
||||
|
||||
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
futures = "0.1.17"
|
||||
parking_lot = "0.4"
|
||||
tokio = "0.1.7"
|
||||
ed25519 = { path = "../../substrate/ed25519" }
|
||||
ed25519 = { git = "https://github.com/paritytech/paritysubstrate/ed25519" }
|
||||
error-chain = "0.12"
|
||||
log = "0.3"
|
||||
exit-future = "0.1"
|
||||
@@ -19,12 +19,12 @@ polkadot-primitives = { path = "../primitives" }
|
||||
polkadot-runtime = { path = "../runtime" }
|
||||
polkadot-statement-table = { path = "../statement-table" }
|
||||
polkadot-transaction-pool = { path = "../transaction-pool" }
|
||||
substrate-bft = { path = "../../substrate/bft" }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
||||
substrate-client = { path = "../../substrate/client" }
|
||||
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
||||
substrate-bft = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-support = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-client = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-keyring = { path = "../../substrate/keyring" }
|
||||
substrate-keyring = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
|
||||
@@ -5,5 +5,5 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Polkadot node implementation in Rust."
|
||||
|
||||
[dependencies]
|
||||
substrate-executor = { path = "../../substrate/executor" }
|
||||
substrate-executor = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
polkadot-runtime = { path = "../runtime" }
|
||||
|
||||
@@ -10,12 +10,12 @@ polkadot-api = { path = "../api" }
|
||||
polkadot-availability-store = { path = "../availability-store" }
|
||||
polkadot-consensus = { path = "../consensus" }
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
substrate-bft = { path = "../../substrate/bft" }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-codec-derive = { path = "../../substrate/codec/derive" }
|
||||
substrate-network = { path = "../../substrate/network" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
ed25519 = { path = "../../substrate/ed25519" }
|
||||
substrate-bft = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec-derive = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-network = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
ed25519 = { git = "https://github.com/paritytech/paritysubstrate/ed25519" }
|
||||
futures = "0.1"
|
||||
tokio = "0.1.7"
|
||||
log = "0.4"
|
||||
|
||||
@@ -5,8 +5,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Types and utilities for creating and working with parachains"
|
||||
|
||||
[dependencies]
|
||||
substrate-codec = { path = "../../substrate/codec", default-features = false }
|
||||
substrate-codec-derive = { path = "../../substrate/codec/derive", default-features = false }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-codec-derive = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
wasmi = { version = "0.4", optional = true }
|
||||
error-chain = { version = "0.12", optional = true }
|
||||
|
||||
|
||||
@@ -6,14 +6,14 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
[dependencies]
|
||||
serde = { version = "1.0", default_features = false }
|
||||
serde_derive = { version = "1.0", optional = true }
|
||||
substrate-codec = { path = "../../substrate/codec", default_features = false }
|
||||
substrate-codec-derive = { path = "../../substrate/codec/derive", default_features = false }
|
||||
substrate-primitives = { path = "../../substrate/primitives", default_features = false }
|
||||
substrate-runtime-std = { path = "../../substrate/runtime-std", default_features = false }
|
||||
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives", default_features = false }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate", default_features = false }
|
||||
substrate-codec-derive = { git = "https://github.com/paritytech/paritysubstrate", default_features = false }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate", default_features = false }
|
||||
substrate-runtime-std = { git = "https://github.com/paritytech/paritysubstrate", default_features = false }
|
||||
substrate-runtime-primitives = { git = "https://github.com/paritytech/paritysubstrate", default_features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-serializer = { path = "../../substrate/serializer" }
|
||||
substrate-serializer = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
pretty_assertions = "0.4"
|
||||
|
||||
[features]
|
||||
|
||||
+17
-17
@@ -10,23 +10,23 @@ serde = { version = "1.0", default_features = false }
|
||||
serde_derive = { version = "1.0", optional = true }
|
||||
safe-mix = { version = "1.0", default_features = false}
|
||||
polkadot-primitives = { path = "../primitives", default_features = false }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-serializer = { path = "../../substrate/serializer" }
|
||||
substrate-runtime-std = { path = "../../substrate/runtime-std" }
|
||||
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
||||
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-keyring = { path = "../../substrate/keyring" }
|
||||
substrate-runtime-consensus = { path = "../../substrate/runtime/consensus" }
|
||||
substrate-runtime-council = { path = "../../substrate/runtime/council" }
|
||||
substrate-runtime-democracy = { path = "../../substrate/runtime/democracy" }
|
||||
substrate-runtime-executive = { path = "../../substrate/runtime/executive" }
|
||||
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
||||
substrate-runtime-session = { path = "../../substrate/runtime/session" }
|
||||
substrate-runtime-staking = { path = "../../substrate/runtime/staking" }
|
||||
substrate-runtime-system = { path = "../../substrate/runtime/system" }
|
||||
substrate-runtime-timestamp = { path = "../../substrate/runtime/timestamp" }
|
||||
substrate-runtime-version = { path = "../../substrate/runtime/version" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-serializer = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-std = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-io = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-support = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-keyring = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-consensus = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-council = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-democracy = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-executive = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-session = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-staking = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-system = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-timestamp = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-version = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.1.0"
|
||||
|
||||
@@ -10,21 +10,21 @@ crate-type = ["cdylib"]
|
||||
integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git", branch = "master" }
|
||||
polkadot-primitives = { path = "../../primitives", default-features = false }
|
||||
safe-mix = { version = "1.0", default-features = false }
|
||||
substrate-codec = { path = "../../../substrate/codec", default-features = false }
|
||||
substrate-primitives = { path = "../../../substrate/primitives", default-features = false }
|
||||
substrate-runtime-std = { path = "../../../substrate/runtime-std", default-features = false }
|
||||
substrate-runtime-io = { path = "../../../substrate/runtime-io", default-features = false }
|
||||
substrate-runtime-support = { path = "../../../substrate/runtime-support", default-features = false }
|
||||
substrate-runtime-consensus = { path = "../../../substrate/runtime/consensus", default-features = false }
|
||||
substrate-runtime-council = { path = "../../../substrate/runtime/council", default-features = false }
|
||||
substrate-runtime-democracy = { path = "../../../substrate/runtime/democracy", default-features = false }
|
||||
substrate-runtime-executive = { path = "../../../substrate/runtime/executive", default-features = false }
|
||||
substrate-runtime-primitives = { path = "../../../substrate/runtime/primitives", default-features = false }
|
||||
substrate-runtime-session = { path = "../../../substrate/runtime/session", default-features = false }
|
||||
substrate-runtime-staking = { path = "../../../substrate/runtime/staking", default-features = false }
|
||||
substrate-runtime-system = { path = "../../../substrate/runtime/system", default-features = false }
|
||||
substrate-runtime-timestamp = { path = "../../../substrate/runtime/timestamp", default-features = false }
|
||||
substrate-runtime-version = { path = "../../../substrate/runtime/version", default-features = false }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-std = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-io = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-support = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-consensus = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-council = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-democracy = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-executive = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-primitives = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-session = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-staking = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-system = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-timestamp = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
substrate-runtime-version = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -11,7 +11,7 @@ log = "0.3"
|
||||
slog = "^2"
|
||||
tokio = "0.1.7"
|
||||
hex-literal = "0.1"
|
||||
ed25519 = { path = "../../substrate/ed25519" }
|
||||
ed25519 = { git = "https://github.com/paritytech/paritysubstrate/ed25519" }
|
||||
polkadot-availability-store = { path = "../availability-store" }
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
polkadot-runtime = { path = "../runtime" }
|
||||
@@ -20,10 +20,10 @@ polkadot-executor = { path = "../executor" }
|
||||
polkadot-api = { path = "../api" }
|
||||
polkadot-transaction-pool = { path = "../transaction-pool" }
|
||||
polkadot-network = { path = "../network" }
|
||||
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-network = { path = "../../substrate/network" }
|
||||
substrate-client = { path = "../../substrate/client" }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-service = { path = "../../substrate/service" }
|
||||
substrate-telemetry = { path = "../../substrate/telemetry" }
|
||||
substrate-runtime-io = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-network = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-client = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-service = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-telemetry = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
|
||||
@@ -4,7 +4,7 @@ version = "0.1.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
|
||||
[dependencies]
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-codec-derive = { path = "../../substrate/codec/derive" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec-derive = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
|
||||
@@ -6,5 +6,5 @@ description = "Test parachain which adds to a number as its state transition"
|
||||
|
||||
[dependencies]
|
||||
polkadot-parachain = { path = "../../parachain/", default-features = false }
|
||||
substrate-codec-derive = { path = "../../../substrate/codec/derive", default-features = false }
|
||||
substrate-codec-derive = { git = "https://github.com/paritytech/paritysubstrate", default-features = false }
|
||||
tiny-keccak = "1.4"
|
||||
|
||||
@@ -10,10 +10,10 @@ parking_lot = "0.4"
|
||||
polkadot-api = { path = "../api" }
|
||||
polkadot-primitives = { path = "../primitives" }
|
||||
polkadot-runtime = { path = "../runtime" }
|
||||
substrate-client = { path = "../../substrate/client" }
|
||||
substrate-codec = { path = "../../substrate/codec" }
|
||||
substrate-keyring = { path = "../../substrate/keyring" }
|
||||
substrate-extrinsic-pool = { path = "../../substrate/extrinsic-pool" }
|
||||
substrate-primitives = { path = "../../substrate/primitives" }
|
||||
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
||||
ed25519 = { path = "../../substrate/ed25519" }
|
||||
substrate-client = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-codec = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-keyring = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-extrinsic-pool = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
substrate-runtime-primitives = { git = "https://github.com/paritytech/paritysubstrate" }
|
||||
ed25519 = { git = "https://github.com/paritytech/paritysubstrate/ed25519" }
|
||||
|
||||
Reference in New Issue
Block a user