# 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 = "origami-engine" version = "0.1.3-alpha.7" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A templating engine for rust" readme = "README.md" keywords = [ "templates", "engine", "markup", "html", "web", ] categories = ["template-engine"] license = "MIT OR Apache-2.0" repository = "https://github.com/ratnaraj7/origami-engine" [lib] name = "origami_engine" path = "src/lib.rs" [[test]] name = "all" path = "tests/all.rs" [[test]] name = "try" path = "tests/try.rs" [[bench]] name = "origami" path = "benches/origami.rs" harness = false [dependencies.axum] version = "0.7.6" optional = true [dependencies.html-escape] version = "0.2.13" optional = true [dependencies.minify-html] version = "0.15.0" optional = true [dependencies.origami-macros] version = "0.1.0-alpha.9" default-features = false [dev-dependencies.axum] version = "0.7.5" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.trybuild] version = "1.0.99" [features] axum = ["dep:axum"] default = [ "html_escape", "minify_html", ] html_escape = [ "origami-macros/html_escape", "dep:html-escape", ] minify_html = [ "origami-macros/minify_html", "dep:minify-html", ]