mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 04:41:04 +00:00
Make generic, removing dependency on node_runtime (#1)
* Extract error to file * Update readme * Extract Rpc to separate file * Make Rpc generic over Runtime * Editor config etc. * rustfmt * Remove node-runtime dependency, generic soup * Move generic trait bounds to impl * rustfmt * Remove unused stuff * Add test for balance transfer call
This commit is contained in:
+7
-4
@@ -18,16 +18,19 @@ env_logger = "0.6"
|
||||
log = "0.4"
|
||||
futures = "0.1.28"
|
||||
jsonrpc-core-client = { version = "12.1.0", features = ["ws"] }
|
||||
node-runtime = { git = "https://github.com/paritytech/substrate/", package = "node-runtime", features = ["std"] }
|
||||
num-traits = { version = "0.2", default-features = false }
|
||||
parity-codec = { version = "4.1", default-features = false, features = ["derive", "full"] }
|
||||
runtime_support = { git = "https://github.com/paritytech/substrate/", package = "srml-support" }
|
||||
runtime_primitives = { git = "https://github.com/paritytech/substrate/", package = "sr-primitives" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
srml-balances = { git = "https://github.com/paritytech/substrate/", package = "srml-balances", default-features = false }
|
||||
srml-system = { git = "https://github.com/paritytech/substrate/", package = "srml-system", default-features = false }
|
||||
srml-system = { git = "https://github.com/paritytech/substrate/", package = "srml-system" }
|
||||
substrate-rpc = { git = "https://github.com/paritytech/substrate/", package = "substrate-rpc" }
|
||||
substrate-keyring = { git = "https://github.com/paritytech/substrate/", package = "substrate-keyring" }
|
||||
substrate-primitives = { git = "https://github.com/paritytech/substrate/", package = "substrate-primitives" }
|
||||
transaction_pool = { git = "https://github.com/paritytech/substrate/", package = "substrate-transaction-pool" }
|
||||
tokio = "0.1.21"
|
||||
url = "1.7"
|
||||
|
||||
[dev-dependencies]
|
||||
node_runtime = { git = "https://github.com/paritytech/substrate/", package = "node-runtime" }
|
||||
srml_balances = { git = "https://github.com/paritytech/substrate/", package = "srml-balances" }
|
||||
substrate-keyring = { git = "https://github.com/paritytech/substrate/", package = "substrate-keyring" }
|
||||
|
||||
Reference in New Issue
Block a user