tp-inherents 2.0.2

Provides types and traits for creating and checking inherents.
Documentation
[package]
name = "tp-inherents"
version = "2.0.2"
authors = ["Parity Technologies <admin@parity.io>", "Tetcoin Developers <support@tetcoin.org>"]
edition = "2018"
license = "Apache-2.0"
keywords = ["tetcoin", "tetcore", "crypto", "blockchain", "framework"]
categories = ["cryptography::cryptocurrencies"]
homepage = "https://core.tetcoin.org"
repository = "https://github.com/tetcoin/tetcore"
description = "Provides types and traits for creating and checking inherents."
documentation = "https://docs.rs/tp-inherents"
readme = "README.md"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]


[dependencies]
parking_lot = { version = "0.11.1", optional = true }
tetcore-std = { version = "2.0.2", default-features = false, path = "../std" }
tet-core = { version = "2.0.2", default-features = false, path = "../core" }
codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.21", optional = true }

[features]
default = [ "std" ]
std = [
	"parking_lot",
	"tetcore-std/std",
	"codec/std",
	"tet-core/std",
	"thiserror",
]