-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (62 loc) · 1.77 KB
/
Cargo.toml
File metadata and controls
71 lines (62 loc) · 1.77 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "oramacore_lib"
version = "0.4.4"
edition = "2024"
license-file = "LICENSE.md"
description="Internal structures and utilities used by OramaCore. See orama.com for more details."
homepage="https://orama.com/"
repository="https://github.com/oramasearch/oramacore_lib"
[dependencies]
tracing = "0.1"
num = "0.4.3"
fixedbitset = "0.5.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1" }
atomic-write-file = "0.2.3"
rand = "0.9"
rayon = "1.5.1"
bincode = "1.3.3"
num-traits = "0.2.19"
fastbloom-rs = "0.5.9"
anyhow = "1.0.98"
futures = "0.3.31"
thiserror = "2.0.16"
rust-stemmers = "1.2.0"
regex = "1.11.1"
dashmap = { version = "6.1.0", features = ["rayon"] }
tiktoken-rs = "0.6.0"
text-splitter = { version = "0.22", features = ["tiktoken-rs", "markdown", "code"] }
tokio = { version = "1.46.1", features = ["full"] }
fst = { version = "0.4.7", features = ["levenshtein"] }
memmap = "0.7.0"
ordered-float = "4"
parking_lot = "0.12.3"
serde-big-array = "0.5.1"
oramacore_ptrie = { version = "0.1.0", features = ["serde"] }
debug_panic = "0.2.1"
tokio-util = { version = "0.7", features = ["io"] }
chrono = { version = "0.4" }
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-secretsmanager = "1"
async-trait = "0.1"
duration-str = "0.20.0"
redact = { version = "0.1", features = ["serde"] }
tempfile = { version = "3", optional = true }
pulp = "0.21.5"
[dev-dependencies]
tempfile = { version = "3" }
criterion = { version = "0.5.1", features = ["async_tokio"] }
rallo = { version = "0.5" }
approx = "0.5.1"
testcontainers = "0.27.0"
aws-credential-types = "1"
[features]
no_thread = []
generate_new_path = ["tempfile"]
track_allocations = []
[[bench]]
name = "simd_metrics"
harness = false
[[bench]]
name = "hnsw"
harness = false