forked from 0xLazAI/alith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.18 KB
/
Cargo.toml
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
[workspace]
members = ["crates/*", "sdks/*"]
default-members = ["crates/alith"]
resolver = "2"
[workspace.dependencies]
alith = { path = "crates/alith" }
alith-core = { path = "crates/core" }
alith-knowledge = { path = "crates/knowledge" }
alith-store = { path = "crates/store" }
alith-inference = { path = "crates/inference" }
alith-tools = { path = "crates/tools" }
llm_client = { git = "https://github.com/0xLazAI/llm_client", version = "0.2.0" }
fastembed = { git = "https://github.com/Anush008/fastembed-rs", version = "4.4.0", default-features = false, features = ["ort-download-binaries", "hf-hub-rustls-tls"] }
uuid = { version = "1.13.2", features = ["serde", "v4"] }
async-trait = "0.1.84"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
tokio = { version = "1.43.0", features = ["full"] }
anyhow = "1.0.95"
thiserror = "2.0.11"
schemars = "0.8.21"
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls"] }
url = "2.5.4"
dagrs = "0.4.2"
[workspace.package]
version = "0.2.4"
edition = "2021"
rust-version = "1.84"
exclude = [".github/"]
[profile.release]
opt-level = 3
lto = true
strip = true
codegen-units = 1
rpath = true
panic = "unwind"