wasmcloud-actor-telnet 0.2.0

Actor interface for the wasmCloud telnet capability provider
Documentation
.PHONY: all deps codegen build clean doc test

all: deps codegen build

deps:

codegen:
	wapc generate codegen.yaml

build:
	cargo build 	

# Rust builds accrue disk space over time (specifically the target directory),
# so running `make clean` should be done periodically.
clean:
	cargo clean
	rm -Rf build

doc:

test: build
	cargo test