triples 0.2.5

A lib and cli for storing data triples
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: clippy-fixes clippy-strict

all: clippy-strict

clippy-strict:
	cargo clippy -- -W clippy::pedantic -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used -A clippy::module_name_repetitions -A clippy::needless_pass_by_value

test:
	cargo test

build:
	cargo build

clean:
	cargo clean