]> git.lizzy.rs Git - PAKEs.git/blob - Cargo.toml
Docs update
[PAKEs.git] / Cargo.toml
1 [package]
2 name = "srp"
3 version = "0.1.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 rand = "0.3"
16 digest = "0.6"
17
18 [dev-dependencies]
19 sha2 = "0.6"
20
21 [badges]
22 travis-ci = { repository = "RustCrypto/SRP" }