mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 05:29:55 +00:00
ac7b98daac
Indirects it via a minimal wrapper which can be trivially patched.
33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
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"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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-util = { version = "0.3", default-features = false, features = ["std", "async-await-macro", "sink", "channel"] }
|
|
futures-channel = { version = "0.3", default-features = false, features = ["std", "sink"] }
|
|
patchable-async-sleep = { version = "0.1", path = "../../../common/patchable-async-sleep", default-features = false }
|
|
|
|
serai-db = { path = "../../../common/db", version = "0.1", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros"] }
|