mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 14:47:55 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
27 lines
942 B
TOML
27 lines
942 B
TOML
[package]
|
|
name = "sc-sync-state-rpc"
|
|
version = "0.10.0-dev"
|
|
authors.workspace = true
|
|
description = "A RPC handler to create sync states for light clients."
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.85"
|
|
thiserror = "1.0.30"
|
|
sc-chain-spec = { path = "../chain-spec" }
|
|
sc-client-api = { path = "../api" }
|
|
sc-consensus-babe = { path = "../consensus/babe" }
|
|
sc-consensus-epochs = { path = "../consensus/epochs" }
|
|
sc-consensus-grandpa = { path = "../consensus/grandpa" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|