Skip to content

Commit 6b5e992

Browse files
committed
Set actix-web and once cell according to a506d89
1 parent 88f7440 commit 6b5e992

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorial/server/actix_web/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = ["Niklas Pfister <[email protected]>"]
99

1010
[dependencies]
1111
# Webframework
12-
actix-web = { version = "~4" }
12+
actix-web = { version = ">=4.5.1" }
1313
# Session framework for actix-web
1414
actix-session = { version = "~0.9", features = ["cookie-session"] }
1515
# Async trait, anyhow, chrono, once_cell and rand are required for the implementation of a
@@ -19,8 +19,8 @@ actix-session = { version = "~0.9", features = ["cookie-session"] }
1919
async-trait = { version = "~0.1" }
2020
anyhow = { version = "~1" }
2121
chrono = { version = "~0.4" }
22-
once_cell = { version = "~1" }
23-
rand.workspace = true
22+
once_cell = { version = ">=1.18" }
23+
rand = { workspace = true }
2424

2525
# Nicer error management
2626
thiserror = { version = "~1" }

0 commit comments

Comments
 (0)