forked from tendermint/rust-abci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 823 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "abci"
version = "0.7.2"
authors = ["Adrian Brink <[email protected]>", "Jackson Lewis <[email protected]>", "Dave Bryson", "Tomas Tauber"]
edition = "2018"
license = "MIT/Apache-2.0"
description = "Tendermint ABCI server for Rust"
homepage = "https://tendermint.com/docs/spec/abci/"
repository = "https://github.com/tendermint/rust-abci"
keywords = ["abci", "tendermint", "blockchain", "rust"]
readme = "README.md"
include = ["src/**/*", "Cargo.toml"]
[dependencies]
bytes = "0.5"
protobuf = "= 2.16.2"
byteorder = "1.3.4"
integer-encoding = "1.1.5"
log = "0.4.8"
env_logger = "0.8.2"
tokio = { version = "0.2", features = ["tcp", "rt-core", "io-driver", "sync"] }
tokio-util = { version = "0.3.1", features = ["codec"] }
futures = "0.3"
[build-dependencies]
protobuf-codegen-pure = "= 2.16.2"