diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e045b..e9c405f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.11.1 + +- Update `tower-sessions` to `0.11.1` + # 0.1.0 - Initial release :tada: \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 4af1cd0..06c46e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,3 @@ [workspace] -members = ["tests"] +members = ["tests", "rusqlite-store"] resolver = "2" diff --git a/README.md b/README.md index 428f2d4..9497236 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,6 @@ This is an unofficial fork of the original `tower-sessions-stores`. I'm relative ## 🙏 Credits All credits go to the original authors of `tower-sessions-stores` and `tower-sessions`. + \ No newline at end of file diff --git a/rusqlite-store/Cargo.toml b/rusqlite-store/Cargo.toml index 2327194..e91a751 100644 --- a/rusqlite-store/Cargo.toml +++ b/rusqlite-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tower-sessions-rusqlite-store" description = "(tokio-)rusqlite session store for `tower-sessions`." -version = "0.1.0" +version = "0.11.1" edition = "2021" authors = ["Patrick Recher ", "Max Countryman "] license = "MIT" @@ -19,11 +19,11 @@ rusqlite = { version = "0.30.0" } tokio-rusqlite = "0.5.0" thiserror = "1.0.56" time = "0.3.31" -tower-sessions-core = { version = "0.10.2", features = ["deletion-task"] } +tower-sessions-core = { version = "0.11.1", features = ["deletion-task"] } [dev-dependencies] axum = "0.7.1" -tower-sessions = "0.10.2" +tower-sessions = "0.11.1" tokio = { version = "1.32.0", features = ["full"] } tokio-test = "0.4.3" serde = "1" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index c920d41..6db5a9e 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -13,7 +13,7 @@ time = "0.3.30" tokio = { version = "1", features = ["full"] } tower = "0.4.13" tower-cookies = "0.10.0" -tower-sessions = "0.10.2" +tower-sessions = "0.11.1" tower-sessions-rusqlite-store = { path = "../rusqlite-store/" } [[test]]