-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 845 Bytes
/
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
[package]
name = "yoink"
version = "0.0.3"
edition = "2021"
[lib]
name = "yoink"
path = "src/lib.rs"
[[bin]]
name = "yoink-cli"
path = "src/bin.rs"
[dependencies]
clap = { version = "4.5.17", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.34"
rust-embed = "8.5.0"
chrono = "0.4.38"
zip = { version="2.2.0", features=["chrono", "aes-crypto"] }
minidump-writer = "0.10.1"
crash-context = "0.6.3"
regex = "1.11.1"
ignore = "0.4.23"
num_cpus = "1.16.0"
[target.'cfg(target_os = "windows")'.dependencies]
windows = {version = "0.52", features = [
"Win32_Storage_FileSystem",
"Win32_System",
"Win32_System_ProcessStatus",
"Win32_Foundation",
"Win32_System_Threading"
]}
ntfs = "0.4.0"
nt-time = "0.10.3"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1