[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-fs"
version = "0.2.2"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/benches/**",
"/doc/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-neutral synchronous and asynchronous 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"
[package.metadata.docs.rs]
all-features = true
[features]
async = []
default = []
[lib]
name = "qubit_fs"
path = "src/lib.rs"
doctest = true
[[test]]
name = "async_file_system_review_tests"
path = "tests/async_file_system_review_tests.rs"
[[test]]
name = "async_file_system_tests"
path = "tests/async_file_system_tests.rs"
[[test]]
name = "async_handle_review_tests"
path = "tests/async_handle_review_tests.rs"
[[test]]
name = "copy_deadline_tests"
path = "tests/copy_deadline_tests.rs"
[[test]]
name = "core_boundary_tests"
path = "tests/core_boundary_tests.rs"
[[test]]
name = "effect_recovery_tests"
path = "tests/effect_recovery_tests.rs"
[[test]]
name = "file_system_tests"
path = "tests/file_system_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "list_deadline_tests"
path = "tests/list_deadline_tests.rs"
[[test]]
name = "list_filter_contract_tests"
path = "tests/list_filter_contract_tests.rs"
[[test]]
name = "list_scope_tests"
path = "tests/list_scope_tests.rs"
[[test]]
name = "open_recovery_tests"
path = "tests/open_recovery_tests.rs"
[[test]]
name = "path_contract_tests"
path = "tests/path_contract_tests.rs"
[[test]]
name = "prefix_read_policy_tests"
path = "tests/prefix_read_policy_tests.rs"
[[test]]
name = "properties_tests"
path = "tests/properties_tests.rs"
[[test]]
name = "provider_properties_tests"
path = "tests/provider_properties_tests.rs"
[[test]]
name = "read_buffer_tests"
path = "tests/read_buffer_tests.rs"
[[test]]
name = "read_range_contract_tests"
path = "tests/read_range_contract_tests.rs"
[[test]]
name = "read_window_tests"
path = "tests/read_window_tests.rs"
[[test]]
name = "temp_recovery_contract_tests"
path = "tests/temp_recovery_contract_tests.rs"
[[test]]
name = "uri_floor_disabled_tests"
path = "tests/uri_floor_disabled_tests.rs"
[[test]]
name = "uri_global_default_tests"
path = "tests/uri_global_default_tests.rs"
[[test]]
name = "write_all_snapshot_tests"
path = "tests/write_all_snapshot_tests.rs"
[[test]]
name = "writer_recovery_tests"
path = "tests/writer_recovery_tests.rs"
[[bench]]
name = "read_prefix"
path = "benches/read_prefix.rs"
harness = false
[[bench]]
name = "stream_copy_fallback"
path = "benches/stream_copy_fallback.rs"
harness = false
[dependencies.fluent-uri]
version = "^0.4"
[dependencies.qubit-budget]
version = "0.7"
[dependencies.qubit-io]
version = "0.17"
[dependencies.qubit-redact]
version = "0.9"
features = ["uri"]
[dev-dependencies.criterion]
version = "^0.8"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]