]> git.lizzy.rs Git - PAKEs.git/blob - Cargo.toml
update deps: num-bigint=0.2
[PAKEs.git] / Cargo.toml
1 [package]
2 name = "spake2"
3 version = "0.0.8-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.2"
24 hex = "0.3"
25
26 [dev-dependencies]
27 bencher = "0.1"
28
29 [[bench]]
30 name = "spake2"
31 harness = false