This is an automated email from the ASF dual-hosted git repository.
hsun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave.git
from 443ca539 Bump version to 0.6.0
new d8e38dce Fix deserializing function parameters of the rust SDK
new 229c09f2 Add function builtin-ordered-set-join
new 42e74ae7 Add an example calling functions sequentially
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.licenserc.yaml | 1 +
cmake/scripts/test.sh | 3 +
cmake/tomls/Cargo.sgx_trusted_lib.lock | 60 ++--
cmake/tomls/Cargo.sgx_trusted_lib.toml | 1 +
cmake/tomls/Cargo.sgx_untrusted_app.lock | 22 ++
config/Cargo.lock | 156 +++++++++
.../rust/sequential_functions}/Cargo.lock | 220 +++++-------
.../Cargo.toml | 11 +-
examples/rust/sequential_functions/src/main.rs | 380 +++++++++++++++++++++
executor/Cargo.toml | 2 +
executor/src/builtin.rs | 4 +-
executor/src/wamr.rs | 4 +-
function/Cargo.toml | 1 +
function/README.md | 3 +
function/src/lib.rs | 3 +
function/src/ordered_set_join.rs | 190 +++++++++++
sdk/c/teaclave_client_sdk.h | 52 +++
sdk/python/teaclave.py | 50 +++
sdk/rust/src/bindings.rs | 10 +
sdk/rust/src/lib.rs | 62 +++-
services/management/enclave/src/lib.rs | 1 +
services/management/enclave/src/service.rs | 69 ++++
.../fixtures/functions/ordered_set_join/join0.csv | 120 +++++++
.../functions/ordered_set_join/join0.csv.enc | Bin 0 -> 4096 bytes
.../fixtures/functions/ordered_set_join/join1.csv | 125 +++++++
.../functions/ordered_set_join/join1.csv.enc | Bin 0 -> 4096 bytes
types/src/function.rs | 3 +
types/src/staged_function.rs | 15 +-
28 files changed, 1390 insertions(+), 178 deletions(-)
create mode 100644 config/Cargo.lock
copy {sdk/rust => examples/rust/sequential_functions}/Cargo.lock (87%)
copy examples/rust/{builtin_echo => sequential_functions}/Cargo.toml (78%)
create mode 100644 examples/rust/sequential_functions/src/main.rs
create mode 100644 function/src/ordered_set_join.rs
create mode 100644 tests/fixtures/functions/ordered_set_join/join0.csv
create mode 100644 tests/fixtures/functions/ordered_set_join/join0.csv.enc
create mode 100644 tests/fixtures/functions/ordered_set_join/join1.csv
create mode 100644 tests/fixtures/functions/ordered_set_join/join1.csv.enc
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]