42 lines
1 KiB
TOML
42 lines
1 KiB
TOML
[package]
|
|
name = "quartz-tee-ra"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license-file.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
categories = ["cryptography::cryptocurrencies", "wasm"]
|
|
keywords = ["cosmos", "cosmwasm", "cycles", "quartz", "sgx"]
|
|
readme = "README.md"
|
|
description = """
|
|
Internal CosmWasm library for handling Intel SGX DCAP remote attestations.
|
|
"""
|
|
|
|
[dependencies]
|
|
# external
|
|
der.workspace = true
|
|
hex-literal.workspace = true
|
|
num-bigint.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
thiserror.workspace = true
|
|
x509-cert.workspace = true
|
|
x509-parser.workspace = true
|
|
|
|
# mobilecoin
|
|
mc-attestation-verifier.workspace = true
|
|
mc-sgx-dcap-types.workspace = true
|
|
|
|
# cosmos
|
|
cosmwasm-schema.workspace = true
|
|
cosmwasm-std.workspace = true
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4.3"
|
|
mc-sgx-dcap-types.workspace = true
|
|
mc-sgx-core-types.workspace = true
|
|
mc-sgx-dcap-sys-types.workspace = true
|