iword-rs 0.1.11

High-speed keyword search — Rust implementation of iWord
Documentation
.PHONY: all build release test bench check lint doc example examples wasm clean

all: build

build:
	cargo build

release:
	cargo build --release

test:
	cargo test

bench:
	cargo bench

check:
	cargo check

lint:
	cargo clippy -- -D warnings

doc:
	cargo doc --no-deps --open

example:
	cargo run --example basic

examples:
	cargo run --example basic
	cargo run --example action_filter
	cargo run --example multi_dict

wasm:
	wasm-pack build --target web --features wasm

clean:
	cargo clean
	rm -rf pkg/