unicode-language 2.1.0

A library to detect language coverage given a list of codepoints.
Documentation
1
2
3
4
5
6
7
8
9
10
11
all: check test

check:
	cargo clippy --all-features -- -D warnings
	cargo fmt --all -- --check

test:
	cargo build
	cargo test --all-features

.PHONY: all check test