tp-session 2.0.2

Primitives for sessions
Documentation
[package]
name = "tp-session"
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"
documentation = "https://docs.rs/tp-session"
description = "Primitives for sessions"
readme = "README.md"

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

[dependencies]
codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false, features = ["derive"] }
tp-api = { version = "2.0.2", default-features = false, path = "../api" }
tet-core = { version = "2.0.2", default-features = false, path = "../core" }
tetcore-std = { version = "2.0.2", default-features = false, path = "../std" }
tp-staking = { version = "2.0.2", default-features = false, path = "../staking" }
tp-runtime = { version = "2.0.2", optional = true, path = "../runtime" }

[features]
default = [ "std" ]
std = [
	"codec/std",
	"tp-api/std",
	"tet-core/std",
	"tetcore-std/std",
	"tp-staking/std",
	"tp-runtime/std",
]