mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 23:51:05 +00:00
@@ -18,16 +18,16 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.163", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.85"
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -14,21 +14,21 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
# Substrate dependencies
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
pallet-asset-conversion = { version = "4.0.0-dev", default-features = false, path = "../../asset-conversion" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = ".." }
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
frame-support = { path = "../../support", default-features = false}
|
||||
frame-system = { path = "../../system", default-features = false}
|
||||
pallet-asset-conversion = { path = "../../asset-conversion", default-features = false}
|
||||
pallet-transaction-payment = { path = "..", default-features = false}
|
||||
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-storage = { version = "13.0.0", default-features = false, path = "../../../primitives/storage" }
|
||||
pallet-assets = { version = "4.0.0-dev", path = "../../assets" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../../balances" }
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../../primitives/io", default-features = false}
|
||||
sp-storage = { path = "../../../primitives/storage", default-features = false}
|
||||
pallet-assets = { path = "../../assets" }
|
||||
pallet-balances = { path = "../../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
# Substrate dependencies
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = ".." }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking", optional = true }
|
||||
frame-support = { path = "../../support", default-features = false}
|
||||
frame-system = { path = "../../system", default-features = false}
|
||||
pallet-transaction-payment = { path = "..", default-features = false}
|
||||
frame-benchmarking = { path = "../../benchmarking", default-features = false, optional = true }
|
||||
|
||||
# Other dependencies
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
@@ -32,11 +32,11 @@ serde = { version = "1.0.163", optional = true }
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.85"
|
||||
|
||||
sp-storage = { version = "13.0.0", default-features = false, path = "../../../primitives/storage" }
|
||||
sp-storage = { path = "../../../primitives/storage", default-features = false}
|
||||
|
||||
pallet-assets = { version = "4.0.0-dev", path = "../../assets" }
|
||||
pallet-authorship = { version = "4.0.0-dev", path = "../../authorship" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../../balances" }
|
||||
pallet-assets = { path = "../../assets" }
|
||||
pallet-authorship = { path = "../../authorship" }
|
||||
pallet-balances = { path = "../../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -15,10 +15,10 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", path = "./runtime-api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../../primitives/rpc" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-weights = { version = "20.0.0", path = "../../../primitives/weights" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { path = "runtime-api" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-rpc = { path = "../../../primitives/rpc" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-weights = { path = "../../../primitives/weights" }
|
||||
|
||||
@@ -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"] }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../transaction-payment" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/api" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
sp-weights = { version = "20.0.0", default-features = false, path = "../../../../primitives/weights" }
|
||||
pallet-transaction-payment = { path = "../..", default-features = false}
|
||||
sp-api = { path = "../../../../primitives/api", default-features = false}
|
||||
sp-runtime = { path = "../../../../primitives/runtime", default-features = false}
|
||||
sp-weights = { path = "../../../../primitives/weights", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
Reference in New Issue
Block a user