-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 826 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "nanoid"
version = "0.5.0"
authors = ["Nikolay Govorov <me@govorov.online>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mrdimidium/nanoid.git"
documentation = "https://docs.rs/nanoid"
homepage = "https://github.com/mrdimidium/nanoid"
description = "A tiny, secure, URL-friendly, unique string ID generator for Rust."
keywords = ["uuid", "random", "id", "url"]
include = ["src/**/*", "Cargo.toml", "LICENSE", "README.md", "CHANGELOG.md"]
edition = "2018"
[dependencies]
rand = "0.9"
compact_str = { version = "0.10.0", optional = true }
smartstring = { version = "1.0.1", optional = true }
[dev-dependencies]
criterion = "0.8"
doc-comment = "0.3"
[features]
default = []
compact_str = ["dep:compact_str"]
smartstring = ["dep:smartstring"]
[[bench]]
name = "rngs"
harness = false