forked from shssoichiro/zxcvbn-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (39 loc) · 1.02 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
[package]
authors = ["Josh Holmer <[email protected]>"]
description = "An entropy-based password strength estimator, originally for Javascript by Dropbox."
documentation = "https://docs.rs/zxcvbn"
homepage = "https://github.com/shssoichiro/zxcvbn-rs"
license = "MIT"
name = "zxcvbn"
repository = "https://github.com/shssoichiro/zxcvbn-rs"
version = "1.0.1"
[badges]
travis-ci = { repository = "shssoichiro/zxcvbn-rs", branch = "master" }
maintenance = { status = "passively-maintained" }
[dependencies]
derive_builder = "0.5.0"
fancy-regex = "0.1.0"
itertools = "0.7.0"
lazy_static = "1.0.0"
quick-error = "1.2.0"
regex = "1.0.0"
time = "0.1.35"
[dependencies.clippy]
optional = true
version = ">=0.0.100"
[dependencies.serde]
optional = true
version = "1.0.0"
[dependencies.serde_derive]
optional = true
version = "1.0.0"
[dev-dependencies]
quickcheck = "0.6.0"
serde_json = "1.0.21"
[features]
default = []
dev = ["clippy", "unstable"]
ser = ["serde", "serde_derive"]
unstable = ["lazy_static/nightly"]
[profile.test]
opt-level = 2