-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
98 lines (83 loc) · 2.85 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[package]
name = "yesvgmap"
version = "0.5.8"
license = "WTFPL"
authors = ["Josh Stoik <[email protected]>"]
edition = "2021"
description = "Generate SVG sprite maps from individual SVG images."
repository = "https://github.com/Blobfolio/yesvgmap"
readme = "README.md"
publish = false
[package.metadata.deb]
maintainer = "Josh Stoik <[email protected]>"
copyright = "2024, Blobfolio, LLC <[email protected]>"
license-file = ["./LICENSE", "0"]
revision = "1"
depends = "$auto"
section = "graphics"
extended-description = ""
assets = [
["./target/release/yesvgmap", "usr/bin/", "755"],
["./release/completions/yesvgmap.bash", "etc/bash_completion.d/", "644"],
["./release/man/yesvgmap.1.gz", "usr/share/man/man1/", "644"],
]
[package.metadata.bashman]
name = "Yesvgmap"
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]]
long = "--hidden"
description = "Hide the map using the 'hidden' HTML attribute. This takes priority over --offscreen when both are present."
[[package.metadata.bashman.switches]]
long = "--offscreen"
description = "Hide the map using inline styles to position it offscreen."
[[package.metadata.bashman.switches]]
short = "-V"
long = "--version"
description = "Print version information 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 addition to (actually trailing) <PATH(S)>."
path = true
[[package.metadata.bashman.options]]
long = "--map-class"
description = "Add this class to the generated SVG map. [default: ]"
label = "<CLASS>"
[[package.metadata.bashman.options]]
long = "--map-id"
description = "Add this ID to the generated SVG map. [default: ]"
label = "<ID>"
[[package.metadata.bashman.options]]
short = "-o"
long = "--output"
description = "Save the generated map to this location. If omitted, the map will print to STDOUT instead."
label = "<FILE>"
path = true
[[package.metadata.bashman.options]]
short = "-p"
long = "--prefix"
description = "Set a custom prefix for the IDs of each entry in the map. (IDs look like PREFIX-STEM, where STEM is the alphanumeric portion of the source file name, e.g. 'i-close'.) [default: i]"
label = "<PREFIX>"
[[package.metadata.bashman.arguments]]
label = "<PATH(s)…>"
description = "One or more file and/or directory paths to crunch and/or (recursively) crawl. Only files with the extension .svg will ultimately be included."
[build-dependencies]
argyle = "0.10.*"
dowser = "0.10.*"
[dependencies]
argyle = "0.10.*"
dactyl = "0.8.*"
dowser = "0.10.*"
fyi_msg = "1.3.*"
svg = "=0.18.0"
write_atomic = "0.5.*"
[profile.release]
lto = true
codegen-units = 1
strip = true