[package]
edition = "2021"
rust-version = "1.87"
name = "btrfs-core"
version = "0.1.4"
authors = ["Albert Hui <albert@securityronin.com>"]
build = false
exclude = [
"/fuzz",
"/.github",
"/docs",
"/tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust from-scratch btrfs filesystem reader — superblock, chunk-tree logical→physical mapping, B-tree navigation, over any byte source"
homepage = "https://github.com/SecurityRonin/btrfs-forensic"
documentation = "https://docs.rs/btrfs-core"
readme = "README.md"
keywords = [
"forensics",
"btrfs",
"filesystem",
"dfir",
"parser",
]
categories = [
"parser-implementations",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/btrfs-forensic"
[features]
default = []
vfs = ["dep:forensic-vfs"]
[lib]
name = "btrfs_core"
path = "src/lib.rs"
[dependencies.crc]
version = "3"
[dependencies.flate2]
version = "1"
[dependencies.forensic-vfs]
version = "0.7"
optional = true
[dependencies.lzo]
version = "0.1"
[dependencies.ruzstd]
version = "0.8"
[dependencies.thiserror]
version = "2"