# 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 = "merde" version = "8.0.0" authors = ["Amos Wenger "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Serialize and deserialize with declarative macros" readme = "README.md" keywords = [ "serialization", "deserialization", ] categories = [ "encoding", "parser-implementations", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/bearcove/merde" [lib] name = "merde" path = "src/lib.rs" [[example]] name = "ahash" path = "examples/ahash.rs" required-features = [ "json", "ahash", ] [[example]] name = "enums" path = "examples/enums.rs" required-features = ["json"] [[example]] name = "infinite-stack" path = "examples/infinite-stack.rs" required-features = ["json"] [[example]] name = "into-static" path = "examples/into-static.rs" required-features = ["json"] [[example]] name = "mixed" path = "examples/mixed.rs" required-features = ["json"] [[example]] name = "opinions" path = "examples/opinions.rs" required-features = ["json"] [[example]] name = "return-deserialize" path = "examples/return-deserialize.rs" required-features = ["json"] [[example]] name = "simple" path = "examples/simple.rs" required-features = ["json"] [[example]] name = "yaml" path = "examples/yaml.rs" required-features = ["yaml"] [dependencies.ahash] version = "0.8.11" optional = true [dependencies.merde_core] version = "8.0.0" optional = true [dependencies.merde_json] version = "8.0.0" optional = true [dependencies.merde_msgpack] version = "8.0.0" optional = true [dependencies.merde_time] version = "8.0.0" features = [ "merde", "deserialize", ] optional = true [dependencies.merde_yaml] version = "8.0.0" optional = true [features] ahash = ["dep:ahash"] core = ["dep:merde_core"] default = [ "core", "deserialize", ] deserialize = ["core"] full = [ "core", "deserialize", "json", "yaml", "msgpack", "time", "rusqlite", ] json = [ "dep:merde_json", "merde_time/json", ] msgpack = ["dep:merde_msgpack"] rusqlite = ["merde_core/rusqlite"] serde = ["merde_core/serde"] time = ["dep:merde_time"] yaml = ["dep:merde_yaml"]