git.delta.rocks / unique-network / refs/commits / 71cb058fabd8

difftreelog

source

node/rpc/Cargo.toml4.2 KiBsourcehistory
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"16# pallet-contracts-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }17pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }18pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }19sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }20sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }21sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }22sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }23sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }24sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }25sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }26sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }27sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }28sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }29sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }30sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }31sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }32sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }33sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }34sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }35sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }36sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }37sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }38sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }39sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }40sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }41substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20" }42tokio = { version = "0.2.25", features = ["macros", "sync"] }4344pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }45fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }46fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }47fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }48fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }49fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }50fc-mapping-sync = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }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 = []