]> git.lizzy.rs Git - PAKEs.git/blob - srp/Cargo.toml
ced32e752337fd9f71dd965ccd4489dc2ab5faeb
[PAKEs.git] / srp / Cargo.toml
1 [package]
2 name = "srp"
3 version = "0.3.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
12 [dependencies]
13 num = "0.2"
14 generic-array = "0.12"
15 digest = "0.8"
16 lazy_static = "0.2"
17
18 [dev-dependencies]
19 rand = "0.5"
20 sha2 = "0.8"
21 sha-1 = "0.8"
22
23 [badges]
24 travis-ci = { repository = "RustCrypto/PAKEs" }