[package]
edition = "2021"
rust-version = "1.74"
name = "f00-core"
version = "0.8.0"
authors = ["theesfeld"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core listing, sorting, and filtering for f00"
homepage = "https://f00.sh"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/theesfeld/f00"
[features]
default = []
io-uring = ["dep:io-uring"]
[lib]
name = "f00_core"
path = "src/lib.rs"
[[test]]
name = "speed_smoke"
path = "tests/speed_smoke.rs"
[[bench]]
name = "list_bench"
path = "benches/list_bench.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.jwalk]
version = "0.8"
[dependencies.rayon]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.walkdir]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.7"
optional = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"