Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 60 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


[workspace.package]
version = "0.1.0"

Check warning on line 7 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused field `version` in `workspace.package`
rust-version = "1.94"
edition = "2024"

Expand Down Expand Up @@ -39,7 +39,7 @@
enable-ansi-support = "0.3.1"
derive_setters = "0.1.9"
dirs = "6.0.0"
dissimilar = "1.0.9"

Check warning on line 42 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused workspace dependency `dissimilar`
dotenvy = "0.15.7"
futures = "0.3.32"
gh-workflow = "0.8.1"
Expand All @@ -59,7 +59,7 @@
mockito = "1.7.2"
nom = "8.0.0"
nu-ansi-term = "0.50.1"
posthog-rs = "0.22.0"

Check warning on line 62 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused workspace dependency `posthog-rs`
pretty_assertions = "1.4.1"
proc-macro2 = "1.0"
quote = "1.0"
Expand Down Expand Up @@ -101,7 +101,7 @@
"io-util",
] }
tokio-stream = "0.1.18"
tokio-util = "0.7"

Check warning on line 104 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused workspace dependency `tokio-util`
tonic = { version = "0.14.5", features = ["tls-webpki-roots"] }
tracing = "0.1.44"
tracing-appender = "0.2.3"
Expand All @@ -110,7 +110,7 @@
terminal_size = "0.4"
unicode-width = "0.2"
backon = "1.5.2"
eserde = "0.1.7"

Check warning on line 113 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused workspace dependency `eserde`
uuid = { version = "1.23.0", features = [
"v4",
"fast-rng",
Expand All @@ -120,7 +120,7 @@
fnv_rs = "0.4.3"
merge = { version = "0.2", features = ["derive"] }
hex = "0.4.3"
rmcp = { version = "1.0.0", features = [
rmcp = { version = "3.0.0", features = [
"client",
"transport-child-process",
"transport-streamable-http-client-reqwest",
Expand All @@ -141,13 +141,13 @@
forge_embed = { path = "crates/forge_embed" }
forge_api = { path = "crates/forge_api" }
forge_app = { path = "crates/forge_app" }
forge_ci = { path = "crates/forge_ci" }

Check warning on line 144 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused workspace dependency `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_repo = { path = "crates/forge_repo" }
forge_main = { path = "crates/forge_main" }

Check warning on line 150 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Lint Fix

unused workspace dependency `forge_main`
forge_services = { path = "crates/forge_services" }
forge_snaps = { path = "crates/forge_snaps" }
forge_spinner = { path = "crates/forge_spinner" }
Expand Down
Loading