-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 1013 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "actix-cli"
version = "0.1.0"
authors = ["Julia Naomi <[email protected]>"]
edition = "2018"
license = "LGPL-3.0"
description = "Rust cli to create actix-web boilerplate projects."
documentation = "https://github.com/web-dev-rust/actix-cli/blob/master/README.md"
homepage = "https://github.com/web-dev-rust/actix-cli"
repository = "https://github.com/web-dev-rust/actix-cli"
readme = "README.md"
keywords = ["actix", "build", "cargo", "plugin"]
categories = [
"command-line-utilities",
"development-tools",
"development-tools::cargo-plugins",
"development-tools::build-utils",
"development-tools::testing",
]
include = [
"/src/*",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/Makefile",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
bytes = "1.0.0"
toml = "0.4.2"
convert_case = "0.4"
clap = { version = "2.33", default-features = false }
[[bin]]
name = "actix-cli"
path = "src/main.rs"