From 2d3aba18775b1c79746dbeb078e3ab6aadbb4508 Mon Sep 17 00:00:00 2001 From: Eric Hodel Date: Fri, 14 Jun 2024 21:42:07 -0700 Subject: [PATCH] Remove unused regex dependency --- Cargo.lock | 1 - Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f82a361..fc4eecd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1236,7 +1236,6 @@ dependencies = [ "nu-plugin", "nu-protocol", "prometheus-http-query", - "regex", "reqwest", "rstest", "serde", diff --git a/Cargo.toml b/Cargo.toml index 48472df..0393c04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ nom = "7.1.3" nu-plugin = "0.94.2" nu-protocol = { version = "0.94.2", features = [ "plugin" ] } prometheus-http-query = "0.8.3" -regex = "1.10.4" reqwest = { version = "0.12.4", features = [ "native-tls" ] } tokio = { version ="1.38.0", features = [ "macros", "rt" ] }