forked from Mufanc/DexHunter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 765 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (22 loc) · 765 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
[package]
name = "dexhunter"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# https://lifthrasiir.github.io/rustlog/why-is-a-rust-executable-large.html
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Strip symbols from binary*
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.0.14", features = ["derive"] }
env_logger = "0.10"
log = "0.4"
nix = { version = "0.26.2", features = [ "uio" ] }
once_cell = "1.18.0"
regex = "1.6.0"
[dev-dependencies]
cargo-make = "0.36.1"