forked from informalsystems/tendermint-rs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (38 loc) · 1.44 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "tendermint-abci"
version = "0.32.0"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
categories = ["cryptography::cryptocurrencies", "network-programming"]
keywords = ["abci", "blockchain", "bft", "consensus", "tendermint"]
repository = "https://github.com/informalsystems/tendermint-rs"
description = """
tendermint-abci provides a simple framework with which to build low-level
applications on top of Tendermint.
"""
# dont publish this package as a part of celestia-tendermint fork
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kvstore-rs"
path = "src/application/kvstore/main.rs"
required-features = [ "binary", "kvstore-app" ]
[features]
default = ["flex-error/std", "flex-error/eyre_tracer"]
client = []
echo-app = []
kvstore-app = []
binary = [
"structopt",
"tracing-subscriber/fmt",
]
[dependencies]
prost.workspace = true
bytes = { version = "1.0", default-features = false }
tendermint-proto = { version = "0.32.0", default-features = false, path = "../proto" }
tracing = { version = "0.1", default-features = false }
flex-error = { version = "0.4.4", default-features = false }
structopt = { version = "0.3", optional = true, default-features = false }
tracing-subscriber = { version = "0.2", optional = true, default-features = false }