mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 13:39:37 +00:00
40 lines
1.4 KiB
TOML
40 lines
1.4 KiB
TOML
|
[package]
|
||
|
name = "secq256k1"
|
||
|
version = "0.1.0"
|
||
|
description = "An implementation of the curve secp256k1 cycles with"
|
||
|
license = "MIT"
|
||
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/evrf/secq256k1"
|
||
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
||
|
keywords = ["secp256k1", "secq256k1", "group"]
|
||
|
edition = "2021"
|
||
|
|
||
|
[package.metadata.docs.rs]
|
||
|
all-features = true
|
||
|
rustdoc-args = ["--cfg", "docsrs"]
|
||
|
|
||
|
[dependencies]
|
||
|
rustversion = "1"
|
||
|
hex-literal = { version = "0.4", default-features = false }
|
||
|
|
||
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
||
|
|
||
|
zeroize = { version = "^1.5", default-features = false, features = ["std", "zeroize_derive"] }
|
||
|
subtle = { version = "^2.4", default-features = false, features = ["std"] }
|
||
|
|
||
|
generic-array = { version = "0.14", default-features = false }
|
||
|
crypto-bigint = { version = "0.5", default-features = false, features = ["zeroize"] }
|
||
|
|
||
|
k256 = { version = "0.13", default-features = false, features = ["arithmetic"] }
|
||
|
|
||
|
blake2 = { version = "0.10", default-features = false, features = ["std"] }
|
||
|
ciphersuite = { path = "../../ciphersuite", version = "0.4", default-features = false, features = ["std"] }
|
||
|
ec-divisors = { path = "../divisors" }
|
||
|
generalized-bulletproofs-ec-gadgets = { path = "../ec-gadgets" }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
hex = "0.4"
|
||
|
|
||
|
rand_core = { version = "0.6", features = ["std"] }
|
||
|
|
||
|
ff-group-tests = { path = "../../ff-group-tests" }
|