Files
kde-linux/btrfs-cleanup/Cargo.toml
Harald Sitter 1457a9f85e simplify the btrfs cleanup
the previous approach wasn't working correctly because paths are from
the host and mean nothing inside the container. as it turns out the
builtin recursive delete works as intended though, so let's use that.

since we need to find our "root" subvolume path now we do a simple glob
run to locate it
2025-05-02 20:52:36 +02:00

12 lines
194 B
TOML

# SPDX-License-Identifier: BSD-2-Clause
# SPDX-FileCopyrightText: None
[package]
name = "btrfs-cleanup"
version = "0.1.0"
edition = "2024"
[dependencies]
glob = "0.3.2"
libbtrfsutil = "0.7.1"