[dependencies.byteorder]
optional = true
version = "1.5"
[dependencies.camino]
version = "1"
[dependencies.derive_more]
features = ["from", "display"]
version = "2.0"
[dependencies.flume]
version = "0.11.1"
[dependencies.globset]
version = "0.4"
[dependencies.memchr]
version = "2"
[dependencies.notify]
version = "8"
[dependencies.notify-debouncer-full]
version = "0.6"
[dependencies.path-clean]
version = "1.0.1"
[dependencies.pathdiff]
features = ["camino"]
version = "0.2.2"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1"
[dependencies.serde_json]
optional = true
version = "1"
[dependencies.toml]
optional = true
version = "0.9"
[dependencies.trash]
version = "5.2.5"
[dependencies.walkdir]
version = "2"
[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"
[lints.rust]
unsafe_code = "forbid"
[package]
authors = ["Jeremy Chone <jeremy.chone@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["filesystem"]
description = "Simple and convenient API for File System access"
edition = "2024"
homepage = "https://github.com/jeremychone/rust-simple-fs"
keywords = ["file-system", "json", "toml", "io"]
license = "MIT OR Apache-2.0"
name = "simple-fs"
readme = "README.md"
repository = "https://github.com/jeremychone/rust-simple-fs"
version = "0.10.0"
[[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"