2022-12-24 20:09:09 +00:00
|
|
|
[package]
|
|
|
|
name = "ff-group-tests"
|
2023-03-28 08:38:01 +00:00
|
|
|
version = "0.13.0"
|
2022-12-24 20:09:09 +00:00
|
|
|
description = "A collection of sanity tests for implementors of ff/group APIs"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ff-group-tests"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = ["ff", "group", "ecc"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-24 11:03:56 +00:00
|
|
|
rand_core = "0.6"
|
2023-03-28 08:38:01 +00:00
|
|
|
|
|
|
|
subtle = "^2.4"
|
|
|
|
|
|
|
|
group = "0.13"
|
2022-12-24 20:09:09 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-16 03:21:18 +00:00
|
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
|
|
|
p256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
2023-03-28 08:38:01 +00:00
|
|
|
|
|
|
|
bls12_381 = "0.8"
|
|
|
|
|
|
|
|
pasta_curves = "0.5"
|