[[example]]
name = "parse_args"
path = "./examples/parse_args.rs"
required-features = ["typed_args"]
[dependencies.anyhow]
version = "1.0.75"
[dependencies.dashmap]
version = "5.5.3"
[dependencies.log]
optional = true
version = "0.4.20"
[dependencies.nom]
version = "7.1.3"
[dependencies.paste]
optional = true
version = "1.0.14"
[dependencies.thiserror]
version = "1.0.49"
[features]
debug = ["dep:log"]
default = ["text", "os", "math", "typed_args"]
math = ["dep:paste"]
os = []
text = []
typed_args = []
[package]
authors = ["Sergio Ribera"]
categories = ["template-engine", "text-processing"]
description = "Template String made with nom parser"
edition = "2021"
homepage = "https://github.com/SergioRibera/srtemplate"
include = ["**/**/*.rs", "Cargo.toml", "rust-toolchain.toml", "rustfmt.toml"]
keywords = ["runtime", "string", "template"]
license = "MIT OR Apache-2.0"
name = "srtemplate"
readme = "README.md"
repository = "https://github.com/SergioRibera/srtemplate"
version = "0.2.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.dev]
incremental = true
opt-level = 1
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
panic = "abort"
strip = true