rustio-core 2.0.2

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 = "2.0.2"
authors = ["Abdulwahed Mansour <abdulwahed.sweden@gmail.com>"]
build = "build.rs"
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"

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

[dependencies.argon2]
version = "0.5"
features = [
    "alloc",
    "password-hash",
    "rand",
]
default-features = false

[dependencies.bytes]
version = "1"

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
    "serde",
]
default-features = false

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

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

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

[dependencies.minijinja]
version = "2"
features = [
    "builtins",
    "loader",
    "macros",
    "multi_template",
    "serde",
]
default-features = false

[dependencies.rand]
version = "0.8"

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

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

[dependencies.serde_json]
version = "1"

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

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