]> git.lizzy.rs Git - PAKEs.git/blob - Cargo.toml
README/Cargo.toml: add more badges
[PAKEs.git] / Cargo.toml
1 [package]
2 name = "spake2"
3 version = "0.1.1-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 is-it-maintained-issue-resolution = { repository = "warner/spake2.rs" }
18 is-it-maintained-open-issues = { repository = "warner/spake2.rs" }
19
20 [dependencies]
21 curve25519-dalek = "0.19"
22 rand = "0.5"
23 sha2 = "0.7"
24 hkdf = "0.6"
25 num-bigint = "0.2"
26 hex = "0.3"
27
28 [dev-dependencies]
29 bencher = "0.1"
30
31 [[bench]]
32 name = "spake2"
33 harness = false