atoman 0.2.3

This library provides a static data that can be accessed safely and concurrently from any part of your program
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 = "atoman"
version = "0.2.3"
authors = ["Bulat Sh. <t.me/fuderis>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides a static data that can be accessed safely and concurrently from any part of your program"
readme = "README.md"
keywords = [
    "atomic",
    "static",
    "flag",
    "state",
    "config",
]
categories = [
    "development-tools",
    "rust-patterns",
]
license = "MIT"
repository = "https://github.com/fuderis/rs-atoman"

[features]
config = [
    "json-config",
    "toml-config",
]
full = [
    "config",
    "logger",
    "trace",
]
json-config = [
    "dep:serde",
    "dep:serde_json",
]
logger = [
    "dep:log",
    "dep:chrono",
]
toml-config = [
    "dep:serde",
    "dep:toml",
]
trace = []

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

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

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

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

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

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

[dependencies.arc-swap]
version = "1.8.0"

[dependencies.chrono]
version = "0.4.42"
optional = true

[dependencies.log]
version = "0.4.29"
optional = true

[dependencies.macron]
version = "0.1.13"
features = ["derive"]

[dependencies.once_cell]
version = "1.21.3"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0.148"
optional = true

[dependencies.tokio]
version = "1.49.0"
features = ["full"]

[dependencies.toml]
version = "0.9.8"
optional = true