app-json-settings 2.5.0

Tiny typed JSON settings persistence for Rust applications.
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"
rust-version = "1.85.0"
name = "app-json-settings"
version = "2.5.0"
authors = ["nabbisen"]
build = false
exclude = [".vscode/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tiny typed JSON settings persistence for Rust applications."
readme = "README.md"
keywords = [
    "json",
    "serde",
    "settings",
    "config",
    "appdata",
]
categories = ["config"]
license = "Apache-2.0"
repository = "https://github.com/nabbisen/app-json-settings-rs"

[features]
default = []
uwp = ["dep:windows"]

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

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

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

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

[[test]]
name = "public_api"
path = "tests/public_api.rs"

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

[dependencies.serde_json]
version = "1"

[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
    "Storage",
    "Storage_Search",
]
optional = true