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.
23 lines
936 B
TOML
23 lines
936 B
TOML
[package]
|
|
name = "tendermint-machine"
|
|
version = "0.2.0"
|
|
description = "An implementation of the Tendermint state machine in Rust"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/tendermint"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1", default-features = false }
|
|
thiserror = { version = "1", default-features = false }
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
parity-scale-codec = { version = "3", default-features = false, features = ["std", "derive"] }
|
|
|
|
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
|
|
tokio = { version = "1", default-features = false, features = ["sync", "time"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|