[package] name = "lifetime-thread" version = "0.3.0" authors = ["liangyongrui "] 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.9" tokio = { version = "1", features = ["full"] }