git.delta.rocks / unique-network / refs/commits / 51e104f081b5

difftreelog

source

client/rpc/Cargo.toml1.0 KiBsourcehistory
1[package]2name = "uc-rpc"3version = "0.1.0"4edition = "2018"56[dependencies]7pallet-common = { default-features = false, path = '../../pallets/common' }8nft-data-structs = { default-features = false, path = '../../primitives/nft' }9up-rpc = { path = "../../primitives/rpc" }10codec = { package = "parity-scale-codec", version = "2.0.0" }11jsonrpc-core = "18.0.0"12jsonrpc-core-client = "18.0.0"13jsonrpc-derive = "18.0.0"1415sp-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12" }16sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12" }17sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12" }18sp-rpc = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12" }19sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.12" }