blob: 2d0029de619ddf7ae8cee0aa767809e2ce063adf [file] [log] [blame]
[package]
name = "teaclave_access_control_service_enclave"
version = "0.2.0"
authors = ["Teaclave Contributors <dev@teaclave.apache.org>"]
description = "Teaclave Access Control Service enclave"
license = "Apache-2.0"
edition = "2018"
[lib]
name = "teaclave_access_control_service_enclave"
crate-type = ["staticlib", "rlib"]
[features]
default = []
mesalock_sgx = [
"sgx_tstd",
"teaclave_attestation/mesalock_sgx",
"teaclave_proto/mesalock_sgx",
"teaclave_binder/mesalock_sgx",
"teaclave_rpc/mesalock_sgx",
"teaclave_service_enclave_utils/mesalock_sgx",
"teaclave_types/mesalock_sgx",
"teaclave_config/mesalock_sgx",
"teaclave_config/build_config",
]
cov = ["teaclave_service_enclave_utils/cov"]
enclave_unit_test = ["teaclave_binder/enclave_unit_test", "teaclave_test_utils/mesalock_sgx"]
[dependencies]
anyhow = { version = "1.0.26" }
cfg-if = { version = "0.1.9" }
log = { version = "0.4.6", features = ["release_max_level_info"] }
serde = { version = "1.0.92" }
serde_json = { version = "1.0.39" }
thiserror = { version = "1.0.9" }
ring = { version = "0.16.5" }
rand = { version = "0.7.0" }
teaclave_attestation = { path = "../../../attestation" }
teaclave_config = { path = "../../../config" }
teaclave_proto = { path = "../../proto" }
teaclave_binder = { path = "../../../binder" }
teaclave_rpc = { path = "../../../rpc" }
teaclave_service_enclave_utils = { path = "../../utils/service_enclave_utils" }
teaclave_types = { path = "../../../types" }
teaclave_test_utils = { path = "../../../tests/utils", optional = true }
sgx_tstd = { version = "1.1.2", features = ["net", "thread", "backtrace"], optional = true }
sgx_types = { version = "1.1.2" }