blob: 65377585f671283336ca9d6e9a298259d6c468aa [file] [log] [blame]
[package]
name = "teaclave_runtime"
version = "0.1.0"
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
description = "Teaclave runtime"
license = "Apache-2.0"
edition = "2018"
[lib]
name = "teaclave_runtime"
crate-type = ["staticlib", "rlib"]
[features]
default = []
mesalock_sgx = [
"sgx_tstd",
"teaclave_types/mesalock_sgx",
]
cov = ["sgx_cov"]
enclave_unit_test = ["teaclave_test_utils/mesalock_sgx"]
[dependencies]
log = { version = "0.4.6" }
anyhow = { version = "1.0.26" }
teaclave_types = { path = "../types" }
teaclave_test_utils = { path = "../tests/utils", optional = true }
sgx_cov = { version = "1.1.2", optional = true }
sgx_tstd = { version = "1.1.2", features = ["net", "thread", "backtrace"], optional = true }
sgx_types = { version = "1.1.2" }