Skip to content

Commit

Permalink
Merge pull request #51 from http-rs/drop-sessionstore-supertraits
Browse files Browse the repository at this point in the history
drop supertrait requirements on SessionStore
  • Loading branch information
jbr committed Feb 17, 2023
2 parents 19e82b5 + 0be7d8a commit 1c686d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/session_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::{async_trait, Result, Session};

/// An async session backend.
#[async_trait]
pub trait SessionStore: std::fmt::Debug + Send + Sync + Clone + 'static {
pub trait SessionStore {
/// Get a session from the storage backend.
///
/// The input is expected to be the value of an identifying
Expand Down

0 comments on commit 1c686d8

Please sign in to comment.