repro-env 0.3.3

Dependency lockfiles for reproducible build environments 📦🔒
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build:
	cargo run --release -- build -- make build2
	sha256sum target/x86_64-unknown-linux-musl/release/repro-env

build2:
	RUSTFLAGS="-C strip=symbols" \
	cargo build --target x86_64-unknown-linux-musl --release

docs: docs/repro-env.1

docs/%: docs/%.scd
	scdoc < $^ > $@

.PHONY: build build2 docs