rustio-core 0.3.0

Runtime core for RustIO: HTTP server, router, middleware, ORM, admin, and migrations.
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"
rust-version = "1.75"
name = "rustio-core"
version = "0.3.0"
authors = ["Abdulwahed Mansour <abdulwahed.sweden@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime core for RustIO: HTTP server, router, middleware, ORM, admin, and migrations."
homepage = "https://github.com/abdulwahed-sweden/rustio"
readme = "README.md"
keywords = [
    "web",
    "framework",
    "admin",
    "orm",
    "sqlite",
]
categories = ["web-programming::http-server"]
license = "MIT"
repository = "https://github.com/abdulwahed-sweden/rustio"

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

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

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

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

[dependencies.bytes]
version = "1"

[dependencies.http-body-util]
version = "0.1"

[dependencies.hyper]
version = "1"
features = [
    "http1",
    "server",
]

[dependencies.hyper-util]
version = "0.1"
features = ["tokio"]

[dependencies.rustio-macros]
version = "0.3.0"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "sqlite",
]
default-features = false

[dependencies.tokio]
version = "1"
features = [
    "net",
    "rt-multi-thread",
    "macros",
]