argon2-creds/Cargo.toml

29 lines
938 B
TOML

[package]
name = "argon2-creds"
version = "0.2.1"
authors = ["realaravinth <realaravinth@batsense.net>"]
description = "Convenient abstractions for all things credentials"
keywords = ["credentials", "password", "argon2"]
homepage = "https://github.com/realaravinth/argon2-creds"
repository = "https://github.com/realaravinth/argon2-creds"
documentation = "https://doc.rs/argon2-creds"
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "argon2_creds"
path = "src/lib.rs"
[dependencies]
rust-argon2 = "0.8.3"
derive_more = "0.99.17"
unicode-normalization = "0.1.6"
ammonia = "3.1.2"
validator = { version = "0.14.0", features = ["derive"]}
lazy_static = "1.4.0"
regex = { version = "1.5.4", features = [ "perf-inline", "perf-dfa", "perf-literal", "perf-cache", "perf"]}
rand = "0.8.4"
derive_builder = "0.10"