From 36b732c2b85e9f1bd505e6e82534769035a85378 Mon Sep 17 00:00:00 2001 From: Pranshi Date: Fri, 3 May 2024 17:24:39 +0530 Subject: [PATCH] remove unused dependencies --- Cargo.lock | 4 ---- crates/ndc-sqlserver/Cargo.toml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2678af9..587965b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1296,8 +1296,6 @@ dependencies = [ "async-trait", "axum", "axum-test-helper", - "bb8", - "bb8-tiberius", "env_logger", "hyper", "insta", @@ -1311,12 +1309,10 @@ dependencies = [ "query-engine-sql", "query-engine-translation", "reqwest", - "schemars", "serde", "serde_derive", "serde_json", "similar-asserts", - "thiserror", "tiberius", "tokio", "tracing", diff --git a/crates/ndc-sqlserver/Cargo.toml b/crates/ndc-sqlserver/Cargo.toml index 962153e..d745f05 100644 --- a/crates/ndc-sqlserver/Cargo.toml +++ b/crates/ndc-sqlserver/Cargo.toml @@ -28,16 +28,12 @@ ndc-sqlserver-configuration = { path = "../configuration" } tiberius = { version = "0.12.2", default-features = false, features = ["rustls"] } -bb8 = "0.8.1" -bb8-tiberius = "0.15.0" async-trait = "0.1.80" -schemars = { version = "0.8.16", features = ["smol_str"] } serde = { version = "1.0.198", features = ["derive", "rc"] } serde_json = { version = "1.0.116", features = ["raw_value"] } tokio = { version = "1.37.0", features = ["full"] } tracing = "0.1.40" prometheus = "0.13.3" -thiserror = "1.0" [dev-dependencies] ndc-models = { workspace = true }