-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 1.29 KB
/
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
28
29
30
31
32
33
34
35
[package]
name = "crypto-rs"
version = "0.1.2"
authors = ["Raphael Matile <raphael.matile@gmail.com>"]
license = "Apache-2.0"
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown).
description = "Additivie Homomorphic ElGamal encryption with range zero-knowledge proof and universal cast-as-intended proofs"
# These URLs point to more information about the package. These are
# intended to be webviews of the relevant data, not necessarily compatible
# with VCS tools and the like.
# documentation = "..."
# homepage = "..."
repository = "https://github.com/provotum/crypto-rs"
# This points to a file under the package root (relative to this `Cargo.toml`).
# The contents of this file are stored and indexed in the registry.
# crates.io will render this file and place the result on the crate's page.
readme = "README.md"
# This is a list of up to five keywords that describe this crate. Keywords
# are searchable on crates.io, and you may choose any words that would
# help someone find this crate.
keywords = ["uciv", "universal cast-as-intended", "e-voting", "ElGamal", "homomorphic"]
[dependencies]
num = {version = "0.2", features = ["serde", "rand"]}
rand = "0.5"
sha2 = "0.7.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"