diff options
author | Luca Casonato <hello@lcas.dev> | 2022-05-18 15:04:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 15:04:44 +0200 |
commit | c4b7bdb9d13e04bbca2ef1c30b094cb97e208002 (patch) | |
tree | 9f70f93d29758b4b2958ccae40a63ba0fd7a1299 /ext/tls | |
parent | 037466e9cdec913d0f146532fde28b26093267f1 (diff) |
chore: update rustls (#14647)
This fixes thevery annoying "Received a ServerHelloDone handshake
message while expecting [CertificateRequest]" debug log from rustls.
Diffstat (limited to 'ext/tls')
-rw-r--r-- | ext/tls/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml index c60402112..2e2e23e23 100644 --- a/ext/tls/Cargo.toml +++ b/ext/tls/Cargo.toml @@ -16,7 +16,7 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.134.0", path = "../../core" } once_cell = "1.10.0" -rustls = { version = "0.20", features = ["dangerous_configuration"] } +rustls = { version = "0.20.5", features = ["dangerous_configuration"] } rustls-native-certs = "0.6.2" rustls-pemfile = "1.0.0" serde = { version = "1.0.136", features = ["derive"] } |