-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
24 lines (21 loc) · 892 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "nanoid"
version = "0.4.0"
authors = ["Nikolay Govorov <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nikolay-govorov/nanoid.git"
documentation = "https://docs.rs/nanoid"
homepage = "https://github.com/nikolay-govorov/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 = { version = "0.8", features = ["small_rng"] }
smartstring = { version = "1.0.1", optional = true }
[dev-dependencies]
cargo-husky = { version = "1", default-features = false, features = ["prepush-hook", "precommit-hook", "postmerge-hook", "run-cargo-test", "run-cargo-check", "run-cargo-clippy", "run-cargo-fmt"] }
doc-comment = "0.3"
[features]
default = []