allowlist-rs 0.1.0

Validate requests against a list of known IPv4 host addresses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
all: clean bench test build

clean:
	cargo clean

build:
	cargo build --release --benches --timings=html --jobs=4 -Zunstable-options

test:
	cargo test -- --test-threads 8

bench:
	cargo bench --timings=html --jobs=8 -Zunstable-options