mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 18:37:59 +00:00
4daac15d22
* Sketch * Some work on docs. * Doc improvements. * More docs. * Some more docs. * Yet another comment. * Bump impl_version. * Accept the block hash * Use NumberOrHex * Update node/rpc/src/contracts.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Move rpc/primitives
27 lines
974 B
TOML
27 lines
974 B
TOML
[package]
|
|
name = "node-rpc"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
jsonrpc-core = "13.1.0"
|
|
jsonrpc-core-client = "13.1.0"
|
|
jsonrpc-derive = "13.1.0"
|
|
jsonrpc-pubsub = "13.1.0"
|
|
keyring = { package = "substrate-keyring", path = "../../core/keyring" }
|
|
log = "0.4"
|
|
node-primitives = { path = "../primitives" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
rpc-primitives = { package = "substrate-rpc-primitives", path = "../../core/rpc/primitives" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
node-testing = { path = "../testing" }
|
|
node-runtime = { path = "../runtime" }
|
|
env_logger = "0.6"
|