axum-kit 0.6.8

Streamline the integration and usage of Axum with SQLx and Redis
Documentation
# axum-kit

[![GitHub CI](https://github.com/4lkaid/axum-kit/actions/workflows/ci.yaml/badge.svg)](https://github.com/4lkaid/axum-kit/actions/workflows/ci.yaml)
[![Crates.io](https://img.shields.io/crates/v/axum-kit)](https://crates.io/crates/axum-kit)
[![Documentation](https://docs.rs/axum-kit/badge.svg)](https://docs.rs/axum-kit)
[![Crates.io MSRV](https://img.shields.io/crates/msrv/axum-kit?color=orange)](https://crates.io/crates/axum-kit)
[![Crates.io Total Downloads](https://img.shields.io/crates/d/axum-kit)](https://crates.io/crates/axum-kit)

Streamline the integration and usage of [Axum](https://github.com/tokio-rs/axum) with [SQLx](https://github.com/launchbadge/sqlx) and [Redis](https://github.com/redis-rs/redis-rs).

Without further ado, please see the [demo](https://github.com/4lkaid/axum-kit/tree/main/examples).

## Usage

To use `axum-kit`, add the following to your `Cargo.toml`:

```toml
[dependencies]
axum-kit = { version = "0.6.8", features = ["postgres", "redis"] }
```

## Example Configuration File

```toml
[general]
listen = "0.0.0.0:8000"

[logger]
# Log levels: trace > debug > info > warn > error
# trace: Very detailed debugging information.
# debug: General debugging information.
# info: Normal operational information.
# warn: Potential issues.
# error: Serious problems.
level = "debug"
# writer options:
# file: Logs to "directory/file_name_prefix.year-month-day".
# stdout: Logs to console.
writer = "file"
directory = "./log"
file_name_prefix = "axum_kit.log"

[postgres]
url = "postgres://postgres:@127.0.0.1:5432/postgres"
max_connections = 10
min_connections = 1
acquire_timeout = 30  # seconds
idle_timeout = 600    # seconds
max_lifetime = 1800   # seconds

[redis]
url = "redis://127.0.0.1:6379"

```

## License

This project is licensed under the [MIT license](https://github.com/4lkaid/axum-kit/blob/main/LICENSE).