2021-01-02 12:33:35 +05:30
|
|
|
[package]
|
|
|
|
name = "argon2-creds"
|
2023-10-14 16:29:32 +05:30
|
|
|
version = "0.2.3"
|
2021-01-02 12:33:35 +05:30
|
|
|
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"]
|
2023-10-14 16:38:56 +05:30
|
|
|
homepage = "https://git.batsense.net/realaravinth/argon2-creds"
|
|
|
|
repository = "https://git.batsense.net/realaravinth/argon2-creds"
|
2023-10-14 17:08:33 +05:30
|
|
|
license = "AGPL-3.0-or-later"
|
2023-10-14 17:20:58 +05:30
|
|
|
documentation = "https://docs.rs/argon2_creds"
|
2021-01-02 12:46:20 +05:30
|
|
|
readme = "README.md"
|
2021-12-17 10:42:22 +05:30
|
|
|
edition = "2021"
|
2021-01-02 12:33:35 +05:30
|
|
|
|
|
|
|
# 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]
|
2023-09-08 12:38:05 +05:30
|
|
|
rust-argon2 = "2.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"
|
2024-06-08 16:21:59 +05:30
|
|
|
ammonia = "4.0.0"
|
2023-10-14 16:29:32 +05:30
|
|
|
validator = { version = "0.16", features = ["derive"]}
|
2021-01-02 12:33:35 +05:30
|
|
|
lazy_static = "1.4.0"
|
2022-04-11 17:33:16 +05:30
|
|
|
regex = { version = "1.5.5", features = [ "perf-inline", "perf-dfa", "perf-literal", "perf-cache", "perf"]}
|
2021-12-17 10:42:22 +05:30
|
|
|
rand = "0.8.4"
|
2024-06-08 16:21:44 +05:30
|
|
|
derive_builder = "0.20"
|