126 new feature termscp doesnt use id rsa default ssh private key to authenticate to sftp scp endpoint (#144)

fixed issue 126 <https://github.com/veeso/termcp/issues/126>
This commit is contained in:
Christian Visintin
2023-02-10 15:11:35 +01:00
committed by veeso
parent efd2235ff3
commit 251b125cbb
5 changed files with 35 additions and 28 deletions

View File

@@ -54,7 +54,7 @@ rpassword = "^7.0"
self_update = { version = "^0.32", default-features = false, features = [ "rustls", "archive-tar", "archive-zip", "compression-flate2", "compression-zip-deflate" ] }
serde = { version = "^1", features = [ "derive" ] }
simplelog = "^0.12"
ssh2-config = "^0.1.3"
ssh2-config = "^0.1.4"
tempfile = "^3.2"
thiserror = "^1"
toml = "^0.5"
@@ -77,12 +77,12 @@ with-keyring = [ "keyring" ]
[target."cfg(target_family = \"windows\")"]
[target."cfg(target_family = \"windows\")".dependencies]
remotefs-ftp = { version = "^0.1.2", features = [ "native-tls" ] }
remotefs-ssh = "^0.1.2"
remotefs-ssh = "^0.1.3"
[target."cfg(target_family = \"unix\")"]
[target."cfg(target_family = \"unix\")".dependencies]
remotefs-ftp = { version = "^0.1.2", features = [ "vendored", "native-tls" ] }
remotefs-ssh = { version = "^0.1.2", features = [ "ssh2-vendored" ] }
remotefs-ssh = { version = "^0.1.3", features = [ "ssh2-vendored" ] }
users = "0.11.0"
[profile.dev]