From 5ce4c51794857056c865cbd01cd2d35981f246e4 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 22 Sep 2025 21:53:44 -0600 Subject: [PATCH] fix: Fix compile in release mode on 1.90 --- Cargo.lock | 3 +-- Cargo.toml | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4116f300f..4d8369e0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3248,8 +3248,7 @@ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" [[package]] name = "wkb" version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff9eff6aebac4c64f9c7c057a68f6359284e2a80acf102dffe041fe219b3a082" +source = "git+https://github.com/georust/wkb?rev=e6c9cc74018209eab01d5e780a4ce388d918b6a5#e6c9cc74018209eab01d5e780a4ce388d918b6a5" dependencies = [ "byteorder", "geo-traits", diff --git a/Cargo.toml b/Cargo.toml index 6478cf0eb..90a30deac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,3 +78,8 @@ tokio = { version = "1.9", default-features = false } url = "2.5" wkb = "0.9" wkt = "0.14" + + +[patch.crates-io] +# tree/kyle/remove-trait-wrappers +wkb = { git = "https://github.com/georust/wkb", rev = "e6c9cc74018209eab01d5e780a4ce388d918b6a5" }