I'm trying to run the example code from this project. Following the instructions on the Cargo docs, I did the following:
git clone https://github.com/basiliscos/rust-procol-ftp-client
cd rust-procol-ftp-client
cargo run
cargo test
cargo test
should also have compiled the example according to the Rust docs.
Although cargo test
executes successfully, when I change into the target/debug
directory, I don't find an executable for ftp-get
(which is the example code). The target/debug/examples
directory is also empty.
What is the best way to go about running this example?