1[package]2name = "unique-rpc"3version = "0.1.0"4authors = ['Unique Network <support@uniquenetwork.io>']5license = 'GPLv3'6edition = "2021"7description = "Unique chain rpc"89[package.metadata.docs.rs]10targets = ["x86_64-unknown-linux-gnu"]1112[dependencies]13futures = { version = "0.3.17", features = ["compat"] }14jsonrpc-core = "18.0.0"15jsonrpc-pubsub = "18.0.0"1617pallet-transaction-payment-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }18pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }19sc-client-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }20sc-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = 'master' }21sc-consensus-epochs = { git = 'https://github.com/paritytech/substrate', branch = 'master' }22sc-finality-grandpa = { git = 'https://github.com/paritytech/substrate', branch = 'master' }23sc-finality-grandpa-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }24sc-keystore = { git = 'https://github.com/paritytech/substrate', branch = 'master' }25sc-network = { git = 'https://github.com/paritytech/substrate', branch = 'master' }26sc-rpc-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }27sc-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }28sc-service = { git = 'https://github.com/paritytech/substrate', branch = 'master' }29sp-api = { git = 'https://github.com/paritytech/substrate', branch = 'master' }30sp-block-builder = { git = 'https://github.com/paritytech/substrate', branch = 'master' }31sp-blockchain = { git = 'https://github.com/paritytech/substrate', branch = 'master' }32sp-consensus = { git = 'https://github.com/paritytech/substrate', branch = 'master' }33sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = 'master' }34sp-core = { git = 'https://github.com/paritytech/substrate', branch = 'master' }35sp-offchain = { git = 'https://github.com/paritytech/substrate', branch = 'master' }36sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = 'master' }37sp-storage = { git = 'https://github.com/paritytech/substrate', branch = 'master' }38sp-session = { git = 'https://github.com/paritytech/substrate', branch = 'master' }39sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', branch = 'master' }40sc-transaction-pool = { git = 'https://github.com/paritytech/substrate', branch = 'master' }41substrate-frame-rpc-system = { git = 'https://github.com/paritytech/substrate', branch = 'master' }42tokio = { version = "0.2.25", features = ["macros", "sync"] }4344pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "master" }45fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }46fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }47fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }48fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }49fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }50fc-mapping-sync = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "master" }5152pallet-common = { default-features = false, path = "../../pallets/common" }53unique-runtime-common = { default-features = false, path = "../../runtime/common" }54pallet-unique = { path = "../../pallets/unique" }55uc-rpc = { path = "../../client/rpc" }56up-rpc = { path = "../../primitives/rpc" }5758[dependencies.serde]59features = ['derive']60version = '1.0.130'6162[features]63default = []64std = []