You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This migrates from axum-sessions to tower-sessions.
Some notable differences:
1. Readable and writable sessions are replaced with a single session
type.
2. Sessions no longer contain data and instead are a pointer to a
session; this means we don't need a secret key anymore.
3. serde_json::Value is accessible directly.
4. The session layer itself is fallible, so we use handle error layer to
ensure compatibility with axum.
Closes#13.
0 commit comments