mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
05dc474cb3
If a crate has std set, it should enable std for all dependencies in order to let them properly select which algorithms to use. Some crates fallback to slower/worse algorithms on no-std. Also more aggressively sets default-features = false leading to a *10%* reduction in the amount of crates coordinator builds.
41 lines
1.8 KiB
TOML
41 lines
1.8 KiB
TOML
[package]
|
|
name = "tributary-chain"
|
|
version = "0.1.0"
|
|
description = "A micro-blockchain to provide consensus and ordering to P2P communication"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/tributary"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1", default-features = false }
|
|
thiserror = { version = "1", default-features = false }
|
|
|
|
subtle = { version = "^2", default-features = false, features = ["std"] }
|
|
zeroize = { version = "^1.5", default-features = false, features = ["std"] }
|
|
|
|
rand = { version = "0.8", default-features = false, features = ["std"] }
|
|
rand_chacha = { version = "0.3", default-features = false, features = ["std"] }
|
|
|
|
blake2 = { version = "0.10", default-features = false, features = ["std"] }
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", default-features = false, features = ["std", "recommended"] }
|
|
|
|
ciphersuite = { package = "ciphersuite", path = "../../crypto/ciphersuite", default-features = false, features = ["std", "ristretto"] }
|
|
schnorr = { package = "schnorr-signatures", path = "../../crypto/schnorr", default-features = false, features = ["std"] }
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std", "derive"] }
|
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
|
tendermint = { package = "tendermint-machine", path = "./tendermint" }
|
|
|
|
tokio = { version = "1", default-features = false, features = ["sync", "time", "rt"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["macros"] }
|
|
|
|
[features]
|
|
tests = []
|