krustie 0.3.0

Krustie is a simple and easy-to-use backend framework.
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 = "2024"
name = "krustie"
version = "0.3.0"
authors = ["Emre Can Corapci"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Krustie is a simple and easy-to-use backend framework."
homepage = "https://github.com/emrecancorapci/krustie"
readme = "README.md"
keywords = [
    "http",
    "web",
    "framework",
]
categories = [
    "network-programming",
    "web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/emrecancorapci/krustie"

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

[[example]]
name = "simple"
path = "examples/simple.rs"

[[test]]
name = "response"
path = "tests/response.rs"

[[test]]
name = "router"
path = "tests/router.rs"

[dependencies.dyn-clone]
version = "1.0.20"

[dependencies.flate2]
version = "1.1.9"

[dependencies.regex]
version = "1.12.3"

[dependencies.serde_json]
version = "1.0.149"

[dependencies.tokio]
version = "1.52.0"
features = ["full"]

[profile.dev]
opt-level = 0
debug = 2
panic = "abort"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
panic = "unwind"
strip = true

[profile.test]
opt-level = 0
debug = 2