chore: remove unused dependencies in cargo.toml (#6561)

Signed-off-by: lsytj0413 <511121939@qq.com>
This commit is contained in:
Songlin Yang
2026-01-19 13:05:18 +08:00
committed by GitHub
parent 73a878821d
commit 63bf8eb439
4 changed files with 0 additions and 27 deletions
Generated
-11
View File
@@ -3067,7 +3067,6 @@ dependencies = [
"fs-err", "fs-err",
"futures", "futures",
"goose", "goose",
"goose-mcp",
"regex", "regex",
"rmcp 0.13.0", "rmcp 0.13.0",
"sacp", "sacp",
@@ -3160,22 +3159,16 @@ name = "goose-mcp"
version = "1.20.0" version = "1.20.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait",
"base64 0.21.7", "base64 0.21.7",
"chrono", "chrono",
"clap",
"colored", "colored",
"devgen-tree-sitter-swift", "devgen-tree-sitter-swift",
"docx-rs", "docx-rs",
"etcetera 0.11.0", "etcetera 0.11.0",
"glob",
"http-body-util",
"ignore", "ignore",
"image 0.24.9", "image 0.24.9",
"include_dir", "include_dir",
"indoc", "indoc",
"keyring",
"lazy_static",
"libc", "libc",
"lopdf", "lopdf",
"lru", "lru",
@@ -3193,7 +3186,6 @@ dependencies = [
"sysinfo 0.32.1", "sysinfo 0.32.1",
"temp-env", "temp-env",
"tempfile", "tempfile",
"thiserror 1.0.69",
"tokio", "tokio",
"tokio-stream", "tokio-stream",
"tokio-util", "tokio-util",
@@ -3211,7 +3203,6 @@ dependencies = [
"umya-spreadsheet", "umya-spreadsheet",
"url", "url",
"utoipa", "utoipa",
"webbrowser",
"which 8.0.0", "which 8.0.0",
"xcap", "xcap",
] ]
@@ -3239,7 +3230,6 @@ dependencies = [
"reqwest 0.12.28", "reqwest 0.12.28",
"rmcp 0.13.0", "rmcp 0.13.0",
"rustls 0.23.31", "rustls 0.23.31",
"schemars",
"serde", "serde",
"serde_json", "serde_json",
"serde_path_to_error", "serde_path_to_error",
@@ -3258,7 +3248,6 @@ dependencies = [
"tracing-subscriber", "tracing-subscriber",
"url", "url",
"utoipa", "utoipa",
"uuid",
"winreg 0.55.0", "winreg 0.55.0",
"wiremock", "wiremock",
] ]
-1
View File
@@ -12,7 +12,6 @@ workspace = true
[dependencies] [dependencies]
goose = { path = "../goose" } goose = { path = "../goose" }
goose-mcp = { path = "../goose-mcp" }
rmcp = { workspace = true } rmcp = { workspace = true }
sacp = "10.1.0" sacp = "10.1.0"
anyhow = { workspace = true } anyhow = { workspace = true }
-13
View File
@@ -20,11 +20,9 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2" tracing-appender = "0.2"
url = "2.5" url = "2.5"
base64 = "0.21" base64 = "0.21"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = { workspace = true } serde_json = { workspace = true }
schemars = "1.0" schemars = "1.0"
lazy_static = "1.5"
shellexpand = "3.1.0" shellexpand = "3.1.0"
indoc = "2.0.5" indoc = "2.0.5"
xcap = "=0.4.0" xcap = "=0.4.0"
@@ -32,13 +30,10 @@ reqwest = { version = "0.11", features = [
"json", "json",
"rustls-tls-native-roots", "rustls-tls-native-roots",
], default-features = false } ], default-features = false }
async-trait = "0.1.89"
chrono = { version = "0.4.38", features = ["serde"] } chrono = { version = "0.4.38", features = ["serde"] }
etcetera = { workspace = true } etcetera = { workspace = true }
tempfile = "3.8" tempfile = "3.8"
include_dir = "0.7.4" include_dir = "0.7.4"
webbrowser = {workspace = true}
http-body-util = "0.1.2"
regex = { workspace = true } regex = { workspace = true }
once_cell = "1.20.2" once_cell = "1.20.2"
ignore = { workspace = true } ignore = { workspace = true }
@@ -46,15 +41,8 @@ lopdf = "0.36.0"
docx-rs = "0.4.7" docx-rs = "0.4.7"
image = "0.24.9" image = "0.24.9"
umya-spreadsheet = "2.2.3" umya-spreadsheet = "2.2.3"
keyring = { version = "3.6.2", features = [
"apple-native",
"windows-native",
"sync-secret-service",
"vendored",
] }
utoipa = { version = "4.1", optional = true } utoipa = { version = "4.1", optional = true }
which = {workspace = true} which = {workspace = true}
glob = "0.3"
lru = "0.16" lru = "0.16"
tree-sitter = "0.21" tree-sitter = "0.21"
tree-sitter-python = "0.21" tree-sitter-python = "0.21"
@@ -72,7 +60,6 @@ libc = "0.2"
# ~1000 downloads). Pinned to exact version to prevent supply chain attacks. # ~1000 downloads). Pinned to exact version to prevent supply chain attacks.
mpatch = "=0.2.0" mpatch = "=0.2.0"
tokio-util = "0.7.16" tokio-util = "0.7.16"
clap = { version = "4", features = ["derive"] }
[dev-dependencies] [dev-dependencies]
sysinfo = "0.32.1" sysinfo = "0.32.1"
-2
View File
@@ -14,7 +14,6 @@ workspace = true
goose = { path = "../goose" } goose = { path = "../goose" }
goose-mcp = { path = "../goose-mcp" } goose-mcp = { path = "../goose-mcp" }
rmcp = { workspace = true } rmcp = { workspace = true }
schemars = "1.0"
axum = { version = "0.8.1", features = ["ws", "macros"] } axum = { version = "0.8.1", features = ["ws", "macros"] }
tokio = { workspace = true } tokio = { workspace = true }
chrono = "0.4" chrono = "0.4"
@@ -37,7 +36,6 @@ serde_yaml = "0.9.34"
utoipa = { version = "4.1", features = ["axum_extras", "chrono"] } utoipa = { version = "4.1", features = ["axum_extras", "chrono"] }
reqwest = { version = "0.12.9", features = ["json", "rustls-tls", "blocking", "multipart"], default-features = false } reqwest = { version = "0.12.9", features = ["json", "rustls-tls", "blocking", "multipart"], default-features = false }
tokio-util = "0.7.15" tokio-util = "0.7.15"
uuid = { version = "1.11", features = ["v4"] }
serde_path_to_error = "0.1.20" serde_path_to_error = "0.1.20"
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-native-roots"] } tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-native-roots"] }
url = "2.5.7" url = "2.5.7"