-
Notifications
You must be signed in to change notification settings - Fork 84
/
Cargo.toml
34 lines (30 loc) · 1011 Bytes
/
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
[package]
name = "sha-crypt"
version = "0.6.0-pre.1"
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
"""
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/sha-crypt"
homepage = "https://github.com/RustCrypto/password-hashes/tree/master/sha-crypt"
repository = "https://github.com/RustCrypto/password-hashes"
keywords = ["crypto", "hashing", "password", "phf"]
categories = ["authentication", "cryptography", "no-std"]
readme = "README.md"
edition = "2021"
rust-version = "1.81"
[dependencies]
sha2 = { version = "=0.11.0-pre.4", default-features = false }
# optional dependencies
rand = { version = "0.8", optional = true }
subtle = { version = "2", optional = true, default-features = false }
base64ct = "1.5.3"
[features]
default = ["simple"]
simple = ["rand", "std", "subtle"]
std = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]