[package]
edition = "2021"
name = "rldd"
version = "0.4.0"
authors = ["Adhemerval Zanella <zatrazz@gmail.com>"]
build = false
exclude = [
"TODO.md",
"doc/screenshot.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A program to print shared object dependencies
"""
homepage = "https://github.com/zatrazz/rldd/"
readme = "README.md"
keywords = [
"elf",
"mach-o",
"cli",
"linux",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/zatrazz/rldd/"
[[bin]]
name = "rldd"
path = "src/main.rs"
[dependencies.argh]
version = "0.1.19"
[dependencies.glob]
version = "0.3.4"
[dependencies.memmap2]
version = "0.9.11"
[dependencies.object]
version = "0.40.0"
features = ["read"]
default-features = false
[dependencies.termcolor]
version = "1.4.1"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies.raw-cpuid]
version = "11.6.0"
[target.'cfg(any(target_os = "macos", target_os = "android"))'.dependencies.libc]
version = "0.2.138"
[target.'cfg(target_os = "freebsd")'.dev-dependencies.tempfile]
version = "3.3.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true