[package]
edition = "2024"
rust-version = "1.95"
name = "inputx-fsa"
version = "1.4.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal acyclic finite-state automaton — a compact, zero-dependency ordered byte-key → u64 map with prefix/range scan. Built for the Inputx IME's dictionaries (clean-room replacement for the `fst` crate's read+build path)."
homepage = "https://github.com/goliajp/inputx"
readme = "README.md"
keywords = [
"fst",
"dawg",
"trie",
"map",
"perfect-hash",
]
categories = [
"data-structures",
"compression",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/goliajp/inputx"
resolver = "2"
[features]
default = ["std"]
std = []
[lib]
name = "inputx_fsa"
crate-type = ["rlib"]
path = "src/lib.rs"
[[example]]
name = "build_and_lookup"
path = "examples/build_and_lookup.rs"
[[example]]
name = "prefix_scan"
path = "examples/prefix_scan.rs"
[[example]]
name = "range_iter"
path = "examples/range_iter.rs"
[[bench]]
name = "compare"
path = "benches/compare.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"