2023-11-07 13:01:05 +00:00
|
|
|
[package]
|
|
|
|
name = "tm-prover"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { version = "4.1.8", features = ["derive"] }
|
|
|
|
color-eyre = "0.6.2"
|
2024-01-02 13:16:41 +00:00
|
|
|
cosmrs = "0.15.0"
|
|
|
|
cw-proof = { path = "../cw-proof" }
|
2023-11-07 13:01:05 +00:00
|
|
|
futures = "0.3.27"
|
2024-01-02 13:16:41 +00:00
|
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
2023-11-07 13:01:05 +00:00
|
|
|
serde_json = "1.0.94"
|
2024-01-02 13:16:41 +00:00
|
|
|
tendermint = "0.34.0"
|
|
|
|
tendermint-rpc = { version = "0.34.0", features = ["http-client"] }
|
|
|
|
tendermint-light-client = "0.34.0"
|
|
|
|
tendermint-light-client-detector = "0.34.0"
|
2023-11-07 13:01:05 +00:00
|
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|