mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
7d2d739042
* Rename the coins folder to networks Ethereum isn't a coin. It's a network. Resolves #357. * More renames of coins -> networks in orchestration * Correct paths in tests/ * cargo fmt
38 lines
1.6 KiB
TOML
38 lines
1.6 KiB
TOML
[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>"]
|
|
keywords = ["nostd", "no_std", "alloc"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
flexible-transcript = { path = "../../crypto/transcript", default-features = false, features = ["recommended", "merlin"] }
|
|
|
|
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"] }
|
|
|
|
dleq = { path = "../../crypto/dleq", default-features = false }
|
|
schnorr-signatures = { path = "../../crypto/schnorr", default-features = false }
|
|
|
|
dkg = { path = "../../crypto/dkg", default-features = false }
|
|
# modular-frost = { path = "../../crypto/frost", default-features = false }
|
|
# frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false }
|
|
|
|
bitcoin-serai = { path = "../../networks/bitcoin", default-features = false, features = ["hazmat"] }
|
|
|
|
monero-wallet-util = { path = "../../networks/monero/wallet/util", default-features = false, features = ["compile-time-generators"] }
|