mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
8b0f0a3713
* 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.
29 lines
653 B
TOML
29 lines
653 B
TOML
[package]
|
|
name = "multiexp"
|
|
version = "0.2.1"
|
|
description = "Multiexponentation algorithms for ff/group"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["multiexp", "ff", "group"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
zeroize = { version = "1.5", features = ["zeroize_derive"] }
|
|
|
|
ff = "0.12"
|
|
group = "0.12"
|
|
|
|
rand_core = { version = "0.6", optional = true }
|
|
|
|
[dev-dependencies]
|
|
rand_core = "0.6"
|
|
|
|
k256 = { version = "0.11", features = ["bits"] }
|
|
dalek-ff-group = { path = "../dalek-ff-group" }
|
|
|
|
[features]
|
|
batch = ["rand_core"]
|