mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +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>
28 lines
813 B
TOML
28 lines
813 B
TOML
[package]
|
|
name = "sp-blockchain"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Substrate blockchain traits and primitives."
|
|
documentation = "https://docs.rs/sp-blockchain"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
|
futures = "0.3.21"
|
|
log = "0.4.17"
|
|
parking_lot = "0.12.1"
|
|
schnellru = "0.2.1"
|
|
thiserror = "1.0.30"
|
|
sp-api = { path = "../api" }
|
|
sp-consensus = { path = "../consensus/common" }
|
|
sp-database = { path = "../database" }
|
|
sp-runtime = { path = "../runtime" }
|
|
sp-state-machine = { path = "../state-machine" }
|