dictutils 0.1.2

Dictionary utilities for Mdict and other formats
Documentation
[dependencies.bincode]
version = "1.3"

[dependencies.clap]
optional = true
version = "4.0"

[dependencies.crc32fast]
version = "1.3"

[dependencies.crossbeam]
version = "0.8"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.flate2]
version = "1.0"

[dependencies.fst]
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.lru-cache]
version = "0.1"

[dependencies.lz4_flex]
version = "0.11"

[dependencies.memmap2]
version = "0.9"

[dependencies.minilzo-rs]
version = "0.6.1"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
optional = true
version = "1.10"

[dependencies.regex]
version = "1.0"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.sysinfo]
version = "0.30"

[dependencies.tantivy]
version = "0.19"

[dependencies.tempfile]
version = "3.10"

[dependencies.xxhash-rust]
features = ["xxh64"]
version = "0.8"

[dependencies.zstd]
version = "0.13"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.proptest]
version = "1.0"

[[example]]
name = "basic_dict_loading"
path = "examples/basic_dict_loading.rs"

[[example]]
name = "dict_search_operations"
path = "examples/dict_search_operations.rs"

[features]
cli = ["clap"]
default = []
high_performance = ["rayon"]
rayon = ["dep:rayon"]

[lib]
name = "dictutils"
path = "src/lib.rs"

[package]
authors = ["SuperKevinZhou <zzh__2020@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "compression", "data-structures"]
description = "Dictionary utilities for Mdict and other formats"
edition = "2024"
homepage = "https://github.com/SuperKevinZhou/dictutils"
keywords = ["dictionary", "mdict", "linguistics", "text-processing"]
license = "MIT"
name = "dictutils"
readme = "README.md"
repository = "https://github.com/SuperKevinZhou/dictutils"
version = "0.1.2"

[[test]]
name = "test_mdx_fix"
path = "tests/test_mdx_fix.rs"