-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
35 lines (31 loc) · 1.06 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 = "ed448-goldilocks"
version = "0.9.0"
authors = ["Kevaundray Wedderburn <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/crate-crypto/Ed448-Goldilocks"
homepage = "https://github.com/crate-crypto/Ed448-Goldilocks"
documentation = "https://github.com/crate-crypto/Ed448-Goldilocks"
categories = ["cryptography"]
keywords = ["cryptography", "crypto", "decaf", "ed448", "ed448-goldilocks"]
description = "A pure-Rust implementation of Ed448 and Curve448 and Decaf"
exclude = [".gitignore", ".github/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
subtle = "2.2.2"
rand_core = { version = "0.6", optional = true }
fiat-crypto = { version = "0.2.0", optional = true }
[dependencies.zeroize]
version = "1"
default-features = false
features = ["zeroize_derive"]
optional = true
[features]
default = ["fiat_u64_backend"]
fiat_u64_backend = ["fiat-crypto"]
u32_backend = []
rand = ["rand_core"]
[dev-dependencies]
hex-literal = "0.4"