-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
74 lines (60 loc) · 1.59 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
[package]
name = "wrappe"
description = "Packer for creating self-contained single-binary applications from executables and directories"
version = "1.0.4"
license = "BSD-2-Clause"
authors = ["Christian Sdunek <[email protected]>"]
categories = ["compression", "filesystem", "command-line-utilities"]
keywords = ["compression", "binary", "executable", "packer", "filesystem"]
edition = "2021"
rust-version = "1.77.2"
include = [
"Cargo.toml",
"src/**/*",
"startpe.tar",
"build.rs",
"LICENSE",
]
build = "build.rs"
readme = "README.md"
repository = "https://github.com/Systemcluster/wrappe"
[[bin]]
name = "wrappe"
path = "src/main.rs"
[workspace]
members = [
".",
"startpe",
]
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = "fat"
opt-level = 's'
panic = "abort"
strip = "symbols"
[profile.dev]
panic = "abort"
opt-level = 0
[dependencies]
staticfilemap = { version = "0.8.0", default-features = false, features = ["zstd", "multithread"] }
editpe = { version = "0.2.1", default-features = false, features = ["std"] }
clap = { version = "4.5.21", features = ["std", "color", "suggestions", "derive", "unicode", "wrap_help"] }
color-backtrace = "0.6.1"
console = "0.15.8"
indicatif = "0.17.9"
jwalk = "0.8.1"
num_cpus = "1.16.0"
path-slash = "0.2.1"
rand = "0.8.5"
rayon = "1.10.0"
sysinfo = "0.32.0"
twox-hash = { version = "1.6.3", default-features = false }
zerocopy = "0.8.10"
zstd = { version = "0.13.2", default-features = false, features = ["zstdmt", "zdict_builder"] }
[build-dependencies]
jwalk = "0.8.1"
which = "7.0.0"
tar = "0.4.43"