older trussh

This commit is contained in:
Robin Appelman 2024-06-14 20:56:42 +02:00
commit 74c0678d0b
2 changed files with 5 additions and 18 deletions

21
Cargo.lock generated
View file

@ -1806,9 +1806,9 @@ dependencies = [
[[package]]
name = "thrussh"
version = "0.34.1"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b78a2816fc84bee8abe3d119cae53d186d0bbb872a159b9079b1bdbc646224c"
checksum = "0eb7f634184fe86d7a9fd587d9350137508cba7b77626a7785db2ca695ebc503"
dependencies = [
"bitflags 1.3.2",
"byteorder",
@ -1822,7 +1822,7 @@ dependencies = [
"sha2 0.9.9",
"thiserror",
"thrussh-keys",
"thrussh-libsodium 0.3.0",
"thrussh-libsodium",
"tokio",
]
@ -1852,7 +1852,7 @@ dependencies = [
"serde_derive",
"sha2 0.9.9",
"thiserror",
"thrussh-libsodium 0.2.3",
"thrussh-libsodium",
"tokio",
"tokio-stream",
"yasna",
@ -1871,19 +1871,6 @@ dependencies = [
"vcpkg",
]
[[package]]
name = "thrussh-libsodium"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58ed00bb88de0df6f5f4a21269a434c79ca2056bd95036ec6c6c41bfef476ea3"
dependencies = [
"lazy_static",
"libc",
"libsodium-sys",
"pkg-config",
"vcpkg",
]
[[package]]
name = "tinystr"
version = "0.7.6"

View file

@ -14,7 +14,7 @@ toml = "0.8.14"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread", "signal"] }
camino = "1.1.7"
petname = "2.0.2"
thrussh = "0.34.1" # 0.35.1 broke password auth?
thrussh = "=0.34.0" # 0.34.1 broke password auth?
thrussh-keys = "0.22.1"
futures-util = "0.3.30"
pretty_env_logger = "0.5.0"