[package]
edition = "2018"
name = "nanoid"
version = "0.5.0"
authors = ["Nikolay Govorov <me@govorov.online>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny, secure, URL-friendly, unique string ID generator for Rust."
homepage = "https://github.com/mrdimidium/nanoid"
documentation = "https://docs.rs/nanoid"
readme = "README.md"
keywords = [
"uuid",
"random",
"id",
"url",
]
license = "MIT"
repository = "https://github.com/mrdimidium/nanoid.git"
[features]
default = []
[lib]
name = "nanoid"
path = "src/lib.rs"
[dependencies.rand]
version = "0.9"
[dependencies.smartstring]
version = "1.0.1"
optional = true
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.doc-comment]
version = "0.3"