blob: e86d5bc282cf8ec0c9a3919c8fff1ee4c4a4f461 [file] [log] [blame]
[package]
name = "teaclave_integration_tests_enclave"
version = "0.2.0"
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
description = "Integration Test"
license = "Apache-2.0"
edition = "2018"
[lib]
name = "teaclave_integration_tests_enclave"
crate-type = ["staticlib"]
[features]
default = []
mesalock_sgx = [
"sgx_tstd",
"teaclave_attestation/mesalock_sgx",
"teaclave_proto/mesalock_sgx",
"teaclave_binder/mesalock_sgx",
"teaclave_config/mesalock_sgx",
"teaclave_rpc/mesalock_sgx",
"teaclave_service_enclave_utils/mesalock_sgx",
"teaclave_types/mesalock_sgx",
"teaclave_crypto/mesalock_sgx",
"rusty-leveldb/mesalock_sgx",
"protected_fs_rs/mesalock_sgx",
"teaclave_worker/mesalock_sgx",
"teaclave_test_utils/mesalock_sgx",
]
cov = ["teaclave_service_enclave_utils/cov"]
[dependencies]
log = { version = "0.4.6", features = ["release_max_level_info"] }
anyhow = { version = "1.0.26" }
serde = { version = "1.0.92" }
serde_json = { version = "1.0.39" }
thiserror = { version = "1.0.9" }
rand = { version = "0.7.0" }
rustls = { version = "0.16.0", features = ["dangerous_configuration"] }
rusty-leveldb = { path = "../../../common/rusty_leveldb_sgx", default-features = false, optional = true }
protected_fs_rs = { path = "../../../common/protected_fs_rs", default-features = false, optional = true }
teaclave_attestation = { path = "../../../attestation" }
teaclave_config = { path = "../../../config" }
teaclave_binder = { path = "../../../binder" }
teaclave_rpc = { path = "../../../rpc" }
teaclave_service_enclave_utils = { path = "../../../services/utils/service_enclave_utils" }
teaclave_types = { path = "../../../types" }
teaclave_crypto = { path = "../../../crypto" }
teaclave_proto = { path = "../../../services/proto" }
teaclave_worker = { path = "../../../worker" }
teaclave_test_utils = { path = "../../../tests/utils" }
sgx_tstd = { version = "1.1.2", features = ["net", "thread", "backtrace"], optional = true }
sgx_types = { version = "1.1.2" }