forked from shssoichiro/zxcvbn-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (51 loc) · 1.26 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
authors = [
"Josh Holmer <jholmer.in@gmail.com>",
"Lia an Haack <lia@staff.identeco.de>",
"Fabian Odenthal <fabian@staff.identeco.de>",
]
description = "An entropy-based password strength estimator, originally for Javascript by Dropbox."
documentation = "https://docs.rs/yxcvbn"
homepage = "https://identeco.de/"
license = "MIT"
name = "yxcvbn"
repository = "https://github.com/Identeco/yxcvbn"
version = "2.2.2"
edition = "2021"
rust-version = "1.63"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
derive_builder = { version = "0.20.0", optional = true }
fancy-regex = "0.13.0"
itertools = "0.12.1"
lazy_static = "1.3"
quick-error = "2.0"
regex = "1"
time = { version = "0.3" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3.56"
[dependencies.serde]
optional = true
version = "1"
[dependencies.serde_derive]
optional = true
version = "1"
[dev-dependencies]
quickcheck = "1.0.0"
serde_json = "1"
criterion = "0.5.1"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
[features]
default = ["builder"]
ser = ["serde", "serde_derive"]
builder = ["derive_builder"]
[profile.test]
opt-level = 2
[[bench]]
name = "zxcvbn"
harness = false
[[bench]]
name = "zxcvbn_unicode"
harness = false