2022-04-21 21:36:18 -04:00
|
|
|
[package]
|
|
|
|
|
name = "dalek-ff-group"
|
2022-09-29 01:24:33 -05:00
|
|
|
version = "0.1.5"
|
2022-04-21 21:36:18 -04:00
|
|
|
description = "ff/group bindings around curve25519-dalek"
|
|
|
|
|
license = "MIT"
|
2022-10-15 23:46:22 -04:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dalek-ff-group"
|
2022-04-21 21:36:18 -04:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2022-06-19 06:33:19 -04:00
|
|
|
keywords = ["curve25519", "ed25519", "ristretto", "dalek", "group"]
|
2022-04-21 21:36:18 -04:00
|
|
|
edition = "2021"
|
|
|
|
|
|
2022-09-28 07:44:49 -05:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
2022-09-29 04:47:55 -04:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2022-09-28 07:44:49 -05:00
|
|
|
|
2022-04-21 21:36:18 -04:00
|
|
|
[dependencies]
|
|
|
|
|
rand_core = "0.6"
|
2022-04-27 00:09:05 -04:00
|
|
|
digest = "0.10"
|
2022-04-21 21:36:18 -04:00
|
|
|
|
2022-09-29 01:24:33 -05:00
|
|
|
zeroize = { version = "1.5", features = ["zeroize_derive"] }
|
2022-04-21 21:36:18 -04:00
|
|
|
subtle = "2.4"
|
|
|
|
|
|
2022-06-30 03:17:15 -04:00
|
|
|
ff = "0.12"
|
2022-06-06 02:18:25 -04:00
|
|
|
group = "0.12"
|
2022-04-21 21:36:18 -04:00
|
|
|
|
2022-07-10 15:20:42 -04:00
|
|
|
crypto-bigint = "0.4"
|
2023-02-23 04:27:31 -05:00
|
|
|
|
|
|
|
|
sha2 = "0.9"
|
2022-04-21 21:36:18 -04:00
|
|
|
curve25519-dalek = "3.2"
|
2022-12-24 15:09:09 -05:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
ff-group-tests = { path = "../ff-group-tests" }
|