cycles-quartz/crates/contracts/core/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2024-02-19 15:55:46 +00:00
[package]
2024-10-01 14:27:57 +00:00
name = "quartz-contract-core"
2024-05-30 00:00:43 +00:00
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license-file.workspace = true
2024-05-30 00:00:43 +00:00
repository.workspace = true
homepage.workspace = true
categories = ["cryptography::cryptocurrencies", "wasm"]
keywords = ["cosmos", "cosmwasm", "cycles", "quartz", "sgx"]
2024-05-30 00:00:43 +00:00
readme = "README.md"
description = """
A CosmWasm framework for securely interacting with Intel SGX enclaves.
"""
2024-02-19 15:55:46 +00:00
[features]
default = []
mock-sgx = []
std = ["k256/std", "serde/std", "serde_json/std", "sha2/std", "cosmwasm-std/std"]
library = []
2024-02-19 15:55:46 +00:00
[dependencies]
2024-05-30 00:00:43 +00:00
# external
ciborium.workspace = true
hex.workspace = true
2024-05-30 00:00:43 +00:00
k256.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
2024-05-30 00:00:43 +00:00
sha2.workspace = true
thiserror.workspace = true
2024-05-30 00:00:43 +00:00
# cosmos
cw-storage-plus.workspace = true
cosmwasm-schema.workspace = true
cosmwasm-std.workspace = true
# quartz
quartz-dcap-verifier-msgs.workspace = true
2024-05-30 00:00:43 +00:00
quartz-tee-ra.workspace = true
2024-10-01 14:27:57 +00:00
quartz-tcbinfo-msgs.workspace = true
2024-02-19 15:55:46 +00:00
[dev-dependencies]
2024-05-30 00:00:43 +00:00
serde_json.workspace = true