mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
30 lines
760 B
TOML
30 lines
760 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"]
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false }
|
||
|
|
dalek-ff-group = { path = "../../crypto/dalek-ff-group", default-features = false, optional = true }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
alloc = ["ciphersuite/alloc"]
|
||
|
|
std = [
|
||
|
|
"ciphersuite/std",
|
||
|
|
"dalek-ff-group?/std",
|
||
|
|
]
|
||
|
|
ed25519 = ["dalek-ff-group"]
|
||
|
|
default = ["std"]
|