# 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 = "zen_template" version = "0.1.0" authors = ["ExplodingDragon "] description = "A simple template engine based on rust." keywords = [ "template", "template-engine", ] license = "MIT" repository = "https://github.com/d7z-team/zen_template-rs" [profile.release] opt-level = "z" lto = true panic = "abort" [dependencies.log] version = "0.4" [dependencies.serde] version = "1.0" optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.serde_yaml] version = "0.9" optional = true [dev-dependencies.indoc] version = "1.0" [dev-dependencies.serde] version = "1.0" [dev-dependencies.serde_json] version = "1.0" [dev-dependencies.serde_yaml] version = "0.9" [dev-dependencies.simple_logger] version = "4" [features] all = [ "json", "yaml", ] default = [] json = [ "serde", "serde_json", ] yaml = [ "serde", "serde_yaml", ]