📑 Overview
🚨 Help
If you need help with this library or have suggestions please go to our Discord Group
📦 Install
Axum Session uses [tokio
].
By Default Axum Session Sqlx uses postgres
and tls-rustls
so if you need tokio native TLS please add default-features = false
to your cargo include for Axum Session Sqlx.
# Cargo.toml
[]
= { = "0.16.0" }
# Postgres + rustls
= { = "0.5.0", = [ "postgres", "tls-rustls"] }
📱 Cargo Feature Flags
You must choose a Database and a tls mode if you disable defaults.
Features | Description |
---|---|
default |
postgres-rustls and tls-rustls |
sqlite |
Enables sqlite usage. |
postgres |
Enables postgres usage. |
mysql |
Enables mysql usage. |
tls-rustls |
Uses rustls for TLS encryption. Must choose one of these. |
tls-native-tls |
Uses native-tls for TLS encryption. Must choose one of these. |
🔎 Examples
You can locate the example files within the Repository