[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 "] 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"] }