upon 0.11.0

A simple, powerful template engine with minimal dependencies and configurable delimiters
Documentation
# 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"
rust-version = "1.66"
name = "upon"
version = "0.11.0"
authors = ["Ross MacArthur <ross@macarthur.io>"]
build = false
include = [
    "src/**/*",
    "LICENSE-*",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple, powerful template engine with minimal dependencies and configurable delimiters"
readme = "README.md"
keywords = [
    "template",
    "jinja2",
    "liquid",
    "mustache",
    "handlebars",
]
categories = ["template-engine"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rossmacarthur/upon"

[package.metadata.docs.rs]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = [
    "functions",
    "serde",
    "unicode",
]
functions = []
serde = ["dep:serde"]
syntax = ["dep:aho-corasick"]
unicode = [
    "dep:unicode-ident",
    "dep:unicode-width",
]

[lib]
name = "upon"
path = "src/lib.rs"

[dependencies.aho-corasick]
version = "1.1.2"
optional = true

[dependencies.serde]
version = "1.0.137"
optional = true

[dependencies.unicode-ident]
version = "1.0.5"
optional = true

[dependencies.unicode-width]
version = "0.2.0"
optional = true

[dev-dependencies.serde]
version = "1.0.137"
features = ["derive"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(internal_debug)"]