2023-12-14 11:18:19 +00:00
|
|
|
[package]
|
2024-10-01 14:27:57 +00:00
|
|
|
name = "quartz-cw-prover"
|
2024-05-30 00:00:43 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2024-10-09 19:30:52 +00:00
|
|
|
license-file.workspace = true
|
2024-05-30 00:00:43 +00:00
|
|
|
repository.workspace = true
|
2024-10-09 19:30:52 +00:00
|
|
|
homepage.workspace = true
|
|
|
|
categories = ["command-line-utilities", "cryptography::cryptocurrencies", "wasm"]
|
|
|
|
keywords = ["cosmos", "cosmwasm", "cycles", "quartz", "sgx"]
|
2024-05-30 00:00:43 +00:00
|
|
|
readme = "README.md"
|
2024-10-09 19:30:52 +00:00
|
|
|
description = """
|
|
|
|
CLI to generate a merkle proof of a key in the state of a CosmWasm contract.
|
|
|
|
"""
|
2023-12-14 11:18:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-30 00:00:43 +00:00
|
|
|
# external
|
|
|
|
clap.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
|
|
|
|
# cosmos
|
|
|
|
cosmrs.workspace = true
|
|
|
|
tendermint.workspace = true
|
|
|
|
tendermint-rpc.workspace = true
|
|
|
|
|
|
|
|
# quartz
|
2024-10-01 14:27:57 +00:00
|
|
|
quartz-cw-proof.workspace = true
|
2023-12-30 12:12:27 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-05-30 00:00:43 +00:00
|
|
|
hex.workspace = true
|