Skip to content

Commit 08a5dc6

Browse files
committed
update cargo.toml
1 parent a93a6ad commit 08a5dc6

File tree

2 files changed

+26
-32
lines changed

2 files changed

+26
-32
lines changed

Cargo.toml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,36 @@ name = "actix-cli"
33
version = "0.1.0"
44
authors = ["Julia Naomi <[email protected]>"]
55
edition = "2018"
6+
license = "LGPL-3.0"
7+
description = "Rust cli to create actix-web boilerplate projects."
8+
documentation = "https://github.com/web-dev-rust/actix-cli/blob/master/README.md"
9+
homepage = "https://github.com/web-dev-rust/actix-cli"
10+
repository = "https://github.com/web-dev-rust/actix-cli"
11+
readme = "README.md"
12+
keywords = ["actix", "build", "cargo", "plugin"]
13+
categories = [
14+
"command-line-utilities",
15+
"development-tools",
16+
"development-tools::cargo-plugins",
17+
"development-tools::build-utils",
18+
"development-tools::testing",
19+
]
20+
include = [
21+
"/src/*",
22+
"/Cargo.toml",
23+
"/LICENSE",
24+
"/README.md",
25+
"/Makefile",
26+
]
627

728
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
829

930
[dependencies]
1031
structopt = "0.3"
1132
bytes = "1.0.0"
1233
toml = "0.4.2"
13-
convert_case = "0.4"
34+
convert_case = "0.4"
35+
36+
[[bin]]
37+
name = "cargo-actix"
38+
path = "src/main.rs"

foo.toml

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)