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