Skip to content

Commit

Permalink
chore: Remove openssh from slt crate cargo.toml (#2432)
Browse files Browse the repository at this point in the history
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"
```
  • Loading branch information
scsmithr authored Jan 16, 2024
1 parent 97858e2 commit 66c2f6b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/datasources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 0 additions & 1 deletion crates/slt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 66c2f6b

Please sign in to comment.