2022-08-29 07:32:59 +00:00
|
|
|
[package]
|
|
|
|
name = "minimal-ed448"
|
2022-09-29 06:24:33 +00:00
|
|
|
version = "0.1.1"
|
2022-08-29 07:32:59 +00:00
|
|
|
description = "Unaudited, inefficient implementation of Ed448 in Rust"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/serai-dex/serai"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = ["ed448", "ff", "group"]
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-09-28 12:44:49 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2022-09-29 08:47:55 +00:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2022-09-28 12:44:49 +00:00
|
|
|
|
2022-08-29 07:32:59 +00:00
|
|
|
[dependencies]
|
|
|
|
lazy_static = "1"
|
|
|
|
|
|
|
|
rand_core = "0.6"
|
|
|
|
digest = "0.10"
|
|
|
|
|
2022-09-29 06:24:33 +00:00
|
|
|
zeroize = { version = "1.5", features = ["zeroize_derive"] }
|
2022-08-29 07:32:59 +00:00
|
|
|
subtle = "2.4"
|
|
|
|
|
|
|
|
ff = "0.12"
|
|
|
|
group = "0.12"
|
|
|
|
|
|
|
|
generic-array = "0.14"
|
2022-08-31 05:05:30 +00:00
|
|
|
crypto-bigint = { version = "0.4", features = ["zeroize"] }
|
2022-08-29 07:32:59 +00:00
|
|
|
|
|
|
|
dalek-ff-group = { path = "../dalek-ff-group", version = "^0.1.2" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-31 07:33:19 +00:00
|
|
|
hex-literal = "0.3"
|
2022-08-29 07:32:59 +00:00
|
|
|
hex = "0.4"
|