flv-tls-proxy 0.3.0

Simple Local TLS Proxy
Documentation

RUSTV = stable

build:
	cargo build --all

test-all:
	cargo test --all

install-fmt:
	rustup component add rustfmt --toolchain $(RUSTV)

check-fmt:
	cargo +$(RUSTV) fmt -- --check

install-clippy:
	rustup component add clippy --toolchain $(RUSTV)

check-clippy:	install-clippy
	cargo +$(RUSTV) clippy --all-targets --all-features -- -D warnings