mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
c0200df75a
Some checks failed
coins/ Tests / test-coins (push) Waiting to run
Coordinator Tests / build (push) Waiting to run
crypto/ Tests / test-crypto (push) Waiting to run
Full Stack Tests / build (push) Waiting to run
Lint / clippy (ubuntu-latest) (push) Waiting to run
Lint / clippy (windows-latest) (push) Waiting to run
Lint / deny (push) Waiting to run
Lint / fmt (push) Waiting to run
Lint / machete (push) Waiting to run
Lint / clippy (macos-13) (push) Waiting to run
Lint / clippy (macos-14) (push) Waiting to run
Message Queue Tests / build (push) Waiting to run
no-std build / build (push) Waiting to run
Processor Tests / build (push) Waiting to run
Reproducible Runtime / build (push) Waiting to run
Tests / test-infra (push) Waiting to run
Tests / test-substrate (push) Waiting to run
Tests / test-serai-client (push) Waiting to run
Monero Tests / unit-tests (push) Has been cancelled
Monero Tests / integration-tests (v0.17.3.2) (push) Has been cancelled
Monero Tests / integration-tests (v0.18.2.0) (push) Has been cancelled
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "dalek-ff-group"
|
|
version = "0.4.1"
|
|
description = "ff/group bindings around curve25519-dalek"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dalek-ff-group"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["curve25519", "ed25519", "ristretto", "dalek", "group"]
|
|
edition = "2021"
|
|
rust-version = "1.66"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
rustversion = "1"
|
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }
|
|
subtle = { version = "^2.4", default-features = false }
|
|
|
|
rand_core = { version = "0.6", default-features = false }
|
|
|
|
digest = { version = "0.10", default-features = false }
|
|
|
|
ff = { version = "0.13", default-features = false, features = ["bits"] }
|
|
group = { version = "0.13", default-features = false }
|
|
|
|
crypto-bigint = { version = "0.5", default-features = false, features = ["zeroize"] }
|
|
|
|
curve25519-dalek = { version = ">= 4.0, < 4.2", default-features = false, features = ["alloc", "zeroize", "digest", "group", "precomputed-tables"] }
|
|
|
|
[dev-dependencies]
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
ff-group-tests = { path = "../ff-group-tests" }
|
|
|
|
[features]
|
|
std = ["zeroize/std", "subtle/std", "rand_core/std", "digest/std"]
|
|
default = ["std"]
|