[package]
edition = "2024"
rust-version = "1.85.0"
name = "app-json-settings"
version = "2.7.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"
[package.metadata.docs.rs]
all-features = true
additional-targets = ["x86_64-pc-windows-msvc"]
[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 = "recovery"
path = "examples/recovery.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