samsa 0.1.7

Rust-native Kafka/Redpanda protocol and client implementation.
.PHONY: build
build:
	cargo build --all --examples --all-features


.PHONY: check
check:
	cargo clippy -- --no-deps -D warnings
	cargo test --tests --all-features -- --show-output --test-threads=1


.PHONY: bench
bench:
	cargo bench


.PHONY: fmt
fmt:
	cargo fmt --all


.PHONY: clean
clean:
	cargo clean


.PHONY: outdated
outdated:
	cargo install --locked cargo-outdated
	cargo outdated -R