git.delta.rocks / unique-network / refs/commits / 764dfd599fff

difftreelog

source

client/rpc/Cargo.toml1.3 KiBsourcehistory
1[package]2name = "uc-rpc"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8unique-runtime-common = { default-features = false, path = "../../runtime/common" }9pallet-common = { default-features = false, path = '../../pallets/common' }10up-data-structs = { default-features = false, path = '../../primitives/data-structs' }11up-rpc = { path = "../../primitives/rpc" }12rmrk-rpc = { path = "../../primitives/rmrk-rpc" }13codec = { package = "parity-scale-codec", version = "3.1.2" }14jsonrpc-core = "18.0.0"15jsonrpc-core-client = "18.0.0"16jsonrpc-derive = "18.0.0"1718sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }19sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }20sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }21sp-rpc = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }22sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }23pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }