]> git.lizzy.rs Git - PAKEs.git/blob - srp/Cargo.toml
srp: bump `rand` to v0.8 (#113)
[PAKEs.git] / srp / Cargo.toml
1 [package]
2 name = "srp"
3 version = "0.6.0"
4 authors = ["RustCrypto Developers"]
5 license = "MIT OR Apache-2.0"
6 description = "Secure Remote Password (SRP) protocol implementation"
7 documentation = "https://docs.rs/srp"
8 repository = "https://github.com/RustCrypto/PAKEs"
9 keywords = ["crypto", "pake", "authentication"]
10 categories = ["cryptography", "authentication"]
11 readme = "README.md"
12 edition = "2021"
13 rust-version = "1.56"
14
15 [dependencies]
16 num-bigint = "0.4"
17 generic-array = "0.14"
18 digest = "0.10"
19 lazy_static = "1.2"
20 subtle = "2.4"
21
22 [dev-dependencies]
23 hex-literal = "0.3"
24 num-traits = "0.2"
25 rand = "0.8"
26 sha1 = "0.10"
27 sha2 = "0.10"