[package] name = "yulid" version = "0.1.0" description = "A library to generate and parse ULIDs." documentation = "https://docs.rs/yulid" license = "MIT" homepage = "https://github.com/jkcclemens/yulid" readme = "README.md" repository = "https://github.com/jkcclemens/yulid" authors = ["Kyle Clemens "] edition = "2018" [dependencies] # published 0.4 has an overflow bug with negative i64s being used as timestamps (#292) chrono = "0.4" # chrono = { git = "https://github.com/chronotope/chrono" } byteorder = { version = "1", features = ["i128"] } rand = "0.6" uuid = { version = "0.7", optional = true } serde = { version = "1", optional = true } [dev-dependencies] uuid = { version = "0.7", features = ["v4"] } serde_derive = "1" serde_json = "1" serde_cbor = "0.9"