podman-api 0.10.0

Rust interface to Podman
Documentation
.PHONY: all
all: clean codegen lint test doc

.PHONY: doc
doc:
	cargo doc --no-deps

.PHONY: codegen
codegen:
	cd podman-api-stubs && ./build.sh

.PHONY: test
test:
	cargo test --all-targets --all-features
	cargo test --doc

.PHONY: lint
lint:
	cargo fmt -- --check
	cargo clippy --all-targets --all-features -- -Dclippy::all

.PHONY: clean
clean:
	rm -rf target podman-api-stubs/target