summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKosyrev Serge <_deepfire@feelingofgreen.ru>2018-09-09 20:31:50 +0300
committerKosyrev Serge <_deepfire@feelingofgreen.ru>2018-09-15 21:07:37 +0300
commit5e522de525affb137b46eb7b5896a2f3b4d4f0d9 (patch)
treec2f620aaf8be211fe94bd5d8c206962e24741b2a
parent09a7f88ffb1480cad73b92087cb703504699e154 (diff)
cabal: drop upper bounds
-rw-r--r--lambdacube-compiler.cabal112
1 files changed, 56 insertions, 56 deletions
diff --git a/lambdacube-compiler.cabal b/lambdacube-compiler.cabal
index 5d57aece..6d47d950 100644
--- a/lambdacube-compiler.cabal
+++ b/lambdacube-compiler.cabal
@@ -96,7 +96,7 @@ library
96 binary, 96 binary,
97 bytestring, 97 bytestring,
98 time, 98 time,
99 aeson >=1.1, 99 aeson,
100 base >=4.9, 100 base >=4.9,
101 semigroups, 101 semigroups,
102 containers >=0.5, 102 containers >=0.5,
@@ -129,12 +129,12 @@ executable lc
129 129
130 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 130 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
131 build-depends: 131 build-depends:
132 base < 5, 132 base ,
133 lambdacube-compiler, 133 lambdacube-compiler,
134 optparse-applicative >=0.12 && <0.15, 134 optparse-applicative >=0.12,
135 aeson >=1.1 && <1.3, 135 aeson,
136 bytestring, 136 bytestring,
137 filepath >=1.4 && <1.5 137 filepath >=1.4
138 138
139------------------------ 139------------------------
140-- tests for development 140-- tests for development
@@ -152,14 +152,14 @@ executable lambdacube-compiler-unit-tests
152 152
153 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 153 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
154 build-depends: 154 build-depends:
155 base < 5, 155 base,
156 semigroups, 156 semigroups,
157 containers >=0.5 && <0.6, 157 containers >=0.5,
158 lambdacube-compiler, 158 lambdacube-compiler,
159 megaparsec >= 6, 159 megaparsec >= 6,
160 QuickCheck >= 2.8.2 && <2.11, 160 QuickCheck >= 2.8.2,
161 tasty >= 0.11 && <0.12, 161 tasty >= 0.11,
162 tasty-quickcheck >=0.8 && <0.10 162 tasty-quickcheck >=0.8
163 163
164executable lambdacube-compiler-test-suite 164executable lambdacube-compiler-test-suite
165 hs-source-dirs: test 165 hs-source-dirs: test
@@ -178,26 +178,26 @@ executable lambdacube-compiler-test-suite
178 178
179 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 179 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
180 build-depends: 180 build-depends:
181 aeson >=1.1 && <1.3, 181 aeson,
182 async >= 2.0 && <2.2, 182 async >= 2.0,
183 base < 5, 183 base,
184 semigroups, 184 semigroups,
185 containers >=0.5 && <0.6, 185 containers >=0.5,
186 deepseq >=1.4 && <1.5, 186 deepseq >=1.4,
187 directory >=1.3 && <1.4, 187 directory >=1.3,
188 exceptions >= 0.8 && <0.9, 188 exceptions >= 0.8,
189 filepath >=1.4 && <1.5, 189 filepath >=1.4,
190 lambdacube-compiler, 190 lambdacube-compiler,
191 mtl >=2.2 && <2.3, 191 mtl >=2.2,
192 monad-control >= 1.0 && <1.1, 192 monad-control >= 1.0,
193 optparse-applicative >=0.12 && <0.15, 193 optparse-applicative >=0.12,
194 megaparsec >= 6, 194 megaparsec >= 6,
195 ansi-wl-pprint >=0.6 && <0.7, 195 ansi-wl-pprint >=0.6,
196 patience >= 0.1 && < 0.2, 196 patience >= 0.1,
197 text >= 1.2 && <1.3, 197 text >= 1.2,
198 time >= 1.5 && <1.9, 198 time >= 1.5,
199 lambdacube-ir == 0.3.*, 199 lambdacube-ir == 0.3.*,
200 vector >= 0.12 && <0.13 200 vector >= 0.12
201 201
202executable lambdacube-compiler-performance-report 202executable lambdacube-compiler-performance-report
203 hs-source-dirs: test 203 hs-source-dirs: test
@@ -211,11 +211,11 @@ executable lambdacube-compiler-performance-report
211 211
212 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 212 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
213 build-depends: 213 build-depends:
214 base < 5, 214 base,
215 directory >=1.3 && <1.4, 215 directory >=1.3,
216 filepath >=1.4 && <1.5, 216 filepath >=1.4,
217 containers >=0.5 && <0.6, 217 containers >=0.5,
218 optparse-applicative >=0.12 && <0.15 218 optparse-applicative >=0.12
219 219
220executable lambdacube-backend-test-server 220executable lambdacube-backend-test-server
221 hs-source-dirs: backendtest 221 hs-source-dirs: backendtest
@@ -231,23 +231,23 @@ executable lambdacube-backend-test-server
231 231
232 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 232 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
233 build-depends: 233 build-depends:
234 base < 5, 234 base,
235 semigroups, 235 semigroups,
236 containers >=0.5 && <0.6, 236 containers >=0.5,
237 text >= 1.2 && <1.3, 237 text >= 1.2,
238 lambdacube-compiler, 238 lambdacube-compiler,
239 lambdacube-ir == 0.3.*, 239 lambdacube-ir == 0.3.*,
240 pretty-show >= 1.6.9, 240 pretty-show >= 1.6.9,
241 optparse-applicative >=0.12 && <0.15, 241 optparse-applicative >=0.12,
242 aeson >=1.1 && <1.3, 242 aeson,
243 bytestring, 243 bytestring,
244 filepath >=1.4 && <1.5, 244 filepath >=1.4,
245 directory >=1.3 && <1.4, 245 directory >=1.3,
246 websockets >= 0.9.6.1, 246 websockets >= 0.9.6.1,
247 JuicyPixels >=3.2.7 && <3.3, 247 JuicyPixels >=3.2.7,
248 vect >= 0.4.7, 248 vect >= 0.4.7,
249 base64-bytestring >= 1.0.0.1, 249 base64-bytestring >= 1.0.0.1,
250 vector >= 0.12 && <0.13, 250 vector >= 0.12,
251 process >= 1.2 251 process >= 1.2
252 252
253executable lambdacube-compiler-coverage-test-suite 253executable lambdacube-compiler-coverage-test-suite
@@ -267,25 +267,25 @@ executable lambdacube-compiler-coverage-test-suite
267 267
268 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository 268 -- CAUTION: When the build-depends change, please bump the git submodule in lambdacube-docker repository
269 build-depends: 269 build-depends:
270 aeson >=1.1 && <1.3, 270 aeson,
271 async >= 2.0 && <2.2, 271 async >= 2.0,
272 base < 5, 272 base,
273 bytestring, 273 bytestring,
274 binary, 274 binary,
275 semigroups, 275 semigroups,
276 containers >=0.5 && <0.6, 276 containers >=0.5,
277 deepseq >=1.4 && <1.5, 277 deepseq >=1.4,
278 directory >=1.3 && <1.4, 278 directory >=1.3,
279 exceptions >= 0.8 && <0.9, 279 exceptions >= 0.8,
280 filepath >=1.4 && <1.5, 280 filepath >=1.4,
281 lambdacube-ir == 0.3.*, 281 lambdacube-ir == 0.3.*,
282 mtl >=2.2 && <2.3, 282 mtl >=2.2,
283 monad-control >= 1.0 && <1.1, 283 monad-control >= 1.0,
284 optparse-applicative >=0.12 && <0.15, 284 optparse-applicative >=0.12,
285 megaparsec >= 6, 285 megaparsec >= 6,
286 ansi-wl-pprint >=0.6 && <0.7, 286 ansi-wl-pprint >=0.6,
287 pretty-show >= 1.6.9, 287 pretty-show >= 1.6.9,
288 patience >= 0.1 && < 0.2, 288 patience >= 0.1,
289 text >= 1.2 && <1.3, 289 text >= 1.2,
290 time >= 1.5 && <1.9, 290 time >= 1.5,
291 vector >= 0.12 && <0.13 291 vector >= 0.12