[package]
name = "aesm-client"
version = "0.6.2"
authors = ["Fortanix, Inc."]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
RPC client for Intel SGX AESM (Architectural Enclave Service Manager).
With this client, applications can obtain launch tokens for enclaves and turn
attestation reports into quotes.
"""
homepage = "https://edp.fortanix.com/"
documentation = "https://edp.fortanix.com/docs/api/aesm_client/"
readme = false
keywords = [
"sgx",
"enclave",
"psw",
"aesm",
"aesmd",
]
categories = ["api-bindings"]
license = "MPL-2.0"
repository = "https://github.com/fortanix/rust-sgx"
resolver = "2"
[features]
test-sgx = []
[lib]
name = "aesm_client"
path = "src/lib.rs"
[[test]]
name = "live_quote"
path = "tests/live_quote.rs"
required-features = [
"test-sgx",
"sgxs",
]
[dependencies.anyhow]
version = "1.0"
[dependencies.byteorder]
version = "1.0"
[dependencies.lazy_static]
version = "1"
[dependencies.protobuf]
version = "3"
[dependencies.sgx-isa]
version = ">=0.4.1, <0.6.0"
[dependencies.sgxs]
version = "0.8.0"
optional = true
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.report-test]
version = "0.5.0"
[dev-dependencies.sgx-isa]
version = ">=0.4.1, <0.6.0"
[dev-dependencies.sgxs-loaders]
version = "0.5.0"
[build-dependencies.protobuf-codegen]
version = "3"
[target."cfg(unix)".dependencies.unix_socket2]
version = "0.5.4"
[target."cfg(windows)".dependencies.libloading]
version = "0.5.2"
[target."cfg(windows)".dependencies.winapi]
version = "0.3.7"
features = [
"combaseapi",
"enclaveapi",
"memoryapi",
"objbase",
]