Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ASYNC_SSH2_TEST_HOST_IP=10.10.10.2
ASYNC_SSH2_TEST_HOST_PW=root
ASYNC_SSH2_TEST_HOST_PW_MULTI_AUTH=multi-auth
ASYNC_SSH2_TEST_HOST_USER=root
ASYNC_SSH2_TEST_HOST_USER_MULTI_AUTH=multi-auth
ASYNC_SSH2_TEST_KNOWN_HOSTS=./tests/async-ssh2-tokio/known_hosts
ASYNC_SSH2_TEST_CLIENT_PRIV=./tests/client.ed25519
ASYNC_SSH2_TEST_CLIENT_PUB=./tests/client.ed25519.pub
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ authors = ["Miyoshi-Ryota <m1yosh1.ry0t4@gmail.com>"]
openssl = []

[dependencies]
russh = { version = "0.55.0", default-features = false, features = ["rsa", "flate2", "ring"] }
russh = { version = "0.61.1", default-features = false, features = ["rsa", "flate2", "ring"] }
log = "0.4"
russh-sftp = "2.1.1"
russh-sftp = "2.3.0"
thiserror = "2.0.17"
tokio = { version = "1.45.1", features = ["fs"] }
tokio = { version = "1.52.3", features = ["fs"] }

[dev-dependencies]
dotenv = "0.15.0"
Loading