From fddd0680fa219d76eb37b8e216419fb92be81963 Mon Sep 17 00:00:00 2001 From: cloudhead Date: Sun, 5 May 2024 00:50:54 +0200 Subject: [PATCH] cli: Make ruby syntax highlighting non-optional The current verison of the crate no longer requires C++ and builds fine. --- radicle-cli/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/radicle-cli/Cargo.toml b/radicle-cli/Cargo.toml index 1a94617e..41057fdc 100644 --- a/radicle-cli/Cargo.toml +++ b/radicle-cli/Cargo.toml @@ -40,9 +40,7 @@ tree-sitter-css = { version = "0.20" } tree-sitter-toml = { version = "0.20" } tree-sitter-c = { version = "0.20" } tree-sitter-python = { version = "0.20" } -# N.b. This crate has a C++ token scanner that causes problems when building -# for the musl target. Hence it is optional for now. -tree-sitter-ruby = { version = "0.20", optional = true } +tree-sitter-ruby = { version = "0.20" } tree-sitter-bash = { version = "0.20" } tree-sitter-go = { version = "0.20.0" } tree-sitter-md = { version = "0.1.5" }