-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
59 lines (52 loc) · 1.26 KB
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
[package]
name = "collapsescanner"
version = "1.0.0"
edition = "2021"
authors = ["dest4590"]
default-run = "collapsescanner"
[[bin]]
name = "collapsescanner"
path = "src/main.rs"
required-features = []
[[bin]]
name = "remapper"
path = "scripts/remapper.rs"
[features]
default = ["cli"]
cli = ["clap", "colored"]
gui = ["iced", "rfd", "tokio"]
[dependencies]
regex = "1.12.3"
zip = "8.1.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.26.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.2"
bloomfilter = "3.0.1"
ipnet = "2.11.0"
moka = { version = "0.12.13", features = ["sync"] }
memmap2 = "0.9.10"
# CLI dependencies (optional)
colored = { version = "3.1.1", optional = true }
clap = { version = "4.5.60", features = ["derive"], optional = true }
# GUI dependencies (optional)
iced = { version = "0.14.0", features = ["tokio", "svg"], optional = true }
rfd = { version = "0.17.2", optional = true }
tokio = { version = "1.49.0", features = ["full"], optional = true }
[profile.release]
codegen-units = 1
opt-level = "z"
panic = "abort"
strip = true
lto = true