mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
Update rustls to v0.23
This commit is contained in:
parent
0bf80dfea8
commit
69294ea201
6 changed files with 211 additions and 28 deletions
|
|
@ -38,7 +38,7 @@ simplelog = { version = "0.12" }
|
|||
toml = "0.5"
|
||||
|
||||
# rustls feature
|
||||
rustls = { version = "0.22", optional = true }
|
||||
rustls = { version = "0.23", optional = true }
|
||||
rustls-pemfile = { version = "2", optional = true }
|
||||
|
||||
# prometheus feature
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ cfg-if = "1"
|
|||
either = "1"
|
||||
futures = "0.3"
|
||||
futures-lite = "1"
|
||||
futures-rustls = "0.25"
|
||||
futures-rustls = "0.26"
|
||||
glommio = "0.8"
|
||||
httparse = "1"
|
||||
itoa = "1"
|
||||
|
|
|
|||
|
|
@ -22,14 +22,14 @@ aquatic_toml_config.workspace = true
|
|||
anyhow = "1"
|
||||
futures = "0.3"
|
||||
futures-lite = "1"
|
||||
futures-rustls = "0.25"
|
||||
futures-rustls = "0.26"
|
||||
hashbrown = "0.14"
|
||||
glommio = "0.8"
|
||||
log = "0.4"
|
||||
mimalloc = { version = "0.1", default-features = false }
|
||||
rand = { version = "0.8", features = ["small_rng"] }
|
||||
rand_distr = "0.4"
|
||||
rustls = { version = "0.22", default-features = false, features = ["logging"] } # TLS 1.2 disabled
|
||||
rustls = { version = "0.23", default-features = false, features = ["logging"] } # TLS 1.2 disabled
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ arc-swap = "1"
|
|||
cfg-if = "1"
|
||||
futures = "0.3"
|
||||
futures-lite = "1"
|
||||
futures-rustls = "0.25"
|
||||
futures-rustls = "0.26"
|
||||
glommio = "0.8"
|
||||
hashbrown = { version = "0.14", features = ["serde"] }
|
||||
httparse = "1"
|
||||
|
|
@ -46,7 +46,7 @@ log = "0.4"
|
|||
mimalloc = { version = "0.1", default-features = false, optional = true }
|
||||
privdrop = "0.5"
|
||||
rand = { version = "0.8", features = ["small_rng"] }
|
||||
rustls = "0.22"
|
||||
rustls = "0.23"
|
||||
rustls-pemfile = "2"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
signal-hook = { version = "0.3" }
|
||||
|
|
|
|||
|
|
@ -22,13 +22,13 @@ aquatic_ws_protocol.workspace = true
|
|||
anyhow = "1"
|
||||
async-tungstenite = "0.24"
|
||||
futures = "0.3"
|
||||
futures-rustls = "0.25"
|
||||
futures-rustls = "0.26"
|
||||
glommio = "0.8"
|
||||
log = "0.4"
|
||||
mimalloc = { version = "0.1", default-features = false }
|
||||
rand = { version = "0.8", features = ["small_rng"] }
|
||||
rand_distr = "0.4"
|
||||
rustls = { version = "0.22" }
|
||||
rustls = { version = "0.23" }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tungstenite = "0.21"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue