-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (33 loc) · 1.01 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
[package]
name = "armerge"
version = "2.1.0"
authors = ["tux3 <barrdetwix@gmail.com>"]
edition = "2021"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/tux3/armerge/"
categories = ["command-line-utilities", "development-tools::build-utils"]
description = "Tool to merge and control visibility of static libraries"
[dependencies]
objpoke = "0.3"
structopt = "0.3"
ar = "0.9"
tempfile = "3.3.0"
rand = "0.8"
object = "0.36.5"
goblin = "0.9.2"
regex = "1.3.9"
rayon = "1.4.0"
thiserror = "2.0.8"
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.14", features = ["env-filter", "local-time"], optional = true }
time = { version = "0.3.11", optional = true }
[[bin]]
name = "armerge"
required-features = ["log_subscriber"]
[features]
default = ["log_subscriber"]
# EXPERIMENTAL. Uses objpoke instead of objcopy for localizing ELF symbols in-place. Very fast, but not stable for production use.
objpoke_symbols = []
log_subscriber = ["dep:tracing-subscriber", "dep:time"]