# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "tendermint-abci" version = "0.40.0" authors = ["Informal Systems "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ tendermint-abci provides a simple framework with which to build low-level applications on top of Tendermint. """ readme = "README.md" keywords = [ "abci", "blockchain", "bft", "consensus", "tendermint", ] categories = [ "cryptography::cryptocurrencies", "network-programming", ] license = "Apache-2.0" repository = "https://github.com/informalsystems/tendermint-rs" [lib] name = "tendermint_abci" path = "src/lib.rs" [[bin]] name = "kvstore-rs" path = "src/application/kvstore/main.rs" required-features = [ "binary", "client", "kvstore-app", ] [[test]] name = "echo_app" path = "tests/echo_app.rs" [[test]] name = "kvstore_app" path = "tests/kvstore_app.rs" [dependencies.bytes] version = "1.0" default-features = false [dependencies.flex-error] version = "0.4.4" default-features = false [dependencies.prost] version = "0.13" default-features = false [dependencies.structopt] version = "0.3" optional = true default-features = false [dependencies.tendermint-proto] version = "0.40.0" default-features = false [dependencies.tracing] version = "0.1" default-features = false [dependencies.tracing-subscriber] version = "0.3" optional = true default-features = false [features] binary = [ "structopt", "tracing-subscriber/fmt", ] client = [] default = ["flex-error/std"] echo-app = [] kvstore-app = []