mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
6a964c5df0
* bumping version for next release * add changelog * add guide
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
description = "components for a light client"
|
|
name = "sc-light"
|
|
version = "3.0.0"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
documentation = "https://docs.rs/sc-light"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
parking_lot = "0.11.1"
|
|
lazy_static = "1.4.0"
|
|
hash-db = "0.15.2"
|
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
|
sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
sc-executor = { version = "0.9.0", path = "../executor" }
|
|
|
|
[features]
|
|
default = []
|