lifetime-thread 0.2.3

A thread with a lifetime. Divide a value into master and slave. After the lifetime of the master value ends, the slave value will not be accessible.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "lifetime-thread"
version = "0.2.3"
authors = ["liangyongrui <leungyongrui@gmail.com>"]
edition = "2018"
description = "A thread with a lifetime. Divide a value into master and slave. After the lifetime of the master value ends, the slave value will not be accessible."
license = "MIT OR Apache-2.0"
repository = "https://github.com/liangyongrui/lifetime-thread"
readme = "readme.md"
keywords = ['lifetime', 'thread', 'lock-free']
categories = ['lifetime', 'thread', 'lock-free']

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossbeam-epoch = "0.8"
async-std = { version = "1.6", features = ["unstable", "attributes"] }