mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
* Label the version as an alpha * Add versions to Cargo.tomls * Update to Zeroize 1.5 * Drop patch versions from monero-serai Cargo.toml * Add a repository field * Move generators to OUT_DIR IIRC, I didn't do this originally as it constantly re-generated them. Unfortunately, since cargo is complaining about .generators, we have to. * Remove Timelock::fee_weight Transaction::fee_weight's has a comment, "Assumes Timelock::None since this library won't let you create a TX with a timelock". Accordingly, this is dead code.
26 lines
566 B
TOML
26 lines
566 B
TOML
[package]
|
|
name = "dalek-ff-group"
|
|
version = "0.1.5"
|
|
description = "ff/group bindings around curve25519-dalek"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["curve25519", "ed25519", "ristretto", "dalek", "group"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
rand_core = "0.6"
|
|
digest = "0.10"
|
|
|
|
zeroize = { version = "1.5", features = ["zeroize_derive"] }
|
|
subtle = "2.4"
|
|
|
|
ff = "0.12"
|
|
group = "0.12"
|
|
|
|
crypto-bigint = "0.4"
|
|
curve25519-dalek = "3.2"
|