serai/tests/no-std/Cargo.toml

37 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "serai-no-std-tests"
version = "0.1.0"
description = "A crate to test no-std builds of Serai crates work"
license = "MIT"
repository = "https://github.com/kayabaNerve/serai/tree/develop/tests/no-std"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
2023-07-14 17:10:30 +00:00
keywords = ["nostd", "no_std", "alloc"]
edition = "2021"
publish = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
2023-10-31 11:55:25 +00:00
flexible-transcript = { path = "../../crypto/transcript", default-features = false, features = ["recommended", "merlin"] }
2023-10-31 11:55:25 +00:00
dalek-ff-group = { path = "../../crypto/dalek-ff-group", default-features = false }
minimal-ed448 = { path = "../../crypto/ed448", default-features = false }
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["alloc", "secp256k1", "p256", "ed25519", "ristretto", "ed448"] }
multiexp = { path = "../../crypto/multiexp", default-features = false, features = ["batch"] }
2023-05-13 08:03:56 +00:00
dleq = { path = "../../crypto/dleq", default-features = false }
schnorr-signatures = { path = "../../crypto/schnorr", default-features = false }
dkg = { path = "../../crypto/dkg", default-features = false }
2023-05-13 08:03:56 +00:00
# modular-frost = { path = "../../crypto/frost", default-features = false }
# frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false }
bitcoin-serai = { path = "../../coins/bitcoin", default-features = false, features = ["hazmat"] }
monero-generators = { path = "../../coins/monero/generators", default-features = false }
monero-serai = { path = "../../coins/monero", default-features = false }