4 个版本
使用旧的 Rust 2015
| 0.0.4 | 2015年1月25日 |
|---|---|
| 0.0.3 | 2015年1月15日 |
| 0.0.2 | 2015年1月14日 |
| 0.0.1 | 2014年12月19日 |
#4 在 #buildable
19KB
392 代码行
cargo-rub
cargo Rust 构建工具
状态
lib.rs:
Rust 构建工具用于 Cargo。
此包旨在与 rub 一起使用。
如果您尚未安装 rub,请访问 https://github.com/rust-builder/rub 以获取安装说明。
Rub 选项
$ rub cargo --help
cargo - Rust Builder
Usage:
rub cargo [options] [<lifecycle>...]
rub cargo (-h | --help)
rub cargo --version
Options:
-d --dir <dir> Set the projects directory.
-b --branch <branch> Set the build branch. [default: master]
-t --enable-test Enable tests.
-p --prefix <prefix> Set the installation prefix.
-u --url <url> Set the SCM URL.
-h --help Show this usage.
--force-configure Force the configure lifecycle to run.
--disable-optimize Disable compile-time optimization.
--version Show cargo-rub version.
示例
use buildable::Buildable;
use cargo_rub::CargoRub;
// To run lifecycle methods outside of rub...
let mut cr = CargoRub::new();
let b = Buildable::new(&mut cr, &vec!["rub".to_string(),
"cargo".to_string(),
"--version".to_string()]);
assert_eq!(Ok(0), b.version());
依赖项
~3.5–5.5MB
~101K SLoC