【发布时间】:2019-07-01 06:51:43
【问题描述】:
我正在尝试运行示例代码from this project。按照 Cargo 文档上的说明,我执行了以下操作:
git clone https://github.com/basiliscos/rust-procol-ftp-client
cd rust-procol-ftp-client
cargo run
cargo test
cargo test 也应该根据 Rust 文档编译 the example。
虽然cargo test 执行成功,但当我切换到target/debug 目录时,我找不到ftp-get 的可执行文件(这是示例代码)。 target/debug/examples 目录也是空的。
运行此示例的最佳方法是什么?
【问题讨论】:
标签: rust rust-cargo