[package]
edition = "2024"
rust-version = "1.90.0"
name = "slumber_template"
version = "5.3.0"
authors = ["Lucas Pickering <lucas@lucaspickering.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Template engine for Slumber. Not intended for external use."
homepage = "https://slumber.lucaspickering.me"
readme = false
keywords = [
"rest",
"http",
"terminal",
"tui",
]
license = "MIT"
repository = "https://github.com/LucasPickering/slumber"
[package.metadata.release]
tag = false
[features]
schema = ["dep:schemars"]
test = ["slumber_util/test"]
[lib]
name = "slumber_template"
path = "src/lib.rs"
[dependencies.bytes]
version = "1.6.1"
features = ["serde"]
default-features = false
[dependencies.derive_more]
version = "2.1.0"
features = [
"debug",
"deref",
"display",
"from",
]
default-features = false
[dependencies.futures]
version = "0.3.28"
[dependencies.indexmap]
version = "2.0.0"
features = ["serde"]
default-features = false
[dependencies.itertools]
version = "0.14.0"
[dependencies.regex]
version = "1.10.5"
default-features = false
[dependencies.saphyr]
version = "0.0.6"
[dependencies.schemars]
version = "1.0.2"
optional = true
[dependencies.serde]
version = "1.0.204"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1.0.120"
features = ["preserve_order"]
default-features = false
[dependencies.slumber_util]
version = "5.3.0"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tracing]
version = "0.1.40"
[dependencies.winnow]
version = "0.7.0"
[dev-dependencies.pretty_assertions]
version = "1.4.0"
[dev-dependencies.proptest]
version = "1.5.0"
[dev-dependencies.proptest-derive]
version = "0.7.0"
[dev-dependencies.rstest]
version = "0.26.0"
default-features = false
[dev-dependencies.serde_json]
version = "1.0.120"
features = ["preserve_order"]
default-features = false
[dev-dependencies.serde_yaml]
version = "0.9.0"
default-features = false
[dev-dependencies.slumber_util]
version = "5.3.0"
features = ["test"]
[dev-dependencies.tokio]
version = "1.39.2"
features = [
"fs",
"macros",
"rt",
]
default-features = false
[dev-dependencies.tokio-util]
version = "0.7.13"
features = ["io"]
[lints.clippy]
allow_attributes = "deny"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
dbg_macro = "warn"
default_trait_access = "allow"
doc_markdown = "allow"
explicit_deref_methods = "allow"
large_enum_variant = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
single_match = "allow"
too_many_lines = "allow"
unused_self = "allow"
used_underscore_binding = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
async_fn_in_trait = "allow"
unsafe_code = "forbid"