Skip to content

Commit

Permalink
update tower-sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Jan 1, 2025
1 parent d6504e1 commit 5148b07
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Unreleased

# 0.8.0

- Update `tower-sessions` to 0.14.0

# 0.7.0

- Update `tower-sessions` to 0.13.0
Expand Down
15 changes: 7 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum-messages"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
categories = ["asynchronous", "network-programming", "web-programming"]
Expand All @@ -12,23 +12,22 @@ readme = "README.md"
repository = "https://github.com/maxcountryman/axum-messages"

[dependencies]
async-trait = "0.1.77"
axum-core = "0.4.3"
axum-core = "0.5.0"
http = "1.0.0"
parking_lot = "0.12.1"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1"
tower = "0.4"
tower-sessions-core = "0.13.0"
tower = "0.5"
tower-sessions-core = "0.14.0"
tracing = { version = "0.1.40", features = ["log"] }

[dev-dependencies]
axum = { version = "0.7.0", features = ["macros"] }
axum = { version = "0.8.1", features = ["macros"] }
http-body-util = "0.1"
hyper = "1.0"
tokio = { version = "1.20", features = ["macros", "rt-multi-thread"] }
tower = "0.4"
tower-sessions = "0.13.0"
tower = "0.5"
tower-sessions = "0.14.0"

[[example]]
name = "basic"
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ use std::{
task::{Context, Poll},
};

use async_trait::async_trait;
use axum_core::{
extract::{FromRequestParts, Request},
response::Response,
Expand Down Expand Up @@ -350,7 +349,6 @@ impl Iterator for Messages {
}
}

#[async_trait]
impl<S> FromRequestParts<S> for Messages
where
S: Send + Sync,
Expand Down

0 comments on commit 5148b07

Please # to comment.