-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 920 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "memory-indexer"
version = "0.3.1"
edition = "2024"
authors = ["DarkSky <darksky2048@gmail.com>"]
license = "AGPL-3.0-or-later"
include = ["src/**/*", "benches/**/*", "README.md"]
homepage = "https://github.com/darkskygit/memory-indexer"
repository = "https://github.com/darkskygit/memory-indexer"
keywords = ["search", "index", "in-memory", "full-text", "fuzzy"]
description = "An in-memory full-text fuzzy search indexer."
readme = "README.md"
[dependencies]
jieba-rs = "0.8"
once_cell = "1"
pinyin = { version = "0.11", features = ["heteronym"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
smol_str = { version = "0.3", features = ["serde"] }
strsim = "0.11"
unicode-normalization = "0.1"
unicode-script = "0.5"
[dev-dependencies]
bincode = { version = "2.0.1", features = ["serde"] }
criterion2 = "3"
tempfile = "3"
zstd = "0.13"
[[bench]]
name = "indexer"
harness = false