2023-12-30 20:33:51 +00:00
|
|
|
[package]
|
2024-10-01 14:27:57 +00:00
|
|
|
name = "quartz-cw-proof"
|
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 = ["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 = """
|
|
|
|
Merkle proofs of CosmWasm contract state. This crate contains proof types and a verifier implementation.
|
|
|
|
"""
|
2023-12-30 20:33:51 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-30 00:00:43 +00:00
|
|
|
# external
|
|
|
|
clap.workspace = true
|
|
|
|
displaydoc.workspace = true
|
|
|
|
prost.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_with.workspace = true
|
|
|
|
|
|
|
|
# cosmos
|
|
|
|
cosmrs.workspace = true
|
|
|
|
ics23.workspace = true
|
|
|
|
tendermint.workspace = true
|
|
|
|
tendermint-rpc.workspace = true
|
2023-12-30 20:33:51 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-05-30 00:00:43 +00:00
|
|
|
hex.workspace = true
|