forked from antinomyhq/forgecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
111 lines (108 loc) · 3.29 KB
/
Cargo.toml
File metadata and controls
111 lines (108 loc) · 3.29 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
[workspace]
members = ["crates/*"]
resolver = "2"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true
[workspace.dependencies]
anyhow = "1.0.95"
async-recursion = "1.1.1"
async-trait = "0.1.86"
base64 = "0.22.1"
bytes = "1.10.0"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.23", features = ["derive"] }
colored = "3.0.0"
console = "0.15.7"
inquire = "0.6.2"
convert_case = "0.7.1"
derive_builder = "0.20.2"
derive_more = { version = "2.0.1", features = ["full"] }
derive_setters = "0.1.6"
dirs = "6.0.0"
dissimilar = "1.0.9"
dotenv = "0.15.0"
futures = "0.3.31"
gh-workflow-tailcall = "0.5.2"
glob = "0.3.2"
handlebars = { version = "6.2.0", features = ["rust-embed"] }
html2md = "0.2.15"
http = "1.2.0"
ignore = "0.4.23"
indexmap = "2.7.1"
insta = { version = "1.42.0", features = ["json"] }
lazy_static = "1.4.0"
machineid-rs = "1.2.4"
mockito = "1.6.1"
moka2 = "0.13"
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.40.0"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = [
"json",
"rustls-tls",
], 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.138"
serde_yml = "0.0.12"
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.98", features = ["full"] }
sysinfo = "0.33.1"
tempfile = "3.10.1"
termimad = "0.31.2"
thiserror = "2.0.11"
tokio = { version = "1.44.2", features = ["full", "test-util"] }
tokio-stream = "0.1.17"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
tree-sitter = "0.25.1"
tree-sitter-rust = "0.23"
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.23"
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.0"
uuid = { version = "1.11.0", features = [
"v4",
"fast-rng",
"macro-diagnostics",
"serde",
] }
whoami = "1.5.2"
fnv_rs = "0.4.3"
merge = { version = "0.1", features = ["derive"] }
rmcp = { git = "https://github.com/modelcontextprotocol/rust-sdk", rev = "3a97917cd7584c4220815194bcb28b648147a3d8", features = ["client", "transport-sse", "transport-child-process", "transport-sse-server"] }
# Internal crates
forge_api = { path = "crates/forge_api" }
forge_services = { path = "crates/forge_services" }
forge_display = { path = "crates/forge_display" }
forge_domain = { path = "crates/forge_domain" }
forge_infra = { path = "crates/forge_infra" }
forge_provider = { path = "crates/forge_provider" }
forge_stream = { path = "crates/forge_stream" }
forge_tool_macros = { path = "crates/forge_tool_macros" }
forge_tracker = { path = "crates/forge_tracker" }
forge_walker = { path = "crates/forge_walker" }
forge_fs = { path = "crates/forge_fs" }
forge_snaps = { path = "crates/forge_snaps" }
forge_spinner = { path = "crates/forge_spinner" }
forge_template = { path = "crates/forge_template" }