tracing-ndjson 0.2.0

A customizable ndjson formatter for outputting tracing events
Documentation
fmt:
	@cargo +nightly fmt || cargo fmt

build:
	@cargo build

clean: 
	@cargo clean

test:
	@cargo test -- --nocapture

lint: fmt
	@cargo clippy --all-targets -- -D warnings

git-hooks:
	@echo "Installing git hooks..."
	@cp -r .hooks/* .git/hooks/
	@chmod +x .git/hooks/*
	@echo "Done."