2024-02-19 19:13:34 +00:00
|
|
|
[package]
|
2024-10-01 14:27:57 +00:00
|
|
|
name = "quartz-enclave-core"
|
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", "hardware-support", "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 = """
|
|
|
|
A Rust framework for building Intel SGX enclaves managed by a CosmWasm contract.
|
|
|
|
"""
|
2024-02-19 19:13:34 +00:00
|
|
|
|
2024-07-18 23:34:31 +00:00
|
|
|
[features]
|
2024-10-01 14:27:57 +00:00
|
|
|
mock-sgx = ["quartz-contract-core/mock-sgx"]
|
2024-06-26 19:31:01 +00:00
|
|
|
|
2024-02-19 19:13:34 +00:00
|
|
|
[dependencies]
|
2024-05-30 00:00:43 +00:00
|
|
|
# external
|
2024-09-18 20:04:33 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
2024-08-08 10:25:56 +00:00
|
|
|
sha2 = { workspace = true }
|
2024-05-30 00:00:43 +00:00
|
|
|
clap.workspace = true
|
|
|
|
color-eyre.workspace = true
|
|
|
|
ecies.workspace = true
|
2024-09-18 20:04:33 +00:00
|
|
|
futures-util.workspace = true
|
2024-05-30 00:00:43 +00:00
|
|
|
hex.workspace = true
|
|
|
|
k256.workspace = true
|
|
|
|
rand.workspace = true
|
2024-09-25 19:14:06 +00:00
|
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
2024-05-30 00:00:43 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-09-18 20:04:33 +00:00
|
|
|
thiserror.workspace = true
|
2024-05-30 00:00:43 +00:00
|
|
|
tonic.workspace = true
|
|
|
|
tokio.workspace = true
|
2024-09-18 20:04:33 +00:00
|
|
|
tower.workspace = true
|
2024-09-25 19:14:06 +00:00
|
|
|
urlencoding.workspace = true
|
|
|
|
|
|
|
|
# mobilecoin
|
|
|
|
mc-sgx-dcap-sys-types.workspace = true
|
2024-02-20 11:27:10 +00:00
|
|
|
|
2024-05-30 00:00:43 +00:00
|
|
|
# cosmos
|
|
|
|
cosmrs.workspace = true
|
|
|
|
cosmwasm-std.workspace = true
|
|
|
|
tendermint.workspace = true
|
|
|
|
tendermint-light-client.workspace = true
|
2024-10-09 19:30:52 +00:00
|
|
|
tendermint-rpc = { workspace = true, features = ["websocket-client", "http-client"] }
|
2024-05-30 00:00:43 +00:00
|
|
|
|
|
|
|
# quartz
|
2024-10-01 14:27:57 +00:00
|
|
|
quartz-cw-proof.workspace = true
|
|
|
|
quartz-contract-core.workspace = true
|
2024-05-30 00:00:43 +00:00
|
|
|
quartz-proto.workspace = true
|
|
|
|
quartz-tee-ra.workspace = true
|
2024-10-01 14:27:57 +00:00
|
|
|
quartz-tm-stateless-verifier.workspace = true
|