# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.72" name = "password-auth" version = "1.1.0-pre.1" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Password authentication library with a focus on simplicity and ease-of-use, including support for Argon2, PBKDF2, and scrypt password hashing algorithms """ homepage = "https://github.com/RustCrypto/password-hashes/tree/master/password-auth" documentation = "https://docs.rs/password-auth" readme = "README.md" keywords = [ "crypto", "password", "hashing", ] categories = [ "authentication", "cryptography", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/RustCrypto/password-hashes" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "password_auth" path = "src/lib.rs" [dependencies.argon2] version = "=0.6.0-pre.1" features = [ "alloc", "simple", ] optional = true default-features = false [dependencies.password-hash] version = "0.6.0-rc.0" features = [ "alloc", "rand_core", ] [dependencies.pbkdf2] version = "=0.13.0-pre.1" features = ["simple"] optional = true default-features = false [dependencies.rand_core] version = "0.6" features = ["getrandom"] [dependencies.scrypt] version = "=0.12.0-pre.1" features = ["simple"] optional = true default-features = false [features] default = [ "argon2", "std", ] std = [] [target.'cfg(target_arch = "wasm32")'.dependencies.getrandom] version = "0.2" features = ["js"]