From fad972332ca2b455eee6e97a28901bd14e03f5bd Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Sat, 11 Jun 2022 12:43:41 +0800
Subject: [PATCH] Depend on git salty rather than local path

---
 Cargo.lock          | 1 +
 sshproto/Cargo.toml | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Cargo.lock b/Cargo.lock
index d56c88e..a4b0f4c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -909,6 +909,7 @@ checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
 [[package]]
 name = "salty"
 version = "0.2.0"
+source = "git+https://github.com/mkj/salty?branch=parts#d886ddcef3159eb5e6632a388dd2f93365598311"
 dependencies = [
  "digest 0.10.3",
  "ed25519",
diff --git a/sshproto/Cargo.toml b/sshproto/Cargo.toml
index 01b8fb6..7d5d1d0 100644
--- a/sshproto/Cargo.toml
+++ b/sshproto/Cargo.toml
@@ -34,7 +34,7 @@ pin-utils = "0.1"
 # tokio = { version = "1.18", features = ["sync"], optional = true }
 async-trait = { version = "0.1", optional = true }
 
-salty = { version = "0.2", path = "/home/matt/3rd/rs/salty" }
+salty = { version = "0.2", git = "https://github.com/mkj/salty", branch = "parts" }
 
 [features]
 default = [ "getrandom" ]
-- 
GitLab