binconf 0.3.0

Save and load from a binary configuration file with ease.
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 = "2021"
name = "binconf"
version = "0.3.0"
authors = ["OLoKo64 <reinaldorozatoj.11cg1@aleeas.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Save and load from a binary configuration file with ease."
readme = "README.md"
keywords = [
    "hash",
    "config",
    "binary",
    "toml",
    "json",
]
categories = ["config"]
license = "MIT"
repository = "https://github.com/OLoKo64/binconf"

[package.metadata.docs.rs]
all-features = true

[features]
binary-conf = [
    "dep:bitcode",
    "dep:xxhash-rust",
]
default = ["binary-conf"]
full = [
    "binary-conf",
    "toml-conf",
    "json-conf",
    "yaml-conf",
    "ron-conf",
]
json-conf = ["dep:serde_json"]
ron-conf = ["dep:ron"]
toml-conf = ["dep:toml"]
yaml-conf = ["dep:serde_yaml"]

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

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

[dependencies.bitcode]
version = "0.6.9"
optional = true

[dependencies.dirs]
version = "6.0.0"

[dependencies.ron]
version = "0.12.0"
optional = true

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

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

[dependencies.serde_yaml]
version = "0.9.34-deprecated"
optional = true

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

[dependencies.xxhash-rust]
version = "0.8.15"
features = ["xxh3"]
optional = true