wasmcloud-example-httpserver 0.1.1

wasmcloud HttpServer interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# http-server/rust/Makefile

.PHONY: all build release clean test

all: build

build:
	cargo build

release:
	cargo build --release

clean:
	cargo clean

test:
	cargo test