22 lines
412 B
TOML
22 lines
412 B
TOML
[package]
|
|
name = "{{project_name}}"
|
|
version = "0.0.1"
|
|
authors = ["{{author}} <{{email}}>"]
|
|
edition = "2018"
|
|
{% if license != "None" -%}
|
|
license = "{{license}}"
|
|
{%- endif %}
|
|
description = "{{description}}"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "{{bin}}"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
toml = "0.5"
|
|
rust_util = "0.6"
|
|
|