├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md └── src ├── connection ├── crypto.rs └── mod.rs ├── file.rs ├── lib.rs ├── main.rs ├── progress.rs └── ssh.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/README.md -------------------------------------------------------------------------------- /src/connection/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/connection/crypto.rs -------------------------------------------------------------------------------- /src/connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/connection/mod.rs -------------------------------------------------------------------------------- /src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/file.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/progress.rs -------------------------------------------------------------------------------- /src/ssh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcginty/shoop/HEAD/src/ssh.rs --------------------------------------------------------------------------------