-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
37 lines (33 loc) · 1.25 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
[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 <[email protected]>",
]
description = """
The CometBFT Light Client command line tool.
"""
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true
# defines the configuration attribute `docsrs`
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"] }