mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 17:37:37 +00:00
19488cf446
Updated missing fields/sections, even if some won't be used, to standardize. Also made FROST tests feature-gated.
24 lines
584 B
TOML
24 lines
584 B
TOML
[package]
|
|
name = "monero-generators"
|
|
version = "0.1.1"
|
|
description = "Monero's hash_to_point and generators"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coins/monero/generators"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
|
|
subtle = "2.4"
|
|
|
|
sha3 = "0.10"
|
|
|
|
curve25519-dalek = { version = "3", features = ["std"] }
|
|
|
|
group = "0.12"
|
|
dalek-ff-group = { path = "../../../crypto/dalek-ff-group", version = "0.1.4" }
|