[package]
edition = "2024"
name = "rsext4"
version = "0.7.0"
authors = ["Dirinkbottle <2909128143@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight ext4 file system."
homepage = "https://github.com/Starry-OS/rsext4"
documentation = "https://starry-os.github.io/rsext4/"
readme = "README.md"
keywords = [
"ext4",
"filesystem",
"rust",
]
categories = ["filesystem"]
license = "Apache-2.0"
repository = "https://github.com/Starry-OS/rsext4"
[features]
USE_MULTILEVEL_CACHE = []
default = ["USE_MULTILEVEL_CACHE"]
[lib]
name = "rsext4"
path = "src/lib.rs"
[[test]]
name = "api_functional"
path = "tests/api_functional.rs"
[[test]]
name = "crc_integrity"
path = "tests/crc_integrity.rs"
[[test]]
name = "directory_operations"
path = "tests/directory_operations.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "file_operations"
path = "tests/file_operations.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "linux_image_repro"
path = "tests/linux_image_repro.rs"
[[test]]
name = "metadata_lifecycle"
path = "tests/metadata_lifecycle.rs"
[dependencies.ax-kspin]
version = "0.3.11"
[dependencies.bitflags]
version = "2.10"
[dependencies.log]
version = "0.4"