-
Notifications
You must be signed in to change notification settings - Fork 49
/
Cargo.toml
32 lines (28 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
[package]
name = "bcrypt"
version = "0.16.0"
authors = ["Vincent Prouillet <[email protected]>"]
license = "MIT"
readme = "README.md"
description = "Easily hash and verify passwords using bcrypt"
homepage = "https://github.com/Keats/rust-bcrypt"
repository = "https://github.com/Keats/rust-bcrypt"
keywords = ["bcrypt", "password", "web", "hash"]
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md"]
[features]
default = ["std", "zeroize"]
std = ["getrandom/std", "base64/std"]
alloc = ["base64/alloc", "getrandom"]
js = ["getrandom/js"]
[dependencies]
blowfish = { version = "0.9", features = ["bcrypt"] }
getrandom = { version = "0.2", default-features = false, optional = true }
base64 = { version = "0.22", default-features = false }
zeroize = { version = "1.5.4", optional = true }
subtle = { version = "2.4.1", default-features = false }
[dev-dependencies]
# no default features avoid pulling in log
quickcheck = { version = "1", default-features = false }
[badges]
maintenance = { status = "passively-maintained" }