git.delta.rocks / unique-network / refs/commits / 17d51f34b0ae

difftreelog

source

node/rpc/Cargo.toml4.4 KiBsourcehistory
1[package]2name = "unique-rpc"3version = "0.1.2"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"] }14jsonrpsee = { version = "0.15.1", features = ["server", "macros"] }15# pallet-contracts-rpc = { git = 'https://github.com/paritytech/substrate', branch = 'master' }16pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }17pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }18sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }19sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }20sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }21sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }22sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }23sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }24sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }25sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }26sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }27sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }28sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }29sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }30sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }31sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }32sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }33sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }34sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }35sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }36sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }37sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }38sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }39sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }40substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }41tokio = { version = "1.19.2", features = ["macros", "sync"] }4243pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }44fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }45fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }46fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }47fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }48fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }49fc-mapping-sync = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }5051pallet-common = { default-features = false, path = "../../pallets/common" }52up-common = { path = "../../primitives/common" }53pallet-unique = { path = "../../pallets/unique" }54uc-rpc = { path = "../../client/rpc" }55up-rpc = { path = "../../primitives/rpc" }56app-promotion-rpc = { path = "../../primitives/app_promotion_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 = []67unique-runtime = []