forked from tailcallhq/forgecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
141 lines (137 loc) · 3.79 KB
/
Copy pathCargo.toml
File metadata and controls
141 lines (137 loc) · 3.79 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
[workspace]
members = ["crates/*"]
resolver = "2"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true
[workspace.dependencies]
anyhow = "1.0.99"
async-recursion = "1.1.1"
async-trait = "0.1.89"
base64 = "0.22.1"
bytes = "1.10.0"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.45", features = ["derive"] }
colored = "3.0.0"
console = "0.16.0"
dialoguer = { version = "0.12.0", features = ["fuzzy-select"] }
convert_case = "0.8.0"
derive_more = { version = "2.0.1", features = ["from", "display", "debug"] }
derive_setters = "0.1.6"
dirs = "6.0.0"
dissimilar = "1.0.9"
dotenvy = "0.15.7"
futures = "0.3.31"
gh-workflow = "0.8.0"
glob = "0.3.3"
globset = "0.4.15"
grep-searcher = "0.1.14"
grep-regex = "0.1.13"
handlebars = { version = "6.2.0", features = ["rust-embed"] }
html2md = "0.2.15"
http = "1.2.0"
ignore = "0.4.23"
is_ci = "1.2.0"
indexmap = "2.11.0"
insta = { version = "1.42.0", features = ["json", "yaml"] }
lazy_static = "1.4.0"
machineid-rs = "1.2.4"
mockito = "1.6.1"
nom = "8.0.0"
nu-ansi-term = "0.50.1"
posthog-rs = { git = "https://github.com/PostHog/posthog-rs.git", rev = "a006a81419031e4889d9c3882d7458d2efa588a8" }
pretty_assertions = "1.4.1"
proc-macro2 = "1.0"
quote = "1.0"
reedline = "0.42.0"
regex = "1.11.2"
reqwest = { version = "0.12.23", features = [
"json",
"rustls-tls",
"hickory-dns",
"http2",
], default-features = false }
reqwest-eventsource = "0.6.0"
rust-embed = "8.5.0"
schemars = "0.8.21"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.143"
serde_yml = "0.0.12"
sha2 = "0.10"
similar = { version = "2.4", features = ["inline"] }
strip-ansi-escapes = "0.2.1"
strum = "0.27.1"
strum_macros = "0.27.1"
syn = { version = "2.0.106", features = ["derive", "parsing"] }
sysinfo = "0.36.1"
tempfile = "3.21.0"
termimad = "0.33.0"
thiserror = "2.0.16"
tokio = { version = "1.47.1", features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
"process",
"signal",
"io-util",
] }
tokio-stream = "0.1.17"
tokio-util = "0.7"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
tree-sitter = "0.25.1"
tree-sitter-rust = "0.24"
tree-sitter-python = "0.23"
tree-sitter-typescript = { version = "0.23" }
tree-sitter-css = "0.23"
tree-sitter-java = "0.23"
tree-sitter-scala = "0.24"
tree-sitter-go = "0.23"
tree-sitter-cpp = "0.23"
tree-sitter-ruby = "0.23"
url = { version = "2.5.4", features = ["serde"] }
backon = "1.5.2"
eserde = "0.1.7"
uuid = { version = "1.18.0", features = [
"v4",
"fast-rng",
"serde",
] }
whoami = "1.6.1"
fnv_rs = "0.4.3"
merge = { version = "0.2", features = ["derive"] }
rmcp = { version = "0.8.1", features = [
"client",
"transport-sse-client-reqwest",
"transport-child-process",
] }
open = "5.3.2"
nucleo = "0.5.0"
gray_matter = "0.3.2"
num-format = "0.4"
humantime = "2.1.0"
# Internal crates
forge_api = { path = "crates/forge_api" }
forge_app = { path = "crates/forge_app" }
forge_ci = { path = "crates/forge_ci" }
forge_display = { path = "crates/forge_display" }
forge_domain = { path = "crates/forge_domain" }
forge_fs = { path = "crates/forge_fs" }
forge_infra = { path = "crates/forge_infra" }
forge_inte = { path = "crates/forge_inte" }
forge_main = { path = "crates/forge_main" }
forge_services = { path = "crates/forge_services" }
forge_snaps = { path = "crates/forge_snaps" }
forge_spinner = { path = "crates/forge_spinner" }
forge_stream = { path = "crates/forge_stream" }
forge_template = { path = "crates/forge_template" }
forge_tool_macros = { path = "crates/forge_tool_macros" }
forge_tracker = { path = "crates/forge_tracker" }
forge_walker = { path = "crates/forge_walker" }
forge_json_repair = { path = "crates/forge_json_repair" }
forge_select = { path = "crates/forge_select" }