symbolic 5.5.3

A library to symbolicate and process stack traces from native applications, minidumps, minified JavaScripts or ProGuard optimized Android apps.
all: test
.PHONY: all

build:
	@cargo build --all --all-features
.PHONY: build

test: styletest cargotest pytest lint
.PHONY: test

styletest:
	@rustup component add rustfmt-preview 2> /dev/null
	@cargo fmt -- --check
.PHONY: styletest

cargotest: build
	cargo test --all --all-features
.PHONY: cargotest

virtualenv:
	@which virtualenv || sudo easy_install virtualenv
	@virtualenv virtualenv
.PHONY: virtualenv

pytest: virtualenv
	@. virtualenv/bin/activate                      ;\
	which pytest || pip install pytest > /dev/null  ;\
	pip install -v --editable py && pytest -v py
.PHONY: pytest

wheel: virtualenv
	@. virtualenv/bin/activate                      ;\
	cd py && python setup.py bdist_wheel
.PHONY: wheel

sdist: virtualenv
	@. virtualenv/bin/activate                      ;\
	cd py && python setup.py sdist --format=zip
.PHONY: sdist

format:
	@rustup component add rustfmt-preview 2> /dev/null
	@cargo fmt
.PHONY: format

lint:
	@rustup component add clippy-preview 2> /dev/null
	@cargo clippy --all-features --tests --all --examples -- -D clippy
.PHONY: lint

wheel-manylinux:
	docker run --rm -it -v $(CURDIR):/work -w /work/py $(IMAGE) sh manylinux.sh
.PHONY: wheel-manylinux