From 12936faca243c21a73462a39182ed1b1fe337713 Mon Sep 17 00:00:00 2001 From: SarthakB11 Date: Tue, 5 May 2026 19:53:00 +0000 Subject: [PATCH] fix(deps): disable chrono default features to drop iana-time-zone pull-in --- crates/rmcp/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/rmcp/Cargo.toml b/crates/rmcp/Cargo.toml index 9065c75b..5cca9833 100644 --- a/crates/rmcp/Cargo.toml +++ b/crates/rmcp/Cargo.toml @@ -102,7 +102,10 @@ hyper-util = { version = "0.1", features = ["tokio"], optional = true } # macro rmcp-macros = { workspace = true, optional = true } [target.'cfg(not(all(target_family = "wasm", target_os = "unknown")))'.dependencies] -chrono = { version = "0.4.38", features = ["serde"] } +chrono = { version = "0.4.38", default-features = false, features = [ + "serde", + "now", +] } [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies] chrono = { version = "0.4.38", default-features = false, features = [