From 7dd00d74e96be39149cf00ac1a8bd5298403ec8e Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Sat, 19 Sep 2026 19:28:27 +0300 Subject: [PATCH 1/2] chore(deps): drop unused anyhow dependency Co-authored-by: Medulla --- Cargo.lock | 7 ------- Cargo.toml | 3 --- crates/tinymcp/Cargo.toml | 1 - 3 files changed, 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3a6da6d..fd7defd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,12 +8,6 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" -[[package]] -name = "anyhow" -version = "1.0.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" - [[package]] name = "arbitrary" version = "1.4.2" @@ -1649,7 +1643,6 @@ dependencies = [ name = "tinymcp" version = "0.3.2" dependencies = [ - "anyhow", "axum", "base64 0.23.1", "dirs", diff --git a/Cargo.toml b/Cargo.toml index 4ef5da2..6849dbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,9 +80,6 @@ tokio = { version = "1", features = [ # and none of those touches await. A synchronous mutex is the right shape; # holding an async one across a request would serialize the transport. parking_lot = "0.12" -# Internal error propagation with context inside the transports and the -# registry. The crate's public boundary returns `Error` from `src/error/`. -anyhow = "1" # HTTP basic authentication encodes its credentials. base64 = "0.23" # `StreamExt::next` over the SSE response body. See the `reqwest` note. diff --git a/crates/tinymcp/Cargo.toml b/crates/tinymcp/Cargo.toml index 2a836c8..d8d44ea 100644 --- a/crates/tinymcp/Cargo.toml +++ b/crates/tinymcp/Cargo.toml @@ -32,7 +32,6 @@ thiserror = { workspace = true } reqwest = { workspace = true } tokio = { workspace = true } parking_lot = { workspace = true } -anyhow = { workspace = true } base64 = { workspace = true } futures-util = { workspace = true } tracing = { workspace = true } From 9d5f9cf0967be8df6cce8a77cc6270739971f076 Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Sat, 19 Sep 2026 20:06:47 +0300 Subject: [PATCH 2/2] chore(deps): update rustls and rustls-webpki Update the rustls dependency from version 0.23.43 to 0.23.45 and the rustls-webpki dependency from 0.103.13 to 0.103.15 in the lockfile to pick up the latest patch releases. Auto-committed-on: dragonfly Co-authored-by: Medulla --- Cargo.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd7defd..ae4ec50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1239,9 +1239,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.43" +version = "0.23.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06" +checksum = "0d41d731c7d2f962d1ccc364cec258de3c0e93b38c2fb3ba97ac74513048d634" dependencies = [ "log", "once_cell", @@ -1264,9 +1264,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.13" +version = "0.103.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" +checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2" dependencies = [ "ring", "rustls-pki-types",