-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.27 KB
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
[package]
name = "dwarf122"
description = "DWARF 1 to DWARF 2 converter."
authors = ["David Balatoni"]
license = "MIT OR Apache-2.0"
version = "0.0.1"
edition = "2024"
publish = false
repository = "https://github.com/dbalatoni13/dwarf122"
readme = "README.md"
categories = ["command-line-utilities"]
rust-version = "1.85"
[[bin]]
name = "dwarf122"
path = "src/main.rs"
[profile.release]
panic = "abort"
[profile.release-lto]
inherits = "release"
lto = "fat"
strip = "debuginfo"
codegen-units = 1
[dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "write_symbol_table" }
argp = "0.3"
typed-path = "0.9"
dyn-clone = "1.0"
filetime = "0.2"
glob = "0.3"
hex = "0.4"
log = "0.4"
memmap2 = "0.9"
nodtool = "1.4"
num_enum = "0.7"
object = { git = "https://github.com/dbalatoni13/object.git", branch = "copy_user_sections", features = ["read_core", "std", "elf", "write_std", "build"], default-features = false }
sha-1 = "0.10"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
xxhash-rust = { version = "0.8", features = ["xxh3"] }
zerocopy = { version = "0.8", features = ["derive"] }
gimli = "0.33.0"
ppc750cl = "0.3.3"
[target.'cfg(target_env = "musl")'.dependencies]
mimalloc = "0.1"