-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
81 lines (69 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "htminl"
version = "0.8.8"
license = "WTFPL"
authors = ["Josh Stoik <[email protected]>"]
edition = "2021"
description = "In-place minification of HTML file(s)."
repository = "https://github.com/Blobfolio/htminl"
readme = "README.md"
publish = false
[package.metadata.deb]
maintainer = "Josh Stoik <[email protected]>"
copyright = "2024, Blobfolio, LLC <[email protected]>"
license-file = ["./LICENSE", "0"]
extended-description = ""
revision = "1"
depends = "$auto"
section = "utils"
assets = [
["./target/release/htminl", "usr/bin/", "755"],
["./release/completions/htminl.bash", "etc/bash_completion.d/", "644"],
["./release/man/htminl.1.gz", "usr/share/man/man1/", "644"],
]
[package.metadata.bashman]
name = "HTMinL"
bash-dir = "./release/completions"
man-dir = "./release/man"
[[package.metadata.bashman.switches]]
short = "-h"
long = "--help"
description = "Print help information and exit."
[[package.metadata.bashman.switches]]
short = "-p"
long = "--progress"
description = "Show progress bar while working."
[[package.metadata.bashman.switches]]
short = "-V"
long = "--version"
description = "Print program version and exit."
[[package.metadata.bashman.options]]
short = "-l"
long = "--list"
label = "<FILE>"
description = "Read (absolute) file and/or directory paths from this text file — or STDIN if '-' — one entry per line, instead of or in addition to the trailing <PATH(S)>."
path = true
[[package.metadata.bashman.arguments]]
label = "<PATH(s)…>"
description = "Any number of files and directories to crawl and crunch."
[build-dependencies]
argyle = "0.10.*"
dowser = "0.10.*"
[dependencies]
argyle = "0.10.*"
dactyl = "0.8.*"
dowser = "0.10.*"
rayon = "1.10.*"
tendril = "=0.4.3"
write_atomic = "0.5.*"
[dependencies.marked]
version = "0.3.*"
git = "https://github.com/joshstoik1/marked.git"
rev = "8acdc5c"
[dependencies.fyi_msg]
version = "1.3.*"
features = [ "progress" ]
[profile.release]
lto = true
codegen-units = 1
strip = true