-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (48 loc) · 1.56 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "writeme"
version = "0.2.1"
edition = "2021"
authors = ["Leonardo Straccali", "Luca Corsetti"]
license = "GPL-3.0-only"
description = "Cross-platform README generator for your project"
readme = "README.md"
homepage = "https://github.com/writeme-project/writeme"
repository = "https://github.com/writeme-project/writeme"
keywords = ["readme", "generator", "cross-platform", "cli", "markdown"]
categories = ["development-tools", "command-line-utilities"]
[[bin]]
name = "writeme"
path = "src/main.rs"
include = ["conf/**"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
chrono = "0.4.26"
clap = { version = "4.2.4", features = ["derive"] }
colored = "2.0.0"
derive = "1.0.0"
dialoguer = "0.10.4"
enum-assoc = "1.1.0"
git2 = { version = "0.17.1", features = ["vendored-openssl"] }
handlebars = "4.3.6"
itertools = "0.10.5"
log-update = "0.1.0"
rand = "0.8.5"
regex = "1.7.3"
rust_search = "2.1.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = { version = "1.0.95", features = ["indexmap", "raw_value"] }
serde_yaml = "0.9.21"
strum = { version = "0.24.1", features = ["derive"] }
terminal-spinners = "0.3.2"
toml = "0.7.3"
[badges]
maintenance = { status = "enable" }
[package.metadata.deb]
maintainer = "Leonardo Straccali, Luca Corsetti"
license-file = ["LICENSE", "4"]
extended-description = """Cross-platform README generator for your project"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [["README.md", "usr/share/doc/writeme/README", "644"]]