From fe4c7809ee8f65507c9be393cd8ea45d7b2b05d6 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 6 Jan 2025 10:56:44 -0600 Subject: [PATCH] Allow building with happy-2.1.1 or later `happy-2.1.1` includes a fix for https://github.com/haskell/happy/issues/320, which was preventing `language-rust` from building. Now that this version of `happy` is on Hackage, we no longer need to include such a restrictive upper version bound on `happy`. --- language-rust.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language-rust.cabal b/language-rust.cabal index 6871c88..0f30d1a 100644 --- a/language-rust.cabal +++ b/language-rust.cabal @@ -41,8 +41,8 @@ library -Wincomplete-uni-patterns -Wmissing-signatures - build-tools: alex >=3.1, happy >=1.19.8 && < 2.1 - -- We restrict to < 2.1, because of + build-tools: alex >=3.1, happy >=1.19.8 && < 2.1 || >= 2.1.1 + -- We restrict to < 2.1 || >= 2.1.1, because of -- https://github.com/haskell/happy/issues/320 default-language: Haskell2010