forked from shssoichiro/zxcvbn-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* yxcvbn adjacency 1 * yxcvbn adjacency 2 * yxcvbn adjacency 3 * yxcvbn adjacency 4 * remove clippy and rustfmt toml * first changes to yxcvbn * update workflow * add sast checks * fix adjacency tests * update cargo.toml * update cargo.toml * update cargo.toml --------- Co-authored-by: Lia <[email protected]>
- Loading branch information
Showing
10 changed files
with
778 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
[package] | ||
authors = ["Josh Holmer <[email protected]>"] | ||
authors = [ | ||
"Josh Holmer <[email protected]>", | ||
"Lia an Haack <[email protected]>", | ||
"Fabian Odenthal <[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" | ||
documentation = "https://docs.rs/yxcvbn" | ||
homepage = "https://identeco.de/" | ||
license = "MIT" | ||
name = "zxcvbn" | ||
repository = "https://github.com/shssoichiro/zxcvbn-rs" | ||
name = "yxcvbn" | ||
repository = "https://github.com/Identeco/yxcvbn" | ||
version = "2.2.2" | ||
edition = "2021" | ||
rust-version = "1.63" | ||
|
||
[badges] | ||
maintenance = { status = "passively-maintained" } | ||
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] | ||
derive_builder = { version = "0.12.0", optional = true } | ||
fancy-regex = "0.11.0" | ||
itertools = "0.10.0" | ||
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" | ||
|
@@ -36,7 +40,7 @@ version = "1" | |
[dev-dependencies] | ||
quickcheck = "1.0.0" | ||
serde_json = "1" | ||
criterion = "0.4" | ||
criterion = "0.5.1" | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies] | ||
wasm-bindgen-test = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.