1[package]2authors = ['Unique Network <support@uniquenetwork.io>']3description = "Unique chain rpc"4edition = "2021"5license = 'GPLv3'6name = "unique-rpc"7version = "0.1.2"89[package.metadata.docs.rs]10targets = ["x86_64-unknown-linux-gnu"]1112[dependencies]13jsonrpsee = { version = "0.16.2", features = ["macros", "server"] }1415pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }25sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }27substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2829fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }30fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }31fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }32fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }33fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }3435app-promotion-rpc.path = "../../primitives/app_promotion_rpc"36rmrk-rpc.path = "../../primitives/rmrk-rpc"37serde = { features = ['derive'], version = "1.0.130" }38uc-rpc.path = "../../client/rpc"39up-common.path = "../../primitives/common"40up-data-structs = { default-features = false, path = "../../primitives/data-structs" }41up-pov-estimate-rpc.path = "../../primitives/pov-estimate-rpc"42up-rpc.path = "../../primitives/rpc"4344[features]45default = []46pov-estimate = ['uc-rpc/pov-estimate']47std = []48unique-runtime = []