mash-up 0.1.0

A minimalist web development stack that combines the power of Maud, Axum, SQLx and HTMX.
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 = "2021"
name = "mash-up"
version = "0.1.0"
authors = ["Shantanu Mishra <shantanu@yree.io>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimalist web development stack that combines the power of Maud, Axum, SQLx and HTMX."
readme = "README.md"
keywords = [
    "web",
    "mash",
    "maud",
    "axum",
    "htmx",
]
categories = ["web-programming"]
license = "MIT"
repository = "https://github.com/yree/mash"

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

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

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

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

[dependencies.axum]
version = "0.6"

[dependencies.maud]
version = "0.25"

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

[dependencies.sqlx]
version = "0.7"
features = [
    "runtime-tokio",
    "sqlite",
]

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