# 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.2.751" authors = ["OLoKo64 "] build = 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 [lib] name = "binconf" path = "src/lib.rs" [[example]] name = "examples" path = "examples/examples.rs" [dependencies.bincode] version = "1.3.3" optional = true [dependencies.dirs] version = "5.0.1" [dependencies.ron] version = "0.8.1" optional = true [dependencies.serde] version = "1.0.209" features = ["derive"] [dependencies.serde_json] version = "1.0.127" optional = true [dependencies.serde_yaml] version = "0.9.34+deprecated" optional = true [dependencies.toml] version = "0.8.19" optional = true [dependencies.xxhash-rust] version = "0.8.12" features = ["xxh3"] optional = true [features] binary-conf = [ "dep:bincode", "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"]