sentry-types 0.6.1

Common reusable types for implementing the sentry.io protocol.
Documentation
all: test

build:
	@cargo build --all-features

doc:
	@cargo doc

test: cargotest

cargotest:
	@cargo test --all-features

format-check:
	@cargo fmt -- --write-mode diff

lint:
	@cargo +nightly clippy --all-features -- -D clippy

.PHONY: all doc test cargotest format-check lint