forked from isislovecruft/frost-dalek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 1.7 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
[package]
name = "frost-dalek"
version = "0.2.3"
authors = ["isis lovecruft <[email protected]>"]
edition = "2018"
description = "FROST: Flexible Round-Optimised Threshold Signature using the Ristretto group"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/isislovecruft/frost-dalek"
homepage = "https://dalek.rs"
documentation = "https://docs.rs/frost-dalek"
keywords = ["cryptography", "frost", "ristretto", "signature", "threshold-signature"]
categories = ["cryptography"]
exclude = [ ".gitignore" ]
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "/opt/rustwide/workdir/docs/assets/rustdoc-include-katex-header.html"]
[dependencies]
curve25519-dalek = { version = "3", default-features = false }
ed25519-dalek = { version = "1", default-features = false }
rand = { version = "0.7" }
sha2 = { version = "0.9" }
subtle = { version = "2.4", default-features = false }
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }
[dev-dependencies]
criterion = { version = "0.3" }
[[bench]]
name = "dalek_benchmarks"
harness = false
[features]
default = ["std", "u64_backend"]
nightly = ["curve25519-dalek/nightly", "ed25519-dalek/nightly"]
std = ["curve25519-dalek/std", "ed25519-dalek/std"]
alloc = ["curve25519-dalek/alloc", "ed25519-dalek/alloc"]
# The u32 backend uses u32s with u64 products.
u32_backend = ["curve25519-dalek/u32_backend", "ed25519-dalek/u32_backend"]
# The u64 backend uses u64s with u128 products.
u64_backend = ["curve25519-dalek/u64_backend", "ed25519-dalek/u64_backend"]
# The SIMD backend uses parallel formulas, using either AVX2 or AVX512-IFMA.
simd_backend = ["curve25519-dalek/simd_backend", "ed25519-dalek/simd_backend"]