[package]
name = "cometbft-light-client-cli"
version = "0.1.0-alpha.2"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
categories = ["cryptography::cryptocurrencies", "network-programming"]
repository = "https://github.com/cometbft/cometbft-rs"
authors = [
"Informal Systems <hello@informal.systems>",
]
description = """
The CometBFT Light Client command line tool.
"""
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
cometbft = { version = "0.1.0-alpha.2", path = "../cometbft" }
cometbft-rpc = { version = "0.1.0-alpha.2", path = "../rpc", features = ["http-client"] }
cometbft-light-client = { version = "0.1.0-alpha.2", path = "../light-client" }
cometbft-light-client-detector = { version = "0.1.0-alpha.2", path = "../light-client-detector" }
clap = { version = "4.1.8", features = ["derive"] }
color-eyre = "0.6.2"
futures = "0.3.27"
serde_json = "1.0.94"
tokio = { version = "1.26.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }