-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 837 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "benaloh-challenge"
version = "0.8.0"
authors = ["phayes <[email protected]>"]
edition = "2021"
description = "Implements the Benaloh Challenge (also known as an Interactive Device Challenge), a crytographic technique to ensure the honesty of an untrusted device."
license = "MIT OR Apache-2.0"
repository = "https://github.com/phayes/benaloh-challenge"
readme = "README.md"
keywords = ["cryptography", "voting"]
categories = ["cryptography"]
[badges]
travis-ci = { repository = "phayes/benaloh-challenge", branch = "master" }
codecov = { repository = "phayes/benaloh-challenge", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[dependencies]
rand = "0.8"
digest = "0.10"
zeroize = "1.1.1"
rand_core = "0.6"
thiserror = "1"
[dev-dependencies]
sha2 = "0.10"
rsa = "0.7"