[package]
edition = "2024"
rust-version = "1.95"
name = "inputx-dict-format"
version = "1.4.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "IDFv1 binary dict format for IME engines — mmap zero-copy reader + deterministic writer. Probability-native (log_prior in Q4 fixed-point), versioned, sha256-verified. Shared format across pinyin / wubi / Japanese / Korean / Vietnamese / any code-to-word IME."
homepage = "https://github.com/goliajp/inputx"
readme = "README.md"
keywords = [
"ime",
"dict",
"mmap",
"binary-format",
"lookup",
]
categories = [
"data-structures",
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/goliajp/inputx"
resolver = "2"
[features]
default = ["std"]
std = []
[lib]
name = "inputx_dict_format"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies.inputx-fsa]
version = "1.3"
default-features = false
[dependencies.inputx-scoring]
version = "1.4"
[dependencies.memmap2]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dev-dependencies.tempfile]
version = "3"