-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (41 loc) · 1.21 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
[workspace]
resolver = "3"
members = ["kqs", "kq-core", "kq-embeddings", "kq-llm", "kq-config"]
[workspace.package]
edition = "2024"
version = "0.1.2"
authors = ["kq team"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bimawa/KnowledgeQuery"
rust-version = "1.85"
[workspace.dependencies]
clap = { version = "4", features = ["derive"] }
git2 = "0.19"
notify = "7"
rusqlite = { version = "0.32", features = ["bundled", "vtab"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
candle-core = "0.8"
candle-nn = "0.8"
candle-transformers = "0.8"
hf-hub = "0.4"
tokenizers = "0.21"
sqlite-vec = "0.1"
anyhow = "1"
thiserror = "2"
chrono = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
dirs = "6"
tempfile = "3"
serde_yaml = "0.9"
tokio-stream = "0.1"
regex = "1"
async-trait = "0.1"
# Internal crates: version + path so `cargo publish` resolves them on crates.io
kq-config = { version = "0.1.0", path = "kq-config" }
kq-llm = { version = "0.1.0", path = "kq-llm" }
kq-embeddings = { version = "0.1.0", path = "kq-embeddings" }
kq-core = { version = "0.1.0", path = "kq-core" }