You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: alex.cabal
+24-18Lines changed: 24 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
cabal-version: >=1.10
2
2
name: alex
3
-
version: 3.4.0.0
3
+
version: 3.4.0.1
4
4
-- don't forget updating changelog.md!
5
5
license: BSD3
6
6
license-file: LICENSE
@@ -22,8 +22,9 @@ category: Development
22
22
build-type: Simple
23
23
24
24
tested-with:
25
-
GHC ==9.6.2
26
-
GHC ==9.4.5
25
+
GHC ==9.8.1
26
+
GHC ==9.6.3
27
+
GHC ==9.4.7
27
28
GHC ==9.2.8
28
29
GHC ==9.0.2
29
30
GHC ==8.10.7
@@ -32,11 +33,6 @@ tested-with:
32
33
GHC ==8.4.4
33
34
GHC ==8.2.2
34
35
GHC ==8.0.2
35
-
GHC ==7.10.3
36
-
GHC ==7.8.4
37
-
GHC ==7.6.3
38
-
GHC ==7.4.2
39
-
GHC ==7.0.4
40
36
41
37
data-dir: data/
42
38
@@ -104,16 +100,26 @@ executable alex
104
100
hs-source-dirs: src
105
101
main-is: Main.hs
106
102
107
-
build-depends: base >=2.1&&<5
108
-
, array
109
-
, containers
110
-
, directory
103
+
build-depends:
104
+
base >=4.9&&<5
105
+
-- Data.List.NonEmpty enters `base` at 4.9
106
+
, array
107
+
, containers
108
+
, directory
111
109
112
-
default-language: Haskell98
113
-
default-extensions: CPP
114
-
other-extensions: MagicHash
115
-
116
-
ghc-options: -Wall -rtsopts
110
+
default-language:
111
+
Haskell2010
112
+
default-extensions:
113
+
PatternSynonyms
114
+
ScopedTypeVariables
115
+
TupleSections
116
+
other-extensions:
117
+
CPP
118
+
FlexibleContexts
119
+
MagicHash
120
+
NondecreasingIndentation
121
+
OverloadedLists
122
+
ghc-options: -Wall -Wcompat -rtsopts
117
123
118
124
other-modules:
119
125
AbsSyn
@@ -144,6 +150,6 @@ test-suite tests
144
150
-- This line is important as it ensures that the local `exe:alex` component declared above is built before the test-suite component is invoked, as well as making sure that `alex` is made available on $PATH and `$alex_datadir` is set accordingly before invoking `test.hs`
0 commit comments