summaryrefslogtreecommitdiffstats
path: root/vendor/sha1_smol/Makefile
blob: 256f7fb866bacecc6aafc86749bdfffc2d76896e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
build:
	@cargo build

watch:
	@cargo watch

watch-docs:
	@cargo watch build "doc --no-deps"

test:
	@cargo test --features=serde
	@cargo test --features=std
	@cargo test

docs: build
	@cargo doc --no-deps

.PHONY: build test docs