argon2-creds/Cargo.toml

30 lines
979 B
TOML
Raw Normal View History

[package]
name = "argon2-creds"
2021-03-24 14:16:31 +05:30
version = "0.2.1"
authors = ["realaravinth <realaravinth@batsense.net>"]
2021-01-02 12:46:20 +05:30
description = "Convenient abstractions for all things credentials"
2021-12-17 10:42:22 +05:30
keywords = ["credentials", "password", "argon2"]
2021-01-02 12:46:20 +05:30
homepage = "https://github.com/realaravinth/argon2-creds"
repository = "https://github.com/realaravinth/argon2-creds"
2022-02-09 19:40:33 +05:30
documentation = "https://realaravinth.github.io/argon2-creds/argon2_creds/index.html"
2021-01-02 12:46:20 +05:30
license = "MIT OR Apache-2.0"
readme = "README.md"
2021-12-17 10:42:22 +05:30
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]
2022-02-09 19:40:33 +05:30
rust-argon2 = "1.0.0"
2021-12-17 10:42:22 +05:30
derive_more = "0.99.17"
2022-02-09 19:40:33 +05:30
unicode-normalization = "0.1.19"
ammonia = "3.1.3"
2021-06-30 20:11:23 +05:30
validator = { version = "0.14.0", features = ["derive"]}
lazy_static = "1.4.0"
2021-12-17 10:42:22 +05:30
regex = { version = "1.5.4", features = [ "perf-inline", "perf-dfa", "perf-literal", "perf-cache", "perf"]}
rand = "0.8.4"
2021-04-13 23:11:34 +05:30
derive_builder = "0.10"