1 个稳定版本
1.0.0 | 2020年9月20日 |
---|
#2518 在 开发工具
7KB
129 行
你好
这是 truck,一个为你生成 cargo toml 的包
- 你刚刚创建了 truck.rs
- 将以下内容放入 cargo.toml 中
build = "truck.rs"
[build-dependencies]
truck = "1.0.0"
- 并在你的 build.rs 中写入以下内容
use truck::prelude;
fn main() {
CargoConf::new()
.author(
&["Jakob Nikolaus Neufeld"]
).edition("2018")
.name("truck")
.version("0.0.1")
.license("MIT")
.dependencie_section()
.dependencie("toml", DepVersion::Version("0.5.6"))
.dependencie("crates-io", "0.32.0")
.write_to_cargo()
;
}
你已经完成了!
请将任何错误报告到 [email protected]
还将有更多功能推出,例如
- 更多包部分构建函数
- 更多部分
- cargo-truck 工具
- 等等...
依赖关系
~9–18MB
~293K SLoC