-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (92 loc) · 2.57 KB
/
Cargo.toml
File metadata and controls
107 lines (92 loc) · 2.57 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
[package]
name = "code-combo"
version.workspace = true
edition.workspace = true
[[bin]]
name = "coco"
path = "src/main.rs"
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
tokio = { version = "1.49.0", features = ["full"] }
tracing = "0.1.41"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = "1.0.143"
serde_yaml = "0.9.34"
snafu = "0.8.9"
ctor = "0.6.3"
bon = "3.8.2"
indoc = "2.0.6"
lazy_static = "1.5.0"
time = { version = "0.3.47" }
tempfile = "3.22.0"
tree-sitter = { version = "0.25" }
tree-sitter-md = { version = "0.5.3" }
futures-core = "0.3.32"
futures-util = "0.3.31"
tokio-util = "0.7.16"
clap = { version = "4.5.60", features = ["derive", "string"] }
nix = { version = "0.31.2", features = ["signal", "process"] }
# Core dependencies for CLI and application functionality
[dependencies]
# External API integration
anthropic = { path = "./crates/anthropic" }
openai = { path = "./crates/openai" }
# Datetime utilities
time.workspace = true
# Command line argument parsing
clap.workspace = true
# Serialization and data handling
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
toml = "0.9.5"
# Error handling
snafu.workspace = true
# Async runtime
tokio.workspace = true
tokio-util.workspace = true
async-trait = "0.1.89"
futures-core.workspace = true
futures-util.workspace = true
rmcp = { version = "0.17", features = [
"client",
"reqwest",
"transport-streamable-http-client-reqwest",
"transport-streamable-http-server",
"transport-child-process",
"tower",
"auth",
"base64",
"schemars",
"macros",
] }
schemars = "1.2.0"
# Logging and tracing
tracing.workspace = true
tracing-subscriber.workspace = true
# Other
lazy_static.workspace = true
indoc.workspace = true
similar = "2.7.0"
tempfile.workspace = true
tree-sitter.workspace = true
tree-sitter-bash = "0.25.0"
nix.workspace = true
[dev-dependencies]
ctor.workspace = true
uuid = { version = "1.11.0", features = ["v4"] }
which = "8.0"
hyper = { version = "1.7.0", features = ["server", "http1"] }
hyper-util = { version = "0.1.16", features = ["tokio", "service"] }
[build-dependencies]
time = { workspace = true, features = ["formatting"] }
[patch.crates-io]
tree-sitter-diff = { git = "https://github.com/tree-sitter-grammars/tree-sitter-diff.git", tag = "v0.1.0" }
tui-textarea = { git = "https://github.com/phsym/tui-textarea.git", rev = "e2ec4d37eb5d638a9a2237e0145bcf908494a329" }