[package] name = "tlid" version = "0.2.2" authors = ["Marcel Märtens "] edition = "2018" license = "Apache-2.0 OR MIT" homepage = "https://gitlab.com/xMAC94x/tlid" repository = "https://gitlab.com/xMAC94x/tlid" readme = "README.md" documentation = "https://docs.rs/tlid" description = """ Thread Local ID generator by predefined range without atomics/locks/random/time """ categories = [ "algorithms", "concurrency", "data-structures", "no-std", ] keywords = [ "uuid", "id", "unique", "range", "thread", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["std", "num-traits"] std = [] log = [] [dependencies] num-traits = { version = "0.2", optional = true } serde = { version = "1.0", features = ["derive"], optional = true }