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