1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00

chore: fix deps

This commit is contained in:
Rob Ede 2024-09-12 12:11:10 -04:00
parent f7b717a019
commit 2c68b99c0b
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 9 additions and 0 deletions

4
Cargo.lock generated
View File

@ -8888,8 +8888,12 @@ dependencies = [
"actix-files", "actix-files",
"actix-web", "actix-web",
"actix-web-actors", "actix-web-actors",
"awc",
"env_logger", "env_logger",
"futures-util",
"log", "log",
"tokio",
"tokio-stream",
] ]
[[package]] [[package]]

View File

@ -16,5 +16,10 @@ actix.workspace = true
actix-files.workspace = true actix-files.workspace = true
actix-web.workspace = true actix-web.workspace = true
actix-web-actors.workspace = true actix-web-actors.workspace = true
awc.workspace = true
env_logger.workspace = true env_logger.workspace = true
futures-util = { workspace = true, features = ["sink"] }
log.workspace = true log.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-stream.workspace = true