mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
The prior workflow (now deleted) required manually specifying the packages to check and only checked the package could compile under the stated MSRV. It didn't verify it was actually the _minimum_ supported Rust version. The new version finds the MSRV from scratch to check if the stated MSRV aligns. Updates stated MSRVs accordingly. Also removes many explicit dependencies from secq256k1 for their re-exports via k256. Not directly relevant, just part of tidying up all the `toml`s.
48 lines
1.9 KiB
TOML
48 lines
1.9 KiB
TOML
[package]
|
|
name = "embedwards25519"
|
|
version = "0.1.0"
|
|
description = "A curve defined over the Ed25519 scalar field"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/evrf/embedwards25519"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["curve25519", "ed25519", "ristretto255", "group"]
|
|
edition = "2021"
|
|
rust-version = "1.83"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
rustversion = "1"
|
|
hex-literal = { version = "0.4", default-features = false }
|
|
|
|
std-shims = { version = "0.1", path = "../../../common/std-shims", default-features = false, optional = true }
|
|
|
|
rand_core = { version = "0.6", default-features = false }
|
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }
|
|
subtle = { version = "^2.4", default-features = false }
|
|
|
|
generic-array = { version = "1", default-features = false }
|
|
crypto-bigint = { version = "0.5", default-features = false, features = ["zeroize"] }
|
|
|
|
dalek-ff-group = { path = "../../dalek-ff-group", version = "0.4", default-features = false }
|
|
|
|
blake2 = { version = "0.10", default-features = false }
|
|
ciphersuite = { path = "../../ciphersuite", version = "0.4", default-features = false }
|
|
ec-divisors = { git = "https://github.com/kayabaNerve/monero-oxide", rev = "54da48f27a05fa8656014942919da1dfbab4d8e3", default-features = false }
|
|
generalized-bulletproofs-ec-gadgets = { git = "https://github.com/kayabaNerve/monero-oxide", rev = "54da48f27a05fa8656014942919da1dfbab4d8e3", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
|
|
rand_core = { version = "0.6", features = ["std"] }
|
|
|
|
ff-group-tests = { path = "../../ff-group-tests" }
|
|
|
|
[features]
|
|
alloc = ["std-shims", "zeroize/alloc", "ciphersuite/alloc"]
|
|
std = ["std-shims/std", "rand_core/std", "zeroize/std", "subtle/std", "blake2/std", "ciphersuite/std", "ec-divisors/std", "generalized-bulletproofs-ec-gadgets/std"]
|
|
default = ["std"]
|