[package]
edition = "2024"
name = "simple-fs"
version = "0.11.0"
authors = ["Jeremy Chone <jeremy.chone@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple and convenient API for File System access"
homepage = "https://github.com/jeremychone/rust-simple-fs"
readme = "README.md"
keywords = [
"file-system",
"json",
"toml",
"io",
]
categories = ["filesystem"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jeremychone/rust-simple-fs"
[features]
bin-nums = ["byteorder"]
full = [
"with-json",
"with-toml",
"bin-nums",
]
with-json = [
"serde",
"serde_json",
]
with-toml = [
"serde",
"toml",
]
[lib]
name = "simple_fs"
path = "src/lib.rs"
[[test]]
name = "tests_list_dirs"
path = "tests/tests_list_dirs.rs"
[[test]]
name = "tests_list_files"
path = "tests/tests_list_files.rs"
[[test]]
name = "tests_spath"
path = "tests/tests_spath.rs"
[dependencies.byteorder]
version = "1.5"
optional = true
[dependencies.camino]
version = "1"
[dependencies.derive_more]
version = "2.0"
features = [
"from",
"display",
]
[dependencies.flume]
version = "0.12"
[dependencies.globset]
version = "0.4"
[dependencies.memchr]
version = "2"
[dependencies.mime_guess]
version = "2.0.5"
[dependencies.notify]
version = "8"
[dependencies.notify-debouncer-full]
version = "0.7"
[dependencies.path-clean]
version = "1.0.1"
[dependencies.pathdiff]
version = "0.2.2"
features = ["camino"]
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.toml]
version = "1"
optional = true
[dependencies.trash]
version = "5.2.5"
[dependencies.walkdir]
version = "2"
[lints.rust]
unsafe_code = "forbid"