once_cell 0.1.2

Single assignment cells and lazy static values without macros.
Documentation
[package]
name = "once_cell"
version = "0.1.2"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
license = "MIT OR Apache-2.0"

description = "Single assignment cells and lazy static values without macros."
readme = "README.md"
documentation = "https://docs.rs/once_cell"

repository = "https://github.com/matklad/once_cell"
keywords = ["lazy", "static"]
categories = [ "rust-patterns", "memory-management" ]

[dependencies]
parking_lot = { version = "0.6.3", optional = true }

[features]
default = [ "parking_lot" ]