#template #git #cargo-new

bin+lib templateme

在Rust中生成Cargo项目模板

3个版本

0.1.3 2019年8月11日
0.1.1 2019年8月10日
0.1.0 2019年8月10日

开发工具类别中排名第1851

MIT/Apache

26KB
625

templateme Travis状态 crate

在Rust中生成模板Cargo项目

注意:需要git

用法

git clone https://github.com/zTgx/templateme.git
cd templateme
cargo install --path .
templateme --new proj_name

模板项目的src树

├── Cargo.toml
├── .travis.yml
├── LICENSE-APACHE
├── LICENSE-MIT
├── README.md
├── .gitignore
├── examples
└── src

并在Cargo.toml中包含

[package]
name = "proj_name"
version = "0.1.0"
authors = ["Replace Me"]
edition = "2018"
repository = "https://github.com/Replace Me.git"
readme = "README.md"
keywords = [ "Replace Me" ]
categories = [ "Replace Me" ]
license = "MIT/Apache-2.0"
exclude = [ "/.travis.yml" ]
description = "Replace Me"

[dependencies]

并在.gitignore中包含

/target
**/*.rs.bk
Cargo.lock

并在.travis.yml中包含

language: rust
sudo: false

rust:
  - stable

script:
  - cargo build --verbose --all  

以及其他包含默认内容。

祝您玩得开心。

依赖项

~560KB