mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
31 lines
1.1 KiB
TOML
31 lines
1.1 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"] }
|
|
tokio = { version = "1", default-features = false, features = ["time"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros"] }
|