opentelemetry-log 0.2.0

A common library for OpenTelemetry logging in Rust.
Documentation
CC=cargo
FMT=fmt

OPTIONS=

default: fmt
	$(CC) build
	@make clippy

fmt:
	$(CC) fmt --all

check:
	$(CC) test --all

example:
	@echo "No example for the moment"

clean:
	$(CC) clean

clippy:
	$(CC) clippy --all --tests

coffee:
	$(CC) build --release