# 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 = "sha-crypt" version = "0.6.0-pre.1" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the SHA-crypt password hash based on SHA-512 as implemented by the POSIX crypt C library """ homepage = "https://github.com/RustCrypto/password-hashes/tree/master/sha-crypt" documentation = "https://docs.rs/sha-crypt" readme = "README.md" keywords = [ "crypto", "hashing", "password", "phf", ] 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 = "sha_crypt" path = "src/lib.rs" [[test]] name = "lib" path = "tests/lib.rs" [dependencies.base64ct] version = "1.5.3" [dependencies.rand] version = "0.8" optional = true [dependencies.sha2] version = "=0.11.0-pre.4" default-features = false [dependencies.subtle] version = "2" optional = true default-features = false [features] default = ["simple"] simple = [ "rand", "std", "subtle", ] std = []