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" }12codec = { package = "parity-scale-codec", version = "3.1.2" }13jsonrpc-core = "18.0.0"14jsonrpc-core-client = "18.0.0"15jsonrpc-derive = "18.0.0"1617sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }18sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }19sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }20sp-rpc = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }21sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }22pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }23242526rmrk-rpc = { git = "https://github.com/UniqueNetwork/rmrk-substrate.git", branch = "feature/separate-types-and-traits" } 27rmrk-types = { git = "https://github.com/UniqueNetwork/rmrk-substrate.git", branch = "feature/separate-types-and-traits" }