2022-08-29 07:32:59 +00:00
|
|
|
[package]
|
|
|
|
name = "minimal-ed448"
|
2023-08-08 22:18:59 +00:00
|
|
|
version = "0.4.0"
|
2022-08-29 07:32:59 +00:00
|
|
|
description = "Unaudited, inefficient implementation of Ed448 in Rust"
|
|
|
|
license = "MIT"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ed448"
|
2022-08-29 07:32:59 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = ["ed448", "ff", "group"]
|
|
|
|
edition = "2021"
|
2023-08-02 18:17:57 +00:00
|
|
|
rust-version = "1.65"
|
2022-08-29 07:32:59 +00:00
|
|
|
|
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]
|
2023-03-28 08:43:10 +00:00
|
|
|
rustversion = "1"
|
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
rand_core = { version = "0.6", default-features = false }
|
2022-08-29 07:32:59 +00:00
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }
|
|
|
|
subtle = { version = "^2.4", default-features = false }
|
2022-08-29 07:32:59 +00:00
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
ff = { version = "0.13", default-features = false, features = ["bits"] }
|
|
|
|
group = { version = "0.13", default-features = false }
|
2022-08-29 07:32:59 +00:00
|
|
|
|
2023-10-29 13:07:14 +00:00
|
|
|
generic-array = { version = "1", default-features = false }
|
2023-04-22 08:38:47 +00:00
|
|
|
crypto-bigint = { version = "0.5", default-features = false, features = ["zeroize"] }
|
2022-08-29 07:32:59 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
hex = "0.4"
|
2022-12-24 20:09:09 +00:00
|
|
|
|
2023-04-22 08:38:47 +00:00
|
|
|
rand_core = { version = "0.6", features = ["std"] }
|
|
|
|
|
2022-12-24 20:09:09 +00:00
|
|
|
ff-group-tests = { path = "../ff-group-tests" }
|