-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 751 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 751 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
[package]
name = "staticlib-fucker"
version = "0.1.0"
edition = "2024"
description = "A utility for mangling names in static object files. Mainly useful for leakage of non-exported symbols in Rust static libraries."
license = "Unlicense"
homepage = "https://github.com/zeozeozeo/staticlib-fucker"
repository = "https://github.com/zeozeozeo/staticlib-fucker"
readme = "README.md"
keywords = ["staticlib", "mangler", "leakage", "cli", "utility"]
categories = [
"command-line-utilities",
"development-tools::ffi",
"development-tools",
]
[dependencies]
anyhow = "1.0.98"
ar = "0.9.0"
clap = { version = "4.5.42", features = ["derive"] }
object = { version = "0.37.1", features = ["write_core"] }
rand = "0.9.2"
[profile.release]
lto = "fat"