mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-23 09:41:07 +00:00
@@ -8,14 +8,14 @@ edition = "2021"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
|
||||
|
||||
# Substrate
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-api = { path = "../../../substrate/primitives/api", default-features = false}
|
||||
sp-consensus-aura = { path = "../../../substrate/primitives/consensus/aura", default-features = false}
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-core-primitives = { path = "../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -9,16 +9,16 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
||||
|
||||
# Substrate
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-api = { path = "../../../substrate/primitives/api", default-features = false}
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-core-primitives = { path = "../../../polkadot/core-primitives", default-features = false}
|
||||
polkadot-parachain = { path = "../../../polkadot/parachain", default-features = false}
|
||||
polkadot-primitives = { path = "../../../polkadot/primitives", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -11,15 +11,15 @@ scale-info = { version = "2.9.0", default-features = false, features = ["derive"
|
||||
tracing = { version = "0.1.37", optional = true }
|
||||
|
||||
# Substrate
|
||||
sc-client-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-storage = { git = "https://github.com/paritytech/substrate", optional = true, branch = "master" }
|
||||
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sc-client-api = { path = "../../../substrate/client/api", optional = true}
|
||||
sp-api = { path = "../../../substrate/primitives/api", optional = true}
|
||||
sp-core = { path = "../../../substrate/primitives/core", default-features = false}
|
||||
sp-inherents = { path = "../../../substrate/primitives/inherents", default-features = false}
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", optional = true}
|
||||
sp-state-machine = { path = "../../../substrate/primitives/state-machine", optional = true}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
sp-storage = { path = "../../../substrate/primitives/storage", optional = true}
|
||||
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-primitives-core = { path = "../core", default-features = false }
|
||||
|
||||
@@ -10,9 +10,9 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
futures = "0.3.28"
|
||||
|
||||
# Substrate
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-inherents = { path = "../../../substrate/primitives/inherents", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
sp-timestamp = { path = "../../../substrate/primitives/timestamp", default-features = false}
|
||||
|
||||
# Cumulus
|
||||
cumulus-primitives-core = { path = "../core", default-features = false }
|
||||
|
||||
@@ -9,16 +9,16 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
log = { version = "0.4.20", default-features = false }
|
||||
|
||||
# Substrate
|
||||
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
||||
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
||||
sp-io = { path = "../../../substrate/primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
||||
|
||||
# Polkadot
|
||||
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
||||
polkadot-runtime-common = { path = "../../../polkadot/runtime/common", default-features = false}
|
||||
xcm = { path = "../../../polkadot/xcm", default-features = false}
|
||||
xcm-executor = { path = "../../../polkadot/xcm/xcm-executor", default-features = false}
|
||||
xcm-builder = { path = "../../../polkadot/xcm/xcm-builder", default-features = false}
|
||||
|
||||
|
||||
# Cumulus
|
||||
|
||||
Reference in New Issue
Block a user