sectxt 0.0.9

A tool for working with security.txt files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: test
test:
	cargo fmt -- --check
	cargo clippy --all-targets --all-features -- -D warnings
	cargo test --verbose

.PHONY: setup
setup:
	rustup update
	rustup component add clippy
	rustup component add rustfmt
	rustup show

.PHONY: publish
publish:
	cargo publish