noble-vesting 2.0.0

FABRIC noble for manage vesting
Documentation
[package]
name = "noble-vesting"
version = "2.0.0"
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"
documentation = "https://docs.rs/vesting"
description = "FABRIC noble for manage vesting"
readme = "README.md"

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

[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
tetcore-std = { version = "2.0.2", default-features = false, path = "../../primitives/std" }
tp-runtime = { version = "2.0.2", default-features = false, path = "../../primitives/runtime" }
fabric-support = { version = "2.0.0", default-features = false, path = "../support" }
fabric-system = { version = "2.0.0", default-features = false, path = "../system" }
fabric-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }

[dev-dependencies]
tet-io = { version = "2.0.2", path = "../../primitives/io" }
tet-core = { version = "2.0.2", path = "../../primitives/core" }
noble-balances = { version = "2.0.1", path = "../balances" }
tetcore-storage = { version = "2.0.2", path = "../../primitives/storage" }
hex-literal = "0.3.1"

[features]
default = ["std"]
std = [
	"serde",
	"codec/std",
	"tetcore-std/std",
	"tp-runtime/std",
	"fabric-support/std",
	"fabric-system/std",
]
runtime-benchmarks = ["fabric-benchmarking"]