wasmcloud-example-httpserver 0.1.2

wasmcloud HttpServer interface
Documentation
# 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