-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
32 lines (29 loc) · 965 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
[package]
name = "fundoc"
version = "0.5.0"
authors = ["Sergey Golovin <[email protected]>"]
edition = "2018"
license = "MIT"
description = "fundoc - is a documentation generator that helps you keep your documentation up-to-date."
readme = "README.md"
homepage = "https://github.com/CSSSR/fundoc"
repository = "https://github.com/CSSSR/fundoc"
keywords = ["cli", "documentation", "generator"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
glob = "0.3.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ansi_term = "0.12.1"
clap = "4.1.8"
mdbook = "0.4.28"
dialoguer = "0.10.3"
url = "2.3.1"
rlua = "0.19.4"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/fundoc", dest = "/usr/bin/fundoc", mode = "755" },
{ source = "./images/logo.png", dest = "/usr/share/icons/hicolor/", mode = "644" },
]