git.delta.rocks / unique-network / refs/commits / 3784fb49189c

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"] }14jsonrpsee = { version = "0.13.0", 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.24" }17pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }18sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }19sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }20sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }21sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }22sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }23sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }24sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }25sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }26sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }27sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }28sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }29sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }30sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }31sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }32sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }33sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }34sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }35sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }36sp-storage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }37sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }38sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }39sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }40substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }41tokio = { version = "0.2.25", features = ["macros", "sync"] }4243pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }44fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }45fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }46fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }47fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }48fc-db = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }49fc-mapping-sync = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }5051pallet-common = { default-features = false, path = "../../pallets/common" }52unique-runtime-common = { default-features = false, path = "../../runtime/common" }53pallet-unique = { path = "../../pallets/unique" }54uc-rpc = { path = "../../client/rpc" }55up-rpc = { path = "../../primitives/rpc" }56rmrk-rpc = { path = "../../primitives/rmrk-rpc" }57up-data-structs = { default-features = false, path = "../../primitives/data-structs" }5859[dependencies.serde]60features = ['derive']61version = '1.0.130'6263[features]64default = []65std = []66unique-runtime = []