-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
28 lines (26 loc) · 900 Bytes
/
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
[package]
name = "x448"
version = "0.6.0"
authors = ["Kevaundray Wedderburn <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/crate-crypto/x448"
homepage = "https://github.com/crate-crypto/x448"
documentation = "https://github.com/crate-crypto/x448"
categories = ["cryptography"]
keywords = ["cryptography", "crypto", "x448", "diffie-hellman", "curve448",]
description = "A pure-Rust implementation of X448."
exclude = [
".gitignore",
".github/*"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ed448-goldilocks = { version = "0.8.3", features = ["zeroize"] }
hex = "0.4.0"
rand_core = { version = "0.5", default-features = false, features = ["getrandom"] }
[dependencies.zeroize]
version = "1"
default-features = false
features = ["zeroize_derive"]