mail-server/crates/nlp/Cargo.toml
2025-07-27 12:36:11 +02:00

30 lines
665 B
TOML

[package]
name = "nlp"
version = "0.13.2"
edition = "2024"
resolver = "2"
[dependencies]
utils = { path = "../utils" }
xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
farmhash = "1.1.5"
siphasher = "1.0"
serde = { version = "1.0", features = ["derive"]}
nohash = "0.2.0"
ahash = { version = "0.8.3", features = ["serde"] }
whatlang = "0.16" # Language detection
rust-stemmers = "1.2" # Stemmers
jieba-rs = "0.7" # Chinese stemmer
lru-cache = "0.1.2"
parking_lot = "0.12.1"
psl = "2"
radix_trie = "0.2.1"
maplit = "1.0.2"
hashify = "0.2.1"
[features]
test_mode = []
[dev-dependencies]
tokio = { version = "1.45", features = ["full"] }
bincode = "1.3.3"