shelly-cli 0.1.2

CLI for managing and controlling Shelly devices
.PHONY: build release test lint fmt fmt-check clean install

build:
	cargo build

release:
	cargo build --release

test:
	cargo test

lint:
	cargo clippy -- -D warnings

fmt:
	cargo fmt

fmt-check:
	cargo fmt --check

clean:
	cargo clean

install:
	cargo install --path .