2021-01-02 12:33:35 +05:30
|
|
|
[package]
|
|
|
|
name = "argon2-creds"
|
2021-03-24 14:16:31 +05:30
|
|
|
version = "0.2.1"
|
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"
|
|
|
|
keywords = ["credentials", "password"]
|
|
|
|
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"
|
2021-01-02 12:33:35 +05:30
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# 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.11"
|
|
|
|
unicode-normalization = "0.1.6"
|
|
|
|
ammonia = "3.1.0"
|
2021-06-30 20:11:23 +05:30
|
|
|
validator = { version = "0.14.0", features = ["derive"]}
|
2021-01-02 12:33:35 +05:30
|
|
|
lazy_static = "1.4.0"
|
|
|
|
regex = { version = "1.3.9", features = [ "perf-inline", "perf-dfa", "perf-literal", "perf-cache", "perf"]}
|
|
|
|
rand = "0.8.0"
|
2021-04-13 23:11:34 +05:30
|
|
|
derive_builder = "0.10"
|