1
0
mirror of https://github.com/actix/examples synced 2025-05-14 08:43:59 +02:00

chore: update actix versions

This commit is contained in:
Rob Ede 2025-05-12 03:20:02 +01:00
parent f0035f7188
commit c39ea70fa8
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
3 changed files with 531 additions and 596 deletions

1116
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -82,7 +82,7 @@ actix-broker = "0.4"
actix-codec = "0.5"
actix-cors = "0.7"
actix-files = "0.6"
actix-http = "3.10"
actix-http = "3.11"
actix-identity = "0.8"
actix-multipart = "0.7"
actix-protobuf = "0.11"
@ -90,11 +90,11 @@ actix-session = "0.10"
actix-test = "0.1"
actix-tls = "3.4"
actix-utils = "3"
actix-web = "4.10"
actix-web = "4.11"
actix-web-actors = "4.1"
actix-web-lab = "0.24"
actix-ws = "0.3"
awc = "3.6"
awc = "3.7"
chrono = { version = "0.4.30", features = ["serde"] }
derive_more = "2"
@ -104,6 +104,7 @@ eyre = { version = "0.6", default-features = false, features = ["auto-install",
color-eyre = "0.6"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
notify = "8"
openssl = { version = "0.10.60", features = ["v110"] }
parking_lot = "0.12"
pin-project-lite = "0.2"

View File

@ -1,5 +1,5 @@
[package]
name = "cert-watch"
name = "example-cert-watch"
edition.workspace = true
rust-version.workspace = true
@ -9,6 +9,6 @@ color-eyre.workspace = true
env_logger.workspace = true
eyre.workspace = true
log.workspace = true
notify = "6"
notify = { workspace = true }
rustls.workspace = true
tokio = { workspace = true, features = ["time", "rt", "macros"] }