mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 20:19:24 +00:00
d81f6270c7
Uses "dleq-serai", instead of "dleq", as the dleq crate name hasn't been transferred yet :(
24 lines
543 B
TOML
24 lines
543 B
TOML
[package]
|
|
name = "multiexp"
|
|
version = "0.2.0"
|
|
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"
|
|
|
|
[dependencies]
|
|
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"]
|