2022-04-22 01:36:18 +00:00
|
|
|
[package]
|
|
|
|
name = "dalek-ff-group"
|
2022-09-29 06:24:33 +00:00
|
|
|
version = "0.1.5"
|
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]
|
|
|
|
rand_core = "0.6"
|
2022-04-27 04:09:05 +00:00
|
|
|
digest = "0.10"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-09-29 06:24:33 +00:00
|
|
|
zeroize = { version = "1.5", features = ["zeroize_derive"] }
|
2022-04-22 01:36:18 +00:00
|
|
|
subtle = "2.4"
|
|
|
|
|
2022-06-30 07:17:15 +00:00
|
|
|
ff = "0.12"
|
2022-06-06 06:18:25 +00:00
|
|
|
group = "0.12"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-07-10 19:20:42 +00:00
|
|
|
crypto-bigint = "0.4"
|
2022-04-22 01:36:18 +00:00
|
|
|
curve25519-dalek = "3.2"
|
2022-12-24 20:09:09 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ff-group-tests = { path = "../ff-group-tests" }
|