gitextract_dmgnez8a/ ├── .github/ │ └── workflows/ │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── libssh2-sys/ │ ├── .gitattributes │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── build.rs │ └── lib.rs ├── src/ │ ├── agent.rs │ ├── channel.rs │ ├── error.rs │ ├── knownhosts.rs │ ├── lib.rs │ ├── listener.rs │ ├── session.rs │ ├── sftp.rs │ └── util.rs ├── systest/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ └── main.rs └── tests/ ├── all/ │ ├── agent.rs │ ├── channel.rs │ ├── knownhosts.rs │ ├── main.rs │ ├── session.rs │ └── sftp.rs └── run_integration_tests.sh