feather 0.8.1

Feather: A minimal HTTP framework for Rust
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 = "feather"
version = "0.8.1"
authors = ["Bersis Sevimli"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Feather: A minimal HTTP framework for Rust"
readme = "README.md"
keywords = [
    "http",
    "web",
    "framework",
    "minimal",
    "rust",
]
categories = [
    "web-programming",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/BersisSe/feather"

[features]
default = ["log"]
json = [
    "dep:serde",
    "dep:serde_json",
    "feather-runtime/json",
]
jwt = [
    "dep:jsonwebtoken",
    "json",
    "feather-macros/jwt",
]
log = [
    "dep:log",
    "dep:tracing-subscriber",
    "feather-runtime/log",
]

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

[dependencies.chrono]
version = "0.4.41"
features = ["now"]
default-features = false

[dependencies.feather-macros]
version = "~0.2"

[dependencies.feather-runtime]
version = "~0.6"
default-features = false

[dependencies.jsonwebtoken]
version = "9"
optional = true
default-features = false

[dependencies.log]
version = "~0.4"
optional = true
default-features = false

[dependencies.parking_lot]
version = "~0.12"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
default-features = false

[dependencies.serde_json]
version = "1"
features = ["std"]
optional = true
default-features = false

[dependencies.tracing-subscriber]
version = "0.3"
optional = true