-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
117 lines (109 loc) · 2.07 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "svgc"
version = "0.1.9"
authors = ["Petr Alexandrovich Sabanov pasabanov@murena.io"]
edition = "2021"
description = "`svgc` (previously SvgCompress) is a tool for compressing SVG files by removing unnecessary whitespace, comments, metadata and some other data. It also supports optimization with SVGO and compression into SVGZ."
repository = "https://github.com/pasabanov/svgc"
license = "AGPL-3.0-or-later"
exclude = [
"/.forgejo/",
"/.github/",
"/.gitlab/",
"/.idea/",
"/.vscode/",
"/doc/",
"/docs/",
"/example/",
"/examples/",
"/test/",
"/tests/",
"/.editorconfig",
"/.gitignore",
"/.rustfmt.toml",
"/rustfmt.toml"
]
[package.metadata.i18n]
available-locales = ["en", "ru"]
default-locale = "en"
load-path = "i18n"
[dependencies]
chrono = "0.4.38"
clap = "4.5.16"
directories = "5.0.1"
dirs = "5.0.1"
flate2 = "1.0.31"
lazy_static = "1.5.0"
locale-match = { version = "0.2.1", default-features = false, features = ["bcp47"] }
regex = "1.10.6"
rust-i18n = "3.1.2"
sys-locale = "0.3.1"
which = "6.0.3"
[profile.dev]
# Compilation
codegen-units = 256
incremental = true
# Behavior
overflow-checks = true
panic = "unwind"
# Optimization
opt-level = 0
lto = false
# Symbols
debug = true
strip = "none"
[profile.fastcompile]
inherits = "dev"
# Compilation
codegen-units = 8192
incremental = true
# Behavior
overflow-checks = false
panic = "abort"
# Optimization
opt-level = 0
lto = false
# Symbols
debug = false
strip = "none"
[profile.release]
# Compilation
codegen-units = 1
incremental = false
# Behavior
overflow-checks = false
panic = "abort"
# Optimization
opt-level = 3
lto = true
# Symbols
debug = false
strip = "symbols"
[profile.relwithdebinfo]
inherits = "release"
# Compilation
codegen-units = 1
incremental = false
# Behavior
overflow-checks = false
panic = "unwind"
# Optimization
opt-level = 2
lto = true
# Symbols
debug = true
strip = "none"
[profile.minsize]
inherits = "release"
# Compilation
codegen-units = 1
incremental = false
# Behavior
overflow-checks = false
panic = "abort"
# Optimization
opt-level = "z"
lto = true
# Symbols
debug = false
strip = "symbols"