Skip to content

Commit a895fc4

Browse files
committed
ssh connect utility that follows the git specification
1 parent 9377455 commit a895fc4

File tree

5 files changed

+532
-0
lines changed

5 files changed

+532
-0
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ serde = { version = "1", features = ["derive"] }
9393
serde_json = "1"
9494
serde_repr = "0.1"
9595
sha2 = "0.10"
96+
shell-words = "1.1"
9697
shellexpand = "3.1"
9798
static_assertions = "1.1"
9899
sysinfo = "0.37"

git_xet/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ reqwest-middleware = { workspace = true }
2626
rust-netrc = { workspace = true }
2727
serde = { workspace = true }
2828
serde_json = { workspace = true }
29+
shell-words = { workspace = true }
2930
tempfile = { workspace = true }
3031
thiserror = { workspace = true }
3132
tokio = { workspace = true }

git_xet/src/utils/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
pub mod process_wrapping;
2+
pub mod ssh_connect;

0 commit comments

Comments
 (0)