-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
180 lines (172 loc) · 4.16 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
ahash = "0.8.11"
ar = "0.9.0"
base64-simd = "0.8.0"
bitflags = { version = "2.6.0", features = ["serde"] }
bstr = "1.11.0"
bzip2 = "0.4.4"
cached = { version = "0.54.0", features = [
"disk_store",
"ahash",
], default-features = false }
camino = "1.1.9"
cfg-if = "1.0.0"
clap = { version = "4.5.21", features = ["derive"] }
clap_complete = "4.5.38"
clap_mangen = "0.2.24"
clru = "0.6.2"
color-eyre = "0.6.3"
compact_str = { version = "0.8.0", features = ["serde", "smallvec"] }
console = "0.15.8"
dashmap = "6.1.0"
derive_builder = "0.20.2"
directories = "5.0.1"
dirs = "5.0.1"
duct = "0.13.7"
either = "1.13.0"
eyre = "0.6.12"
faster-hex = { version = "0.10.0", default-features = false, features = [
"std",
] }
flate2 = { version = "1.0.35", default-features = false, features = [
"zlib-ng",
] }
flume = { version = "0.11.1", default-features = false }
glob = "0.3.1"
globset = "0.4.15"
ignore = { version = "0.4.23", features = ["simd-accel"] }
indoc = "2.0.5"
itertools = "0.13.0"
lasso = { version = "0.7.3", features = [
"ahasher",
"inline-more",
"multi-threaded",
] }
libc = "0.2.167"
md-5 = "0.10.6"
memchr = "2.7.4"
mimalloc = "0.1.43"
nix = { version = "0.29.0", default-features = false }
num_cpus = "1.16.0"
os_info = { version = "3.9.0", default-features = false }
ouroboros = "0.18.4"
parking_lot = "0.12.3"
phf = { version = "0.11.2", features = ["macros"] }
pretty_assertions = "1.4.1"
proc-exit = "2.0.2"
rayon = "1.10.0"
regex = "1.11.1"
ring = "0.17.8"
rune = "0.13.4"
rune-modules = { version = "0.13.4", features = [
"json",
"process",
"tokio",
"toml",
] }
rust-ini = "0.21.1"
scopeguard = "1.2.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_bytes = "0.11.15"
serde_json = "1.0.133"
smallvec = { version = "1.13.2", features = [
"const_generics",
"const_new",
"serde",
"union",
] }
strum = { version = "0.26.3", features = ["derive"] }
sysinfo = { version = "0.32.1", default-features = false, features = [
"multithread",
"system",
] }
tar = "0.4.43"
tempfile = "3.14.0"
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = [
"macros",
"parking_lot",
"process",
"rt",
] }
tracing = "0.1.41"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = [
"env-filter",
"parking_lot",
] }
winnow = { version = "0.6.20", features = ["simd"] }
xz2 = "0.1.7"
zstd = "0.13.2"
[workspace.lints.rust]
elided_lifetimes_in_paths = "warn"
keyword_idents = "warn"
macro_use_extern_crate = "warn"
meta_variable_misuse = "warn"
redundant_lifetimes = "warn"
rust_2018_idioms = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"
[workspace.lints.clippy]
assigning_clones = "warn"
cast_lossless = "warn"
cloned_instead_of_copied = "warn"
derive_partial_eq_without_eq = "warn"
doc_markdown = "warn"
equatable_if_let = "warn"
explicit_iter_loop = "warn"
flat_map_option = "warn"
format_push_string = "warn"
ignored_unit_patterns = "warn"
manual_assert = "warn"
manual_let_else = "warn"
manual_string_new = "warn"
needless_pass_by_value = "warn"
or_fun_call = "warn"
ptr_as_ptr = "warn"
redundant_clone = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
semicolon_if_nothing_returned = "warn"
type_repetition_in_bounds = "warn"
undocumented_unsafe_blocks = "warn"
uninlined_format_args = "warn"
unnecessary_box_returns = "warn"
unnecessary_safety_doc = "warn"
unnested_or_patterns = "warn"
unwrap_used = "warn"
use_self = "warn"
wildcard_imports = "warn"
[profile.dev]
debug = 2
split-debuginfo = "unpacked"
[profile.release]
lto = "thin"
opt-level = 2
[profile.profiling]
debug = 2
inherits = "release"
lto = false
[profile.dev.package]
# Needed for reasonable performance
flate2.opt-level = 2
libz-ng-sys.opt-level = 2
md-5.opt-level = 2
proc-macro2.opt-level = 2
quote.opt-level = 2
ring.opt-level = 2
rune-macros.opt-level = 2
serde_derive.opt-level = 2
syn.opt-level = 2
zstd-safe.opt-level = 2
zstd-sys.opt-level = 2
zstd.opt-level = 2
#[patch.crates-io]
## Rune
#rune = { path = "patches/rune/crates/rune" }