fnroute 0.1.0

A small function router with axum-style handler extraction.
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 = "fnroute"
version = "0.1.0"
authors = ["Atlas Orein <gamesworldcraft@gamil.com>"]
build = false
include = [
    "Cargo.toml",
    "LICENSE",
    "README.md",
    "examples/**",
    "rustfmt.toml",
    "src/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small function router with axum-style handler extraction."
documentation = "https://docs.rs/fnroute"
readme = "README.md"
keywords = [
    "router",
    "handler",
    "dispatch",
    "async",
    "route",
]
categories = [
    "asynchronous",
    "rust-patterns",
]
license = "MIT"
repository = "https://github.com/atlas-orien/fnroute"

[features]
default = ["std"]
std = []

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

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

[dependencies]