This is an automated email from the ASF dual-hosted git repository. hsun pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-teaclave.git
commit 98c6888fa48b385b82bae34f7ab780371fa83c9c Author: sunhe05 <[email protected]> AuthorDate: Thu Jun 15 06:11:28 2023 +0000 Minor Fixes 1. Fix README 2. Update the vulnerable image crate --- README.md | 2 +- docs/README.md | 4 ++-- examples/python/wasm_tvm_mnist_payload/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9c270907..0d81855e 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ platform, making computation on privacy-sensitive data safe and simple. - [How to Add Built-in Functions](docs/builtin-functions.md) - [Deploying Teaclave on Azure Confidential Computing VM](docs/azure-confidential-computing.md) - [Executing WebAssembly in Teaclave](docs/executing-wasm.md) -- [Inference Task with TVM in Teaclave](docs/inference-with-tvm.md) +- [Running LibOS in Teaclave](docs/executing-in-occlum.md) ### Design diff --git a/docs/README.md b/docs/README.md index 09ded691..f3e4fdb6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -45,7 +45,7 @@ permalink: /docs/ - [Executor Runtime](../runtime/README.md) - [File Agent](../file_agent/README.md) - [Function Executors](../executor/README.md) -- [Keys and Certificates](../keys/README.md) +- [Logger](../logger/README.md) - [RPC](../rpc/README.md) - [Teaclave Services](../services/README.md) - [Teaclave Worker](../worker/README.md) @@ -56,7 +56,7 @@ permalink: /docs/ ## API References -- [Teaclave SGX SDK](https://teaclave.apache.org/docs/sgx-sdk/) +- [Teaclave SGX SDK](https://teaclave.apache.org/api-docs/sgx-sdk/) - [Teaclave Client SDK (Python)](https://teaclave.apache.org/docs/client-sdk-python/) - [Crates in Teaclave (Enclave)](https://teaclave.apache.org/docs/crates-enclave/) - [Crates in Teaclave (App)](https://teaclave.apache.org/docs/crates-app/) diff --git a/examples/python/wasm_tvm_mnist_payload/Cargo.toml b/examples/python/wasm_tvm_mnist_payload/Cargo.toml index aada7afd..efb3abb9 100644 --- a/examples/python/wasm_tvm_mnist_payload/Cargo.toml +++ b/examples/python/wasm_tvm_mnist_payload/Cargo.toml @@ -30,7 +30,7 @@ crate-type = ['cdylib'] [dependencies] teaclave_context = {path = "../../../sdk/payload/wasm/teaclave_context/"} -image = "0.20" +image = "0.24" ndarray = "0.12" csv = "1.1" tvm-sys = { path = "/tvm/rust/tvm-sys" } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
