[dependencies.cookie_cutter_core]
default-features = false
version = "0.2.0"
[dependencies.cookie_cutter_proc]
optional = true
version = "0.2.0"
[dev-dependencies.axum]
version = "0.7.9"
[dev-dependencies.serde]
features = ["default", "derive"]
version = "1"
[dev-dependencies.tokio]
features = ["full"]
version = "1.47.1"
[[example]]
name = "axum-todo"
path = "examples/axum-todo.rs"
required-features = ["sync", "proc_macros"]
[[example]]
name = "hello"
path = "examples/hello.rs"
[features]
default = ["serde", "proc_macros"]
proc_macros = ["dep:cookie_cutter_proc"]
serde = ["cookie_cutter_core/serde"]
sync = ["cookie_cutter_core/sync"]
[lib]
name = "cookie_cutter"
path = "src/lib.rs"
[package]
authors = ["Cookie04"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["template-engine"]
description = "A feature-rich template engine with context aware escaping and both runtime and compiletime compilation"
edition = "2021"
keywords = ["template-engine", "template", "html", "escaping"]
license = "MIT OR Apache-2.0"
name = "cookie_cutter"
readme = "README.md"
repository = "https://github.com/Cookie04DE/cookie_cutter/"
rust-version = "1.70"
version = "0.2.0"
[[test]]
name = "call_member_access_arguments"
path = "tests/call_member_access_arguments.rs"
[[test]]
name = "data_types"
path = "tests/data_types.rs"
[[test]]
name = "dollar_syntax"
path = "tests/dollar_syntax.rs"
[[test]]
name = "escape_html"
path = "tests/escape_html.rs"
[[test]]
name = "freestanding"
path = "tests/freestanding.rs"
[[test]]
name = "indentation_marker"
path = "tests/indentation_marker.rs"
[[test]]
name = "indentation_marker_escaped"
path = "tests/indentation_marker_escaped.rs"
[[test]]
name = "indented"
path = "tests/indented.rs"
[[test]]
name = "iterate"
path = "tests/iterate.rs"
[[test]]
name = "multi_curly"
path = "tests/multi_curly.rs"
[[test]]
name = "multi_template"
path = "tests/multi_template.rs"
[[test]]
name = "nested_html_enumerations"
path = "tests/nested_html_enumerations.rs"
[[test]]
name = "nested_iterate"
path = "tests/nested_iterate.rs"
[[test]]
name = "nested_struct"
path = "tests/nested_struct.rs"
[[test]]
name = "newline_escape"
path = "tests/newline_escape.rs"
[[test]]
name = "parameter"
path = "tests/parameter.rs"
[[test]]
name = "static"
path = "tests/static.rs"
[[test]]
name = "static_comments"
path = "tests/static_comments.rs"
[[test]]
name = "static_escaped"
path = "tests/static_escaped.rs"
[[test]]
name = "static_indented"
path = "tests/static_indented.rs"
[[test]]
name = "template_call_as_argument"
path = "tests/template_call_as_argument.rs"
[[test]]
name = "template_literal"
path = "tests/template_literal.rs"
[[test]]
name = "variables"
path = "tests/variables.rs"