From e91ee4964151fcbe931d6fd5ff2fe9c0112bfba0 Mon Sep 17 00:00:00 2001 From: pyranota <92104930+pyranota@users.noreply.github.com> Date: Mon, 23 Jun 2025 15:39:20 +0200 Subject: [PATCH] nit: disable LSP for rust sdk --- rust-client/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rust-client/Cargo.toml b/rust-client/Cargo.toml index 5b49ab15fd..a0e2325c3d 100644 --- a/rust-client/Cargo.toml +++ b/rust-client/Cargo.toml @@ -8,6 +8,10 @@ description = "A client library for accessing Windmill server wrapping the Windm license = "Apache-2.0" homepage = "https://windmill.dev" +# Comment out to enable LSP for this crate +[package.metadata.rust-analyzer] +rust-analyzer.check.overrideCommand = ["echo", "skip"] + [workspace] resolver = "3" members = ["windmill_api"]