File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 11# Unreleased
22
3+ # 0.8.0
4+
5+ - Update ` tower-sessions ` to 0.14.0
6+
37# 0.7.0
48
59- Update ` tower-sessions ` to 0.13.0
Original file line number Diff line number Diff line change 11[package ]
22name = " axum-messages"
3- version = " 0.7 .0"
3+ version = " 0.8 .0"
44edition = " 2021"
55authors = [
" Max Countryman <[email protected] >" ]
66categories = [" asynchronous" , " network-programming" , " web-programming" ]
@@ -12,23 +12,22 @@ readme = "README.md"
1212repository = " https://github.com/maxcountryman/axum-messages"
1313
1414[dependencies ]
15- async-trait = " 0.1.77"
16- axum-core = " 0.4.3"
15+ axum-core = " 0.5.0"
1716http = " 1.0.0"
1817parking_lot = " 0.12.1"
1918serde = { version = " 1.0.195" , features = [" derive" ] }
2019serde_json = " 1"
21- tower = " 0.4 "
22- tower-sessions-core = " 0.13 .0"
20+ tower = " 0.5 "
21+ tower-sessions-core = " 0.14 .0"
2322tracing = { version = " 0.1.40" , features = [" log" ] }
2423
2524[dev-dependencies ]
26- axum = { version = " 0.7.0 " , features = [" macros" ] }
25+ axum = { version = " 0.8.1 " , features = [" macros" ] }
2726http-body-util = " 0.1"
2827hyper = " 1.0"
2928tokio = { version = " 1.20" , features = [" macros" , " rt-multi-thread" ] }
30- tower = " 0.4 "
31- tower-sessions = " 0.13 .0"
29+ tower = " 0.5 "
30+ tower-sessions = " 0.14 .0"
3231
3332[[example ]]
3433name = " basic"
Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ use std::{
130130 task:: { Context , Poll } ,
131131} ;
132132
133- use async_trait:: async_trait;
134133use axum_core:: {
135134 extract:: { FromRequestParts , Request } ,
136135 response:: Response ,
@@ -350,7 +349,6 @@ impl Iterator for Messages {
350349 }
351350}
352351
353- #[ async_trait]
354352impl < S > FromRequestParts < S > for Messages
355353where
356354 S : Send + Sync ,
You can’t perform that action at this time.
0 commit comments