#sqlx #axum #redis #log-level

axum-kit

Streamline the integration and usage of Axum with SQLx and Redis

15 releases (5 breaking)

new 0.6.0 Jan 19, 2025
0.5.2 Jan 16, 2025
0.4.3 Dec 31, 2024
0.3.1 Dec 13, 2024
0.1.2 Nov 22, 2024

#1689 in Database interfaces

Download history 360/week @ 2024-11-17 187/week @ 2024-11-24 145/week @ 2024-12-01 379/week @ 2024-12-08 334/week @ 2024-12-15 8/week @ 2024-12-22 232/week @ 2024-12-29 154/week @ 2025-01-05 113/week @ 2025-01-12

523 downloads per month

MIT license

30KB
624 lines

axum-kit

GitHub CI Crates.io Documentation Crates.io MSRV Crates.io Total Downloads

Streamline the integration and usage of Axum with SQLx and Redis.

Without further ado, please see the demo.

Usage

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

[dependencies]
axum-kit = { version = "0.6.0", features = ["postgres", "redis"] }

Example Configuration File

[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
idle_timeout = 600
max_lifetime = 1800

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

License

This project is licensed under the MIT license.

Dependencies

~17–32MB
~495K SLoC