git.delta.rocks / unique-network / refs/commits / 3ee9e950e03f

difftreelog

source

node/rpc/Cargo.toml4.3 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.21" }18pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }19sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }20sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }21sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }22sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }23sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }24sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }25sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }26sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }27sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }28sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }29sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }30sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }31sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }32sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }33sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }34sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }35sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }36sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }37sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }38sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }39sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }40sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }41substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }42tokio = { version = "0.2.25", features = ["macros", "sync"] }4344pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }45fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }46fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }47fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }48fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }49fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }50fc-mapping-sync = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }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" }57rmrk-rpc = { path = "../../primitives/rmrk-rpc" }58up-data-structs = { default-features = false, path = "../../primitives/data-structs" }5960[dependencies.serde]61features = ['derive']62version = '1.0.130'6364[features]65default = []66std = []