mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-03 06:27:23 +00:00
c412c6230e
* setting versions to development pre-release fixing version in dependencies * unset already released wasm-builder * do not publish test crates * adding licenses * setting homepage metadata * set repository url
26 lines
746 B
TOML
26 lines
746 B
TOML
[package]
|
|
name = "sp-inherents"
|
|
version = "2.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[dependencies]
|
|
parking_lot = { version = "0.10.0", optional = true }
|
|
sp-std = { version = "2.0.0-dev", default-features = false, path = "../std" }
|
|
sp-core = { version = "2.0.0-dev", default-features = false, path = "../core" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
|
|
derive_more = { version = "0.99.2", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"parking_lot",
|
|
"sp-std/std",
|
|
"codec/std",
|
|
"sp-core/std",
|
|
"derive_more",
|
|
]
|