forked from mikelodder7/Ed448-Goldilocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.36 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
[package]
authors = ["Kevaundray Wedderburn <[email protected]>", "Michael Lodder <[email protected]>"]
categories = ["cryptography"]
description = "A pure-Rust implementation of Ed448 and Curve448 and Decaf"
documentation = "https://docs.rs/Ed448-Goldilocks"
exclude = [".gitignore", ".github/*"]
edition = "2021"
homepage = "https://docs.rs/Ed448-Goldilocks"
keywords = ["cryptography", "decaf", "ed448", "ed448-goldilocks"]
license = "BSD-3-Clause"
name = "ed448-goldilocks-plus"
readme = "README.md"
repository = "https://github.com/mikelodder7/Ed448-Goldilocks"
version = "0.13.2"
[dependencies]
elliptic-curve = { version = "0.13", features = ["arithmetic", "bits", "hash2curve", "hazmat", "jwk", "pkcs8", "pem", "sec1"] }
subtle = { version = "2.6", default-features = false }
rand_core = { version = "0.6", default-features = false }
serdect = { version = "0.3.0-rc.0", optional = true }
sha3 = { version = "0.10", default-features = false }
zeroize = { version = "1.8", default-features = false, optional = true }
[features]
default = ["std"]
std = ["serdect/default", "zeroize/default"]
alloc = ["serdect/alloc", "zeroize/alloc"]
serde = ["dep:serdect"]
zeroize = ["dep:zeroize"]
[dev-dependencies]
hex-literal = "0.4"
hex = "0.4"
elliptic-curve-tools = "0.1.2"
rand_core = { version = "0.6", features = ["std"] }
rand_chacha = "0.3"
serde_bare = "0.5"
serde_json = "1.0"