git.delta.rocks / unique-network / refs/commits / 8cb94776e05e

difftreelog

source

client/rpc/Cargo.toml2.6 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "uc-rpc"5version = "0.1.4"67[dependencies]8anyhow = "1.0.57"9app-promotion-rpc.path = "../../primitives/app_promotion_rpc"10codec = { package = "parity-scale-codec", version = "3.1.2" }11jsonrpsee = { version = "0.16.2", features = ["macros", "server"] }12rmrk-rpc.path = "../../primitives/rmrk-rpc"13trie-db = { version = "0.24.0", default-features = false }14up-common = { default-features = false, path = "../../primitives/common" }15up-data-structs = { default-features = false, path = "../../primitives/data-structs" }16up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", optional = true }17up-rpc.path = "../../primitives/rpc"18zstd = { version = "0.11.2", default-features = false }1920pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }21sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22sc-rpc-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }25sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }27sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }28sp-keystore = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }29sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }30sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }31sp-trie = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3233frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3435sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3637opal-runtime.path = "../../runtime/opal"38quartz-runtime = { path = "../../runtime/quartz", optional = true }39unique-runtime = { path = "../../runtime/unique", optional = true }4041[features]42pov-estimate = [43	'opal-runtime/pov-estimate',44	'quartz-runtime?/pov-estimate',45	'unique-runtime?/pov-estimate',46	'up-pov-estimate-rpc',47]