-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCargo.toml
More file actions
117 lines (114 loc) · 3 KB
/
Cargo.toml
File metadata and controls
117 lines (114 loc) · 3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[workspace]
members = [
"crates/core",
"crates/tools",
"crates/provider",
"crates/safety",
"crates/tasks",
"crates/mcp",
"crates/protocol",
"crates/client",
"crates/server",
"crates/tui",
"crates/utils",
"crates/cli",
"crates/arg0",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT"
rust-version = "1.85"
version = "0.1.9"
[workspace.dependencies]
ansi-to-tui = "7.0.0"
anyhow = "1"
arboard = { version = "3", features = ["wayland-data-control"] }
assert_matches = "1.5.0"
async-stream = "0.3"
async-trait = "0.1"
base64 = "0.22.1"
bytes = "1"
chrono = "0.4.43"
clap = { version = "4", features = ["derive"] }
colored = "2"
crossbeam-channel = "0.5.15"
crossterm = { version = "0.28", features = ["event-stream"] }
derive_more = "2"
devo-arg0 = { path = "crates/arg0" }
devo-client = { path = "crates/client" }
devo-core = { path = "crates/core" }
devo-file-search = { path = "crates/file-search" }
devo-mcp = { path = "crates/mcp" }
devo-protocol = { path = "crates/protocol" }
devo-provider = { path = "crates/provider" }
devo-safety = { path = "crates/safety" }
devo-server = { path = "crates/server" }
devo-tasks = { path = "crates/tasks" }
devo-tools = { path = "crates/tools" }
devo-tui = { path = "crates/tui" }
devo-utils = { path = "crates/utils" }
diffy = "0.4.2"
dirs = "6"
fs2 = "0.4"
futures = { version = "0.3", default-features = false }
glob = "0.3"
iana-time-zone = "0.1.65"
ignore = "0.4.23"
image = { version = "^0.25.9", default-features = false }
insta = "1.46.3"
itertools = "0.14.0"
lazy_static = "1"
libc = "0.2.182"
nucleo = { git = "https://github.com/helix-editor/nucleo.git", rev = "4253de9faabb4e5c6d81d946a5e35a90f87347ee" }
once_cell = "1.20.2"
pathdiff = "0.2"
pretty_assertions = "1.4.1"
pulldown-cmark = "0.10"
rand = "0.9"
ratatui = "0.29.0"
ratatui-macros = "0.6.0"
regex = "1"
regex-lite = "0.1.8"
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
"stream",
] }
reqwest-eventsource = "0.6"
rusqlite = { version = "0.33", features = ["bundled"] }
schemars = "0.8.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
shlex = "1.3.0"
smol_str = { version = "0.3", features = ["serde"] }
strum = "0.27.2"
strum_macros = "0.28.0"
supports-color = "3.0.2"
tempfile = "3.23.0"
textwrap = "0.16"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = "0.7.18"
toml = "0.8"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"fmt",
"json",
] }
tree-sitter = "0.25.10"
tree-sitter-bash = "0.25"
unicode-segmentation = "1.12.0"
unicode-width = "0.2"
url = "2"
urlencoding = "2.1"
uuid = { version = "1", features = ["serde", "v4", "v7"] }
vt100 = "0.16.2"
walkdir = "2.5.0"
which = "8"
[patch.crates-io]
crossterm = { git = "https://github.com/nornagon/crossterm", branch = "nornagon/color-query" }
ratatui = { git = "https://github.com/nornagon/ratatui", branch = "nornagon-v0.29.0-patch" }