-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (58 loc) · 1.71 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (58 loc) · 1.71 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
[workspace]
resolver = "2"
members = [
"crates/semquery-core",
"crates/semquery-model",
"crates/semquery-indexer",
"crates/semquery-storage",
"crates/semquery-retrieve",
"crates/semquery-synth",
"crates/semquery",
]
[workspace.package]
version = "0.3.0"
edition = "2024"
rust-version = "1.95"
[workspace.dependencies]
async-trait = "0.1"
thiserror = "1"
anyhow = "1"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
jieba-rs = "0.7"
tokenizers = "0.20"
fastembed = "5"
llama-cpp-2 = "0.1"
hf-hub = "0.3"
rusqlite = { version = "0.40", features = ["bundled"] }
sqlite-vec = "0.1"
glob = "0.3"
walkdir = "2"
sha2 = "0.10"
clap = { version = "4", features = ["derive"] }
rayon = "1"
serde_json = "1"
dirs = "5"
toml = "0.8"
log = "0.4"
flexi_logger = "0.29"
tokio-stream = "0.1"
regex = "1"
encoding_rs = "0.8"
pdf-extract = "0.12"
zip = "2"
quick-xml = "0.37"
tempfile = "3"
lopdf = "0.42"
semquery-core = { path = "crates/semquery-core", version = "0.3.0" }
semquery-model = { path = "crates/semquery-model", version = "0.3.0" }
semquery-indexer = { path = "crates/semquery-indexer", version = "0.3.0" }
semquery-storage = { path = "crates/semquery-storage", version = "0.3.0" }
semquery-retrieve = { path = "crates/semquery-retrieve", version = "0.3.0" }
semquery-synth = { path = "crates/semquery-synth", version = "0.3.0" }
# esaxx-rs 0.1.10 unconditionally forces /MT on Windows, which conflicts with
# other C/C++ dependencies (e.g. llama.cpp) that use /MD. Vendor a patched copy
# that uses the dynamic runtime on Windows so the linker can produce a binary.
[patch.crates-io]
esaxx-rs = { path = "vendor/esaxx-rs" }