maxcountryman / tower-sessions

🥠 Sessions as a `tower` and `axum` middleware.
MIT License
233 stars 43 forks source link

Implement the `ExpiredDeletion` trait for the diesel store #58

Closed weiznich closed 11 months ago

weiznich commented 11 months ago

The missing part in the relevant trait bound was the Self: SessionStore part.

codecov[bot] commented 11 months ago

Codecov Report

Merging #58 (74af444) into main (25522d1) will increase coverage by 0.53%. The diff coverage is 0.00%.

@@            Coverage Diff             @@
##             main      #58      +/-   ##
==========================================
+ Coverage   79.89%   80.43%   +0.53%     
==========================================
  Files          14       14              
  Lines         597      593       -4     
==========================================
  Hits          477      477              
+ Misses        120      116       -4     
Files Coverage Δ
src/diesel_store.rs 77.77% <0.00%> (+2.77%) :arrow_up:
maxcountryman commented 11 months ago

Thanks for this!