From 5f6e5d1100e42cf099ec881fa6203e13fc0bc2f6 Mon Sep 17 00:00:00 2001 From: Michael Matloka Date: Mon, 4 Nov 2024 14:25:50 +0100 Subject: [PATCH] Ensure idna 0.5 Fixes CI failures caused by this: servo/rust-url#992. Slack thread: https://posthog.slack.com/archives/C0113360FFV/p1730722228558389 --- rust/Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 93e284a9cd131..6ebf3d300b028 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -88,8 +88,9 @@ tower-http = { version = "0.5.2", features = ["cors", "limit", "trace"] } tracing = "0.1.40" tracing-opentelemetry = "0.23.0" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -url = { version = "2.5.0 " } +url = "2.5.0" +idna = "0.5" uuid = { version = "1.6.1", features = ["v7", "serde"] } neon = "1" quick_cache = "0.6.9" -ahash = "0.8.11" \ No newline at end of file +ahash = "0.8.11"