2022-04-22 01:36:18 +00:00
|
|
|
[package]
|
|
|
|
name = "dalek-ff-group"
|
2023-03-21 00:28:41 +00:00
|
|
|
version = "0.3.0"
|
2022-04-22 01:36:18 +00:00
|
|
|
description = "ff/group bindings around curve25519-dalek"
|
|
|
|
license = "MIT"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dalek-ff-group"
|
2022-04-22 01:36:18 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2022-06-19 10:33:19 +00:00
|
|
|
keywords = ["curve25519", "ed25519", "ristretto", "dalek", "group"]
|
2022-04-22 01:36:18 +00:00
|
|
|
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-04-22 01:36:18 +00:00
|
|
|
[dependencies]
|
2023-03-28 08:43:10 +00:00
|
|
|
rustversion = "1"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2023-03-07 07:29:59 +00:00
|
|
|
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
|
2023-03-07 08:06:46 +00:00
|
|
|
subtle = "^2.4"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2023-03-28 08:43:10 +00:00
|
|
|
rand_core = "0.6"
|
|
|
|
|
|
|
|
digest = "0.10"
|
|
|
|
|
2023-03-28 08:38:01 +00:00
|
|
|
ff = "0.13"
|
|
|
|
group = "0.13"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2023-03-17 19:31:04 +00:00
|
|
|
crypto-bigint = "0.5"
|
2023-02-23 09:27:31 +00:00
|
|
|
|
|
|
|
sha2 = "0.9"
|
2023-03-07 08:06:46 +00:00
|
|
|
curve25519-dalek = "^3.2"
|
2022-12-24 20:09:09 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ff-group-tests = { path = "../ff-group-tests" }
|