From 7c4a23ba2d1faf97fdf84134062a076ee648f496 Mon Sep 17 00:00:00 2001 From: Patrick Owen Date: Sat, 24 Feb 2024 18:12:54 -0500 Subject: [PATCH] Update rcgen to 0.12.1 --- client/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index 8d46e253..fcc3fcb2 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -34,7 +34,7 @@ futures-util = "0.3.1" rustls = { version = "0.21.7", features = ["dangerous_configuration"] } webpki = "0.22.0" hecs = { workspace = true } -rcgen = { version = "0.11.0", default-features = false } +rcgen = { version = "0.12.1", default-features = false, features = ["ring"] } memoffset = "0.9" gltf = { version = "1.0.0", default-features = false, features = ["utils"] } metrics = { version = "0.21.0" } diff --git a/server/Cargo.toml b/server/Cargo.toml index 77472014..a9a79461 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -18,7 +18,7 @@ quinn = { workspace = true } serde = { version = "1.0.104", features = ["derive", "rc"] } toml = { workspace = true } anyhow = "1.0.26" -rcgen = { version = "0.11.0", default-features = false } +rcgen = { version = "0.12.1", default-features = false, features = ["ring"] } hostname = "0.3.0" futures = "0.3.1" hecs = { workspace = true }