2022-04-21 21:36:18 -04:00
|
|
|
[package]
|
|
|
|
|
name = "dalek-ff-group"
|
2023-03-20 20:28:41 -04:00
|
|
|
version = "0.3.0"
|
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]
|
2023-03-28 04:43:10 -04:00
|
|
|
rustversion = "1"
|
2022-04-21 21:36:18 -04:00
|
|
|
|
2023-03-07 02:29:59 -05:00
|
|
|
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
|
2023-03-07 03:06:46 -05:00
|
|
|
subtle = "^2.4"
|
2022-04-21 21:36:18 -04:00
|
|
|
|
2023-03-28 04:43:10 -04:00
|
|
|
rand_core = "0.6"
|
|
|
|
|
|
|
|
|
|
digest = "0.10"
|
|
|
|
|
|
2023-03-28 04:38:01 -04:00
|
|
|
ff = "0.13"
|
|
|
|
|
group = "0.13"
|
2022-04-21 21:36:18 -04:00
|
|
|
|
2023-03-17 15:31:04 -04:00
|
|
|
crypto-bigint = "0.5"
|
2023-02-23 04:27:31 -05:00
|
|
|
|
|
|
|
|
sha2 = "0.9"
|
2023-03-07 03:06:46 -05:00
|
|
|
curve25519-dalek = "^3.2"
|
2022-12-24 15:09:09 -05:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
ff-group-tests = { path = "../ff-group-tests" }
|