[go: up one dir, main page]

sentry-types 0.7.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:
	@cargo fmt

format-check:
	@cargo fmt -- --check

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

.PHONY: all doc test cargotest format format-check lint