[package] name = "snowferris" description = "various unique ID formats for Rust" version = "1.0.2" edition = "2018" authors = ["zachel"] readme = "README.md" repository = "https://git.sr.ht/~zachel/snowferris" license-file = "LICENSE" keywords = ["id", "unique", "snowflake"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chrono = "0.4" anyhow = "1.0" parking_lot = "0.12" rand = { version = "0.8", features = ["small_rng"] } [features] full = [ "snowflake", "sno", "sandflake", "ksuid", "xid", "nanoid", "macros" ] snowflake = [] sno = [] sandflake = [] ksuid = [] xid = [] nanoid = ["rngs"] rngs = [] macros = [] [dev-dependencies] snowferris = { path = "./", features = [ "full" ] }