debugid 0.1.0

Common reusable types for implementing the sentry.io protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: test

build:
	@cargo build --all

doc:
	@cargo doc

test: cargotest

cargotest:
	@cargo test --all

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

.PHONY: all doc test cargotest format-check