From 656c03609a2ba480dc88b28ade288b33a4b3a26b Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Tue, 29 Aug 2023 17:01:29 +0100 Subject: examples/rust: Add a minimal hello world rust example This is about the smallest it can be. Its Unit application config would look like "applications": { "rust-hello-world": { "type": "wasm", "module": "/path/to/unit-wasm/examples/rust/hello-world/target/wasm32-wasi/debug/rust_hello_world.wasm", "request_handler": "uwr_request_handler", "malloc_handler": "luw_malloc_handler", "free_handler": "luw_free_handler" } } Signed-off-by: Andrew Clayton --- examples/rust/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'examples/rust/Makefile') diff --git a/examples/rust/Makefile b/examples/rust/Makefile index b41bc33..3d645fa 100644 --- a/examples/rust/Makefile +++ b/examples/rust/Makefile @@ -2,7 +2,7 @@ include ../../shared.mk SDIR = examples/rust -examples: rust-echo-request rust-upload-reflector +examples: rust-echo-request rust-upload-reflector hello-world rust-echo-request: echo-request/Cargo.toml echo-request/src/lib.rs $(PP_GEN) $(SDIR)/echo-request/target/wasm32-wasi/ @@ -12,6 +12,10 @@ rust-upload-reflector: upload-reflector/Cargo.toml upload-reflector/src/lib.rs $(PP_GEN) $(SDIR)/upload-reflector/target/wasm32-wasi/ $(v)cd upload-reflector; cargo build --target=wasm32-wasi +hello-world: hello-world/Cargo.toml hello-world/src/lib.rs + $(PP_GEN) $(SDIR)/hello-world/target/wasm32-wasi/ + $(v)cd hello-world; cargo build --target=wasm32-wasi + clean: - rm -f echo-request/Cargo.lock upload-reflector/Cargo.lock - rm -rf echo-request/target upload-reflector/target + rm -f */Cargo.lock + rm -rf */target -- cgit