2024-08-28 23:45:09 +00:00
|
|
|
[package]
|
2024-10-01 14:27:57 +00:00
|
|
|
name = "cw-client"
|
2024-08-28 23:45:09 +00:00
|
|
|
version.workspace = true
|
2024-10-09 19:30:52 +00:00
|
|
|
authors.workspace = true
|
2024-08-28 23:45:09 +00:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2024-10-09 19:30:52 +00:00
|
|
|
license-file.workspace = true
|
2024-08-28 23:45:09 +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"]
|
|
|
|
readme = "README.md"
|
|
|
|
description = """
|
|
|
|
Rust library for interacting with CosmWasm-enabled blockchains.
|
|
|
|
Deploy contracts, query them, and execute transactions.
|
|
|
|
"""
|
2024-08-28 23:45:09 +00:00
|
|
|
|
|
|
|
[lib]
|
2024-10-03 17:50:54 +00:00
|
|
|
path = "src/lib.rs"
|
2024-08-28 23:45:09 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-10-08 08:53:49 +00:00
|
|
|
anyhow.workspace = true
|
2024-10-03 17:50:54 +00:00
|
|
|
async-trait.workspace = true
|
2024-10-08 08:53:49 +00:00
|
|
|
color-eyre.workspace = true
|
2024-08-28 23:45:09 +00:00
|
|
|
hex.workspace = true
|
|
|
|
reqwest.workspace = true
|
|
|
|
serde.workspace = true
|
2024-09-18 20:04:33 +00:00
|
|
|
serde_json.workspace = true
|
2024-10-03 17:50:54 +00:00
|
|
|
tonic.workspace = true
|
|
|
|
|
|
|
|
cosmrs = { workspace = true, default-features = false, features = ["cosmwasm"] }
|
|
|
|
cosmos-sdk-proto = { workspace = true, default-features = false, features = ["grpc", "grpc-transport"] }
|
|
|
|
tendermint = { workspace = true, default-features = false }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio.workspace = true
|
|
|
|
transfers-contract = { path = "../../../examples/transfers/contracts" }
|