[package]
edition = "2024"
rust-version = "1.94"
name = "linker-diff"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Diffs and validates ELF binaries"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wild-linker/wild"
resolver = "2"
[lib]
name = "linker_diff"
path = "src/lib.rs"
[[bin]]
name = "linker-diff"
path = "src/bin/linker-diff.rs"
[dependencies.anyhow]
version = "1.0.97"
[dependencies.clap]
version = "4.1.0"
features = ["derive"]
[dependencies.colored]
version = "3.0.0"
[dependencies.gimli]
version = "0.33.0"
[dependencies.hashbrown]
version = "0.17.1"
[dependencies.iced-x86]
version = "1.17.0"
features = [
"std",
"decoder",
"gas",
]
default-features = false
[dependencies.itertools]
version = "0.14.0"
[dependencies.linker-layout]
version = "0.9.0"
[dependencies.linker-trace]
version = "0.9.0"
[dependencies.linker-utils]
version = "0.9.0"
[dependencies.memchr]
version = "2.7.0"
[dependencies.memmap2]
version = "0.9.0"
[dependencies.object]
version = "0.39.1"
features = [
"compression",
"elf",
"macho",
"read_core",
"std",
"unaligned",
"archive",
]
default-features = false
[dependencies.symbolic-demangle]
version = "13.0.0"
features = [
"cpp",
"rust",
]
default-features = false
[dependencies.tabled]
version = "0.20.0"
[dependencies.tempfile]
version = "3.0.2"
[dependencies.tracing]
version = "0.1.35"
[dependencies.tracing-subscriber]
version = "0.3.16"
features = [
"env-filter",
"fmt",
"registry",
]
default-features = false
[dependencies.which]
version = "8.0.0"
[dependencies.zerocopy]
version = "0.8.27"
features = ["derive"]
[lints.clippy]
bool_to_int_with_if = "allow"
case_sensitive_file_extension_comparisons = "warn"
cast_lossless = "warn"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
cloned_instead_of_copied = "warn"
default_trait_access = "allow"
doc_markdown = "allow"
explicit_deref_methods = "allow"
explicit_iter_loop = "warn"
if_not_else = "warn"
ignored_unit_patterns = "allow"
implicit_clone = "warn"
inconsistent_struct_constructor = "warn"
indexing_slicing = "allow"
items_after_statements = "allow"
iter_not_returning_iterator = "allow"
manual_assert = "warn"
map_unwrap_or = "warn"
match_same_arms = "allow"
match_wildcard_for_single_variants = "warn"
missing_errors_doc = "allow"
must_use_candidate = "warn"
mut_mut = "allow"
needless_pass_by_ref_mut = "warn"
needless_pass_by_value = "warn"
needless_update = "allow"
range_plus_one = "warn"
redundant_closure_for_method_calls = "allow"
redundant_else = "warn"
semicolon_if_nothing_returned = "warn"
single_match = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "warn"
uninlined_format_args = "warn"
unnecessary_wraps = "warn"
unreadable_literal = "allow"
unused_self = "warn"
wildcard_imports = "warn"