Skip to content

Commit

Permalink
tower-sessions v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Jan 23, 2024
1 parent 7eec07c commit ba8b1d1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions moka-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tower-sessions-moka-store"
description = "Moka session store for `tower-sessions`."
version = "0.9.1"
version = "0.10.0"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
license = "MIT"
Expand All @@ -16,12 +16,12 @@ readme = "../README.md"
async-trait = "0.1.77"
moka = { version = "0.12.0", features = ["future"] }
time = "0.3.31"
tower-sessions-core = "0.9.1"
tower-sessions-core = "0.10.0"

[dev-dependencies]
axum = "0.7.1"
tower-sessions = "0.9.1"
tower-sessions-sqlx-store = { version = "0.9.2", features = ["sqlite"] }
tower-sessions = "0.10.0"
tower-sessions-sqlx-store = { version = "0.10.0", features = ["sqlite"] }
tokio = { version = "1.32.0", features = ["full"] }
tokio-test = "0.4.3"
serde = "1"
Expand Down
6 changes: 3 additions & 3 deletions mongodb-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tower-sessions-mongodb-store"
description = "MongoDB session store for `tower-sessions`."
version = "0.9.2"
version = "0.10.0"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
license = "MIT"
Expand All @@ -20,11 +20,11 @@ rmp-serde = "1.1.2"
serde = "1.0.195"
thiserror = "1.0.56"
time = "0.3.31"
tower-sessions-core = { version = "0.9.1", features = ["deletion-task"] }
tower-sessions-core = { version = "0.10.0" }

[dev-dependencies]
axum = "0.7.1"
tower-sessions = "0.9.1"
tower-sessions = "0.10.0"
tokio = { version = "1.32.0", features = ["full"] }
tokio-test = "0.4.3"
serde = "1"
Expand Down
4 changes: 2 additions & 2 deletions redis-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ fred = { version = "7.0.0" }
rmp-serde = "1.1.2"
thiserror = "1.0.56"
time = "0.3.31"
tower-sessions-core = "0.9.1"
tower-sessions-core = "0.10.0"

[dev-dependencies]
axum = "0.7.1"
tower-sessions = "0.9.1"
tower-sessions = "0.10.0"
tokio = { version = "1.32.0", features = ["full"] }
tokio-test = "0.4.3"
serde = "1"
Expand Down
6 changes: 3 additions & 3 deletions sqlx-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tower-sessions-sqlx-store"
description = "SQLx session stores for `tower-sessions`."
version = "0.9.2"
version = "0.10.0"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
license = "MIT"
Expand All @@ -23,11 +23,11 @@ rmp-serde = "1.1.2"
sqlx = { version = "0.7.2", features = ["time", "runtime-tokio"] }
thiserror = "1.0.56"
time = "0.3.31"
tower-sessions-core = { version = "0.9.1", features = ["deletion-task"] }
tower-sessions-core = { version = "0.10.0" }

[dev-dependencies]
axum = "0.7.1"
tower-sessions = "0.9.1"
tower-sessions = "0.10.0"
tokio = { version = "1.32.0", features = ["full"] }
tokio-test = "0.4.3"
serde = "1"
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.9"
tower-sessions = "0.10.0"
tower-sessions-sqlx-store = { path = "../sqlx-store/", features = [
"sqlite",
"mysql",
Expand Down

0 comments on commit ba8b1d1

Please sign in to comment.