From 140824f990e01ed2a636d4742e984a14d7f38e57 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Sat, 12 Jul 2025 19:41:49 +0200 Subject: [PATCH] rust: Fix docs.rs documentation build https://docs.rs/crate/lsprotocol/1.0.0-alpha.3 does not currently work, because the docs are built without 'proposed' feature enabled. In order to fix the docs page we'll still have to cut a new release though. --- packages/rust/lsprotocol/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/rust/lsprotocol/Cargo.toml b/packages/rust/lsprotocol/Cargo.toml index f29608e..c679abf 100644 --- a/packages/rust/lsprotocol/Cargo.toml +++ b/packages/rust/lsprotocol/Cargo.toml @@ -19,3 +19,6 @@ serde_json = "1.0.93" serde_repr = "0.1.10" url = {version = "2.3.1", features = ["serde"]} rust_decimal = "1.29.1" + +[package.metadata.docs.rs] +features = ["proposed"]