From e1a865295bb86371e0551b3327d1a3a571d8b289 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 5 Sep 2024 10:25:20 -0400 Subject: [PATCH] Remove unused `rusqlite` dependency (#17416) This PR removes the `rusqlite` dependency from our workspace `Cargo.toml`, as it wasn't being used anywhere. Release Notes: - N/A --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a0118c5dec..33f8343007 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -388,7 +388,6 @@ rsa = "0.9.6" runtimelib = { version = "0.15", default-features = false, features = [ "async-dispatcher-runtime", ] } -rusqlite = { version = "0.29.0", features = ["blob", "array", "modern_sqlite"] } rustc-demangle = "0.1.23" rust-embed = { version = "8.4", features = ["include-exclude"] } schemars = { version = "0.8", features = ["impl_json_schema"] }