mrecordlog 0.4.0

Quickwit's shared record log.
Documentation
1
2
3
4
5
6
7
8
9
10
help:
	@grep '^[^\.#[:space:]].*:' Makefile

fmt:
	@echo "Formatting Rust files"
	@(rustup toolchain list | ( ! grep -q nightly && echo "Toolchain 'nightly' is not installed. Please install using 'rustup toolchain install nightly'.") ) || cargo +nightly fmt

fix: fmt
	@echo "Running cargo clippy --fix"
	cargo clippy --fix --all-features --allow-dirty --allow-staged