]> git.lizzy.rs Git - PAKEs.git/blob - srp/Cargo.toml
5955ddb4da9d7f5c90d053a1dec6d076cdd0628e
[PAKEs.git] / srp / Cargo.toml
1 [package]
2 name = "srp"
3 version = "0.3.0"
4 edition = "2018"
5 authors = ["RustCrypto Developers"]
6 license = "MIT OR Apache-2.0"
7 description = "Secure Remote Password (SRP) protocol implementation"
8 documentation = "https://docs.rs/srp"
9 repository = "https://github.com/RustCrypto/PAKEs"
10 keywords = ["crypto", "pake", "authentication"]
11 categories = ["cryptography", "authentication"]
12
13 [dependencies]
14 num = "0.2"
15 generic-array = "0.12"
16 digest = "0.8"
17 lazy_static = "1.2"
18
19 [dev-dependencies]
20 rand = "0.6"
21 sha2 = "0.8"
22 sha-1 = "0.8"
23
24 [badges]
25 travis-ci = { repository = "RustCrypto/PAKEs" }