sysroot-cleaner/Cargo.toml
Matteo Settenvini f2fc705fa0 fix: only warn on missing library, but process the rest
If a library is not found for a given binary, keep processing
the rest of libraries in the DSO resolver. This avoids removing
other, required DSOs by still adding them to the graph.

Additionally, bump deps to fix a Rust Analyzer error with newer
Rust versions, and run `cargo clippy`.
2025-05-05 15:47:47 +02:00

26 lines
798 B
TOML

# SPDX-FileCopyrightText: Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
# SPDX-License-Identifier: EUPL-1.2
[package]
name = "sysroot-cleaner"
authors = ["Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>"]
version = "0.1.0"
edition = "2024"
license = "EUPL-1.2"
readme = "README.md"
[dependencies]
anyhow = { version = "1.0" }
async-trait = { version = "0.1" }
clap = { version = "4.5", features = ["derive"] }
env_logger = { version = "0.11" }
ignore = { version = "0.4" }
indoc = { version = "2.0" }
goblin = { version = "0.9" }
log = { version = "0.4" }
memmap2 = { version = "0.9" }
nix = { version = "0.30", features = ["fs"] }
petgraph = { version = "0.8" }
tokio = { version = "1", features = ["full"] }
walkdir = { version = "2" }
bytesize = { version = "2.0" }