-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.37 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
[workspace]
resolver = "2"
members = [
"crates/terraphim_service",
"crates/terraphim_middleware",
"crates/terraphim_router",
"crates/terraphim_usage",
"crates/terraphim_ccusage",
"crates/terraphim_file_search",
"crates/haystack_core",
"crates/haystack_jmap",
"crates/haystack_grepapp",
"crates/terraphim-session-analyzer",
"crates/terraphim_spawner",
]
[workspace.package]
version = "1.20.3"
edition = "2024"
authors = ["Terraphim Team <team@terraphim.ai>"]
documentation = "https://terraphim.ai"
homepage = "https://terraphim.ai"
repository = "https://git.terraphim.cloud/terraphim/terraphim-service"
license = "Apache-2.0"
readme = "README.md"
[workspace.dependencies]
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.21", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
thiserror = "1.0"
anyhow = "1.0"
log = "0.4"
tracing = "0.1"
tempfile = "3.27"
rustls = { version = "0.23", default-features = false }
rustls-webpki = "0.103.12"
[patch.crates-io]
rustls-webpki = { git = "https://github.com/rustls/webpki.git", tag = "v/0.103.12" }
[profile.release]
panic = "unwind"
lto = false
codegen-units = 1
opt-level = 3