Files
serai/patches/ciphersuite/Cargo.toml
2025-11-04 12:06:13 -05:00

36 lines
1014 B
TOML

[package]
name = "ciphersuite"
version = "0.4.99"
description = "Ciphersuites built around ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ciphersuite"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = ["ciphersuite", "ff", "group"]
edition = "2021"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
[dependencies]
std-shims = { path = "../../common/std-shims", version = "0.1.4", default-features = false, optional = true }
zeroize = { version = "1", default-features = false }
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", default-features = false, optional = true }
[features]
alloc = ["std-shims", "zeroize/alloc", "ciphersuite/alloc", "dalek-ff-group/alloc"]
std = [
"alloc",
"std-shims/std",
"zeroize/std",
"ciphersuite/std",
"dalek-ff-group?/std",
]
ed25519 = ["dalek-ff-group"]
default = ["std"]