[package] authors = [ "Alisa Jones" ] categories = [ "data-structures", "no-std" ] description = "A library to generate and parse TypeIDs." documentation = "https://docs.rs/typed_id" name = "typedid" version = "1.0.0" edition = "2021" license = "MIT" readme = "README.md" repository = "https://github.com/alisa101rs/typeid-rs" keywords = ["guid", "unique", "uuid", "typeid"] exclude = [ "justfile" ] [package.metadata.docs.rs] rustc-args = ["--cfg", "uuid_unstable"] features = ["serde"] [features] default = ["std"] std = ["uuid/std", "smol_str/std", "serde?/std"] [dependencies] uuid = { version = "1.4.0", features = ["v7"] } serde = { version = "1", optional = true } data-encoding = { version = "2.4.0" } smol_str = "0.2.0"