forked from turbopuffer/alyze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 883 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 883 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 = "alyze"
version = "0.1.5"
edition = "2024"
rust-version = "1.85"
description = "High-performance text analysis for full-text search"
license = "MIT"
repository = "https://github.com/turbopuffer/alyze"
keywords = ["tokenizer", "unicode", "segmentation", "analysis", "nlp"]
categories = ["text-processing", "internationalization"]
exclude = ["testdata/", "benches/"]
# `alyze-features` is a separate, Apache-2.0 crate (the rest of `alyze` is MIT). It is a workspace
# member, lives in this repo, and is not published.
[workspace]
members = ["wasm", "alyze-features"]
[dependencies]
ahash = "0.8.12"
phf = { version = "0.13.1", features = ["macros"] }
rust-stemmers = "1.2.0"
tpuf_icu_properties_211 = "7"
[dev-dependencies]
criterion = "0.8.2"
itertools = "0.14.0"
parquet = "57.3.0"
tempfile = "3.25.0"
ureq = "3.2.0"
[[bench]]
name = "wikipedia"
harness = false