mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
38ad1d4bc4
This will effectively add msrv protections to the entire project as almost everything grabs from these. Doesn't add msrv to coins as coins/bitcoin is still frozen. Doesn't add msrv to services since cargo msrv doesn't play nice with anything importing the runtime.
30 lines
815 B
TOML
30 lines
815 B
TOML
[package]
|
|
name = "ff-group-tests"
|
|
version = "0.13.0"
|
|
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"
|
|
rust-version = "1.60"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
rand_core = "0.6"
|
|
|
|
subtle = "^2.4"
|
|
|
|
ff = { version = "0.13", features = ["bits"] }
|
|
group = "0.13"
|
|
|
|
[dev-dependencies]
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
|
p256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
|
|
|
bls12_381 = "0.8"
|
|
|
|
pasta_curves = "0.5"
|