]> git.lizzy.rs Git - PAKEs.git/blob - Cargo.toml
move from (unmaintained) rust-crypto to RustCrypto ('sha2' crate)
[PAKEs.git] / Cargo.toml
1 [package]
2 name = "spake2"
3 version = "0.0.1"
4 authors = ["Brian Warner <warner@lothar.com>"]
5 description = "The SPAKE2 password-authenticated key-exchange algorithm, in Rust."
6 documentation = "https://docs.rs/spake2"
7 homepage = "https://github.com/warner/spake2.rs"
8 repository = "https://github.com/warner/spake2.rs"
9 license = "MIT"
10 categories = ["cryptography"]
11 exclude = [
12     ".gitignore"
13 ]
14
15 [badges]
16 travis-ci = { repository = "warner/spake2.rs" }
17
18 [dependencies]
19 curve25519-dalek = "0.11"
20 rand = "0.3"
21 sha2 = "0.6"
22 hkdf = "0.2"
23 num-bigint = "0.1"
24 hex = "0.2"
25
26 [dev-dependencies]
27 hex = "0.2"