-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 837 Bytes
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 837 Bytes
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
[package]
name = "collapsescanner"
version = "1.0.0"
edition = "2021"
authors = ["dest4590"]
default-run = "collapsescanner"
[[bin]]
name = "remapper"
path = "scripts/remapper.rs"
[dependencies]
regex = "1.12.3"
zip = "8.4.0"
indicatif = "0.18.4"
lazy_static = "1.5.0"
url = "2.5.8"
hex = "0.4.3"
byteorder = "1.5.0"
walkdir = "2.5.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tempfile = "3.27.0"
thiserror = "2.0.18"
rayon = "1.11.0"
encoding_rs = "0.8.35"
wildmatch = "2.6.1"
lru = "0.16.3"
sysinfo = "0.38.4"
bloomfilter = "3.0.1"
ipnet = "2.12.0"
moka = { version = "0.12.15", features = ["sync"] }
memmap2 = "0.9.10"
colored = { version = "3.1.1" }
clap = { version = "4.6.0", features = ["derive"] }
[profile.release]
codegen-units = 1
opt-level = "z"
panic = "abort"
strip = true
lto = true