aws-lambda-router 0.1.1

A lightweight, Express-like REST API routing framework for AWS Lambda with middleware, authentication, and CORS support
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.futures]
version = "0.3"

[dependencies.lambda_runtime]
version = "0.8"

[dependencies.lazy_static]
version = "1.4"

[dependencies.regex]
version = "1.10"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["rt", "macros"]
version = "1.0"

[dev-dependencies.chrono]
version = "0.4"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.tracing]
version = "0.1"

[dev-dependencies.tracing-subscriber]
version = "0.3"

[dev-dependencies.uuid]
features = ["v4"]
version = "1.0"

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

[package]
authors = ["Shehzad Gill <shehzadigill@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "asynchronous", "network-programming"]
description = "A lightweight, Express-like REST API routing framework for AWS Lambda with middleware, authentication, and CORS support"
documentation = "https://docs.rs/aws-lambda-router"
edition = "2021"
homepage = "https://github.com/Rehan712/lambda-router"
keywords = ["aws", "lambda", "router", "serverless", "api"]
license = "MIT"
name = "aws-lambda-router"
readme = "README.md"
repository = "https://github.com/Rehan712/lambda-router"
version = "0.1.1"

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

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

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