mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "sc-statement-store"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate statement store."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
log = "0.4.17"
|
|
parking_lot = "0.12.1"
|
|
parity-db = "0.4.8"
|
|
tokio = { version = "1.22.0", features = ["time"] }
|
|
sp-statement-store = { version = "4.0.0-dev", path = "../../primitives/statement-store" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
|
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|
|
env_logger = "0.9"
|
|
|