[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-fs"
version = "0.1.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pluggable filesystem abstraction for Rust"
homepage = "https://github.com/qubit-ltd/rs-fs"
documentation = "https://docs.rs/qubit-fs"
readme = "README.md"
keywords = [
"filesystem",
"storage",
"spi",
"path",
"qubit",
]
categories = [
"filesystem",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-fs"
[features]
default = []
registry-cache = ["dep:qubit-atomic"]
[lib]
name = "qubit_fs"
path = "src/lib.rs"
doctest = true
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[dependencies.log]
version = "0.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.qubit-atomic]
version = "0.13"
optional = true
[dependencies.qubit-io]
version = "0.5"
[dependencies.qubit-metadata]
version = "0.5"
[dependencies.qubit-spi]
version = "0.3"
[dependencies.thiserror]
version = "2.0"
[dependencies.url]
version = "2.5"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]