git.delta.rocks / unique-network / refs/commits / d05c19b445d1

difftreelog

source

client/rpc/Cargo.toml1.3 KiBsourcehistory
1[package]2name = "uc-rpc"3version = "0.1.4"4license = "GPLv3"5edition = "2021"67[dependencies]8pallet-common = { default-features = false, path = '../../pallets/common' }9up-data-structs = { default-features = false, path = '../../primitives/data-structs' }10up-rpc = { path = "../../primitives/rpc" }11app-promotion-rpc = { path = "../../primitives/app_promotion_rpc"}12rmrk-rpc = { path = "../../primitives/rmrk-rpc" }13codec = { package = "parity-scale-codec", version = "3.1.2" }14jsonrpsee = { version = "0.15.1", features = ["server", "macros"] }15anyhow = "1.0.57"1617sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }18sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }19sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }20sp-rpc = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }21sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }22pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }