psfparser 0.1.2

A PSF reader written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: lint lint-fix format test check

lint:
	cargo clippy --all-features --all-targets -- -D warnings

lint-fix:
	cargo clippy --fix --allow-staged --allow-dirty --all-features --all-targets
	cargo +nightly fmt --all

format:
	cargo +nightly fmt --all

test:
	cargo test --all-features

check:
	cargo check --all-features --all-targets