-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·73 lines (67 loc) · 1.73 KB
/
Copy pathCargo.toml
File metadata and controls
executable file
·73 lines (67 loc) · 1.73 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
72
73
# -----------------------------
# Top-level Cargo.toml (workspace)
# -----------------------------
[workspace]
members = [
"crates/build-info",
"crates/cli",
"crates/agent",
"crates/common",
"crates/sandbox",
"crates/backends/core",
"crates/backends/openai_like",
"crates/backends/ollama",
"crates/backends/lmstudio",
"crates/backends/llama-cpp",
"crates/backends/claude",
"crates/tools",
"crates/mcp-core",
"crates/mcp-tools",
"crates/mcp-server",
"crates/orchestration",
"crates/context-engine",
"devitd",
"devitd-client",
"crates/studio",
"crates/rag",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.1.0"
homepage = "https://getdevit.com/"
repository = "https://git.hdds.io/hdds/devit"
license = "Apache-2.0"
[workspace.dependencies]
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "gzip", "brotli", "stream", "rustls-tls"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "process", "fs", "net", "io-util", "io-std", "sync", "time"] }
tokio-stream = "0.1"
axum = "0.7"
tower = { version = "0.4", features = ["make", "util"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
futures-core = "0.3"
futures-util = "0.3"
hyper = "1"
ratatui = "0.28"
crossterm = "0.28"
async-trait = "0.1"
which = "6"
bytes = "1"
walkdir = "2"
sha2 = "0.10"
hex = "0.4"
hmac = "0.12"
rand = "0.8"
blake3 = "1.5"
regex = "1"
tempfile = "3"
shell-escape = "0.1"