This is an automated email from the ASF dual-hosted git repository.
msciabarra pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-rust.git.
from 36b4930 first commit
new 340ca11 action compiler
new c3a89e1 reworked the source generation
new 253b03a fixed compilation
new eaa26f0 hello demo working
The 5 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:
README.md | 15 +++++
example/hello/.gitignore | 45 ++++++++++++++
example/hello/Cargo.toml | 8 +++
example/hello/src/lib.rs | 16 +++++
rust1.32/Dockerfile | 26 +++++++++
rust1.32/Makefile | 15 +++++
rust1.32/compile | 110 +++++++++++++++++++++++++++++++++++
rust1.32/src/Cargo.lock | 52 +++++++++++++++++
rust1.32/src/Cargo.toml | 6 ++
rust1.32/src/action_loop/Cargo.toml | 9 +++
rust1.32/src/action_loop/src/main.rs | 50 ++++++++++++++++
rust1.32/src/actions/.gitignore | 3 +
rust1.32/src/actions/Cargo.toml | 8 +++
rust1.32/src/actions/src/lib.rs | 10 ++++
14 files changed, 373 insertions(+)
create mode 100644 example/hello/.gitignore
create mode 100644 example/hello/Cargo.toml
create mode 100644 example/hello/src/lib.rs
create mode 100644 rust1.32/Dockerfile
create mode 100644 rust1.32/Makefile
create mode 100755 rust1.32/compile
create mode 100644 rust1.32/src/Cargo.lock
create mode 100644 rust1.32/src/Cargo.toml
create mode 100644 rust1.32/src/action_loop/Cargo.toml
create mode 100644 rust1.32/src/action_loop/src/main.rs
create mode 100644 rust1.32/src/actions/.gitignore
create mode 100644 rust1.32/src/actions/Cargo.toml
create mode 100644 rust1.32/src/actions/src/lib.rs