Skip to content

Commit

Permalink
Allow building with happy-2.1.1 or later
Browse files Browse the repository at this point in the history
`happy-2.1.1` includes a fix for haskell/happy#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`.
  • Loading branch information
RyanGlScott committed Jan 6, 2025
1 parent ae59c73 commit fe4c780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions language-rust.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fe4c780

Please sign in to comment.