File: Cargo.toml.orig

package info (click to toggle)
rust-bcrypt 0.15.1-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 184 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download | duplicates (2)
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.15.1"
authors = ["Vincent Prouillet <hello@prouilletvincent.com>"]
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" }