]> git.lizzy.rs Git - PAKEs.git/blob - Cargo.toml
(cargo-release) start next development iteration 0.0.7-alpha.0
[PAKEs.git] / Cargo.toml
1 [package]
2 name = "spake2"
3 version = "0.0.7-alpha.0"
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.17"
20 rand = "0.5"
21 sha2 = "0.7"
22 hkdf = "0.5"
23 num-bigint = "0.1"
24 hex = "0.3"
25
26 [dev-dependencies]
27 hex = "0.3"
28 bencher = "0.1"
29
30 [[bench]]
31 name = "spake2"
32 harness = false