From b4b50b561502dd69b55e89b2c51f3337a3a17a2f Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Thu, 10 Jul 2025 16:54:50 +0200 Subject: [PATCH] fix(gui-client): move `tslink` metadata (#9817) A recent release of `tslink` now supports configuration via the `package.metadata` table which resolved a warning about "unknown key" that we have seeing for a while. --- rust/gui-client/src-tauri/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/gui-client/src-tauri/Cargo.toml b/rust/gui-client/src-tauri/Cargo.toml index b3e3d9a26..f0de7543a 100644 --- a/rust/gui-client/src-tauri/Cargo.toml +++ b/rust/gui-client/src-tauri/Cargo.toml @@ -8,6 +8,9 @@ default-run = "firezone-gui-client" authors = ["Firezone, Inc."] license = { workspace = true } +[package.metadata.tslink] +enum_representation = "discriminated" + [features] # this feature is used for production builds or when `devPath` points to the filesystem # DO NOT REMOVE!! @@ -98,6 +101,3 @@ tempfile = { workspace = true } [lints] workspace = true - -[tslink] -enum_representation = "discriminated"