cycles-quartz/crates/common/Cargo.toml
Ethan Buchman f8a04a09c9
LICENSE (#253)
Co-authored-by: hu55a1n1 <sufialhussaini@gmail.com>
2024-10-15 22:58:06 +02:00

29 lines
919 B
TOML

[package]
name = "quartz-common"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
categories = ["cryptography::cryptocurrencies", "wasm"]
keywords = ["cosmos", "cosmwasm", "cycles", "quartz", "sgx"]
readme = "README.md"
description = """
A wrapper crate around quartz-contract-core, quartz-enclave-core, and quartz-proto.
"""
[features]
full = ["contract", "enclave", "proto"]
contract = ["dep:quartz-contract-core"]
enclave = ["dep:quartz-enclave-core", "proto"]
proto = ["dep:quartz-proto"]
mock-sgx-cw = ["quartz-contract-core/mock-sgx"]
mock-sgx-enclave = ["quartz-enclave-core/mock-sgx"]
[dependencies]
quartz-contract-core = { workspace = true, optional = true }
quartz-proto = { workspace = true, optional = true }
quartz-enclave-core = { workspace = true, optional = true }