From 49b4217cc0f6a07e12fbf2534ec702cf7ac7fc54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Fri, 1 Dec 2023 22:03:27 +0100 Subject: [PATCH] Enable static_secrets feature to fix build (#4208) --- common/wireguard-types/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/wireguard-types/Cargo.toml b/common/wireguard-types/Cargo.toml index fb04411480..07d440ad6b 100644 --- a/common/wireguard-types/Cargo.toml +++ b/common/wireguard-types/Cargo.toml @@ -29,7 +29,7 @@ sha2 = { version = "0.10.8", optional = true } utoipa = { workspace = true, optional = true } serde_json = { workspace = true, optional = true } -x25519-dalek = "2.0.0" +x25519-dalek = { version = "2.0.0", features = ["static_secrets"] } [dev-dependencies] rand = "0.7.3"