[package] name = "phala-node-rpc-ext" version = "0.1.0" edition = "2018" authors = ["Phala Network"] license = "Apache-2.0" homepage = "https://phala.network/" repository = "https://github.com/Phala-Network/phala-blockchain" [dependencies] # third-party dependencies serde = { version = "1.0.102", features = ["derive"] } thiserror = "1.0" jsonrpsee = { version = "0.15.1", features = ["server"] } impl-serde = "0.4.0" log = { version = "0.4.14", default-features = false } hex = { version = "0.4.3", default-features = false } codec = { package = "parity-scale-codec", version = "3.1" } scale-info = { version = "2.1", default-features = false } # primitives sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" } sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" } # client dependencies sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" } sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" } sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" } phala-mq = { path = "../../crates/phala-mq" } phala-pallets = { path = "../../pallets/phala" } pallet-mq-runtime-api = { path = "../../pallets/phala/mq-runtime-api" } ext-types = { path = "./types", package = "phala-node-rpc-ext-types" } rayon = "1"