|
| 1 | +[package] |
| 2 | +name = "meta-consensus-rpc" |
| 3 | +version = "0.1.0" |
| 4 | +edition = "2021" |
| 5 | + |
| 6 | +[dependencies] |
| 7 | +codec = { version = "3.1.5", features = ["derive"], package = "parity-scale-codec" } |
| 8 | +jsonrpsee = { version = "0.14.0", features = ["server", "macros"] } |
| 9 | +jsonrpsee-core = { version = "0.14.0" } |
| 10 | +jsonrpsee-types = { version = "0.14.0" } |
| 11 | +serde = { version = "1.0", features = ["derive"], optional = true } |
| 12 | +tokio = { version = "1.17.0", features = ["macros", "time", "parking_lot"] } |
| 13 | +futures = { version ="0.3.21" } |
| 14 | + |
| 15 | +# Substrate packages |
| 16 | + |
| 17 | +sp-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 18 | +sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 19 | +sp-rpc = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 20 | +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 21 | +sc-rpc-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 22 | +sc-rpc = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 23 | +sc-client-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 24 | +sc-consensus = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 25 | +sc-basic-authorship = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 26 | +sc-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 27 | +sc-transaction-pool-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 28 | +sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 29 | +sp-consensus = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 30 | +sc-consensus-manual-seal = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 31 | +sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 32 | +# local packages |
| 33 | +meta-runtime = { package = "meta-runtime", path = "../../meta-runtime" } |
| 34 | + |
| 35 | + |
| 36 | +[dev-dependencies] |
| 37 | +substrate-test-runtime-client = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 38 | +substrate-test-runtime-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 39 | +substrate-test-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 40 | +sc-block-builder = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.25" } |
| 41 | + |
| 42 | +[features] |
| 43 | +default = ["std"] |
| 44 | +std = [ |
| 45 | + "serde", |
| 46 | +] |
0 commit comments