From 66c2f6bc5f61b12fdc46bedc36646a3d6200a615 Mon Sep 17 00:00:00 2001 From: Sean Smith Date: Tue, 16 Jan 2024 11:14:27 -0600 Subject: [PATCH] chore: Remove openssh from slt crate cargo.toml (#2432) Was causing build failures on windows. Didn't seem to be used anyways. Note that we conditionally use openssh in the datasources crate to get around this: ``` [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies] openssh = "0.10.2" ``` --- Cargo.lock | 1 - crates/datasources/Cargo.toml | 1 - crates/slt/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 01846234d..2d9d7cc64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7187,7 +7187,6 @@ dependencies = [ "logutil", "metastore", "object_store", - "openssh", "pgrepr", "pgsrv", "regex", diff --git a/crates/datasources/Cargo.toml b/crates/datasources/Cargo.toml index 5b414edba..41e5f34ff 100644 --- a/crates/datasources/Cargo.toml +++ b/crates/datasources/Cargo.toml @@ -73,7 +73,6 @@ bson = "2.7.0" scylla = { version = "0.11.1" } glob = "0.3.1" - # SSH tunnels [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies] openssh = "0.10.2" diff --git a/crates/slt/Cargo.toml b/crates/slt/Cargo.toml index 0d4040ef4..b8ff8b785 100644 --- a/crates/slt/Cargo.toml +++ b/crates/slt/Cargo.toml @@ -26,7 +26,6 @@ sqlexec = { path = "../sqlexec" } telemetry = { path = "../telemetry" } tokio-postgres = "0.7.8" glob = "0.3.1" -openssh = "0.10.2" regex = "1.8.1" sqllogictest = "0.19.1" uuid = { version = "1.6", features = ["v4", "fast-rng", "macro-diagnostics"] }