configfs 0.1.2

A simple application configuration manager
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "configfs"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple application configuration manager"
readme = "README.md"
keywords = ["toml"]
categories = [
    "config",
    "filesystem",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/sulabi/configfs"

[features]
system-dirs = ["dep:dirs"]
watcher = ["dep:notify"]

[lib]
name = "configfs"
path = "src/lib.rs"

[[example]]
name = "read"
path = "examples/read.rs"

[[example]]
name = "system-dirs"
path = "examples/system-dirs.rs"
required-features = ["system-dirs"]

[[example]]
name = "watcher"
path = "examples/watcher.rs"
required-features = ["watcher"]

[[example]]
name = "write"
path = "examples/write.rs"

[dependencies.dirs]
version = "6.0.0"
optional = true

[dependencies.notify]
version = "8.2.0"
optional = true

[dependencies.serde]
version = "1.0.229"
features = ["derive"]

[dependencies.thiserror]
version = "2.0.20"

[dependencies.toml]
version = "1.1.4"

[dev-dependencies.cargo-husky]
version = "1"
features = [
    "precommit-hook",
    "run-cargo-clippy",
    "run-cargo-fmt",
    "run-cargo-test",
]
default-features = false

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
version = "1.53.1"
features = [
    "macros",
    "rt-multi-thread",
    "signal",
]