1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

feat: use rustls best practice for clients

This commit is contained in:
Rob Ede
2025-05-12 03:36:54 +01:00
parent c39ea70fa8
commit dfce64475b
7 changed files with 201 additions and 47 deletions

View File

@ -97,13 +97,14 @@ actix-ws = "0.3"
awc = "3.7"
chrono = { version = "0.4.30", features = ["serde"] }
color-eyre = "0.6"
derive_more = "2"
dotenvy = "0.15"
env_logger = "0.11"
eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
color-eyre = "0.6"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
mime = "0.3"
notify = "8"
openssl = { version = "0.10.60", features = ["v110"] }
parking_lot = "0.12"
@ -114,11 +115,11 @@ reqwest = { version = "0.12", features = ["json", "stream"] }
rustls = "0.23"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = "0.3"
temp-env = "0.3"
time = "0.3"
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
tokio-util = "0.7.4"
tokio-stream = "0.1.1"
tokio-util = "0.7.4"
tracing = "0.1.30"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1.6", features = ["v4", "v7", "serde"] }