[package]
edition = "2024"
name = "btrfs-uapi"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wrappers around the btrfs userspace interface (ioctls and sysfs)"
homepage = "https://github.com/rustutils/btrfs-progrs"
readme = "README.md"
keywords = [
"btrfs",
"ioctl",
"filesystem",
"linux",
"sysfs",
]
categories = [
"filesystem",
"os::linux-apis",
]
license = "GPL-2.0-only"
repository = "https://github.com/rustutils/btrfs-progrs"
resolver = "2"
[lib]
name = "btrfs_uapi"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.bitflags]
version = "2"
[dependencies.nix]
version = "0.31.2"
features = [
"ioctl",
"fs",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
]
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.bindgen]
version = "0.72.1"