forked from dusk-network/dusk-zerocaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (47 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "zerocaf"
version = "0.2.0"
authors = ["Luke Pearson <luke@dusk.network>",
"CPerezz <carlos@dusk.network>"]
readme = "README.md"
documentation = "https://dusk-network.github.io/dusk-zerocaf/zerocaf/index.html"
repository = "https://github.com/dusk-network/Dusk-Zerocaf"
keywords = ["cryptography", "ristretto", "doppio-curve", "ECC"]
categories =["Algorithms", "Cryptography", "Development tools"]
description = "A pure-Rust implementation of elliptic curve operations over the Sonny-curve"
exclude = [
"**/.gitignore",
".gitignore",
"**/tools",
"**/sage_codes",
"**/examples"
]
license = "MIT"
edition = "2018"
[dependencies]
subtle = { version = "2", default-features = false }
num = "0.2.0"
curve25519-dalek = "1.1.3"
rand = "0.7.0"
[dev-dependencies]
criterion = "0.3.0"
rand = "0.7.0"
hex = "0.3.2"
# Criterion benchmarks
[[bench]]
path = "./benchmarks/dusk_benchmarks.rs"
name = "dusk_benchmarks"
harness = false
[features]
nightly = ["subtle/nightly"]
# The u64 backend uses u64s with u128 products.
u64_backend = []
default = ["u64_backend"]
[profile.release]
opt-level = 3
incremental = false
codegen-units = 1
debug = false
#rpath = false
lto = true
overflow-checks = false