@@ -38,12 +38,12 @@ Flag Runtime
38
38
39
39
library
40
40
default-language : Haskell2010
41
- Build-depends : base >= 4 && < 5 ,
42
- array,
43
- filepath,
44
- path,
45
- profunctors >= 5.3 ,
46
- Cabal < 3.0
41
+ Build-depends : base >= 4.0 && < 4.16 ,
42
+ array >= 0.5 && < 0.6 ,
43
+ filepath >= 1.4 && < 1.5 ,
44
+ path >= 0.6 && < 0.7 ,
45
+ profunctors >= 5.3 && < 5.4 ,
46
+ Cabal >= 2.1 && < 2.5
47
47
Exposed-modules : Foreign.Matlab,
48
48
Foreign.Matlab.Types,
49
49
Foreign.Matlab.Array,
@@ -66,12 +66,12 @@ library
66
66
67
67
if flag(runtime)
68
68
build-tools : mcc
69
- Build-depends : unix < 2.8
69
+ Build-depends : unix >= 2.7 && < 2.8
70
70
Exposed-modules : Foreign.Matlab.Runtime, Foreign.Matlab.Runtime.Generic
71
71
72
72
if flag(engine)
73
73
Exposed-modules : Foreign.Matlab.Engine
74
- Build-depends : containers
74
+ Build-depends : containers >= 0.6 && < 0.7
75
75
extra-libraries : eng
76
76
77
77
Source-repository head
@@ -109,14 +109,13 @@ executable matlab-engine-test
109
109
test
110
110
ghc-options : -threaded -rtsopts -with-rtsopts=-N -fno-ignore-asserts
111
111
build-depends :
112
- base >= 4 && < 5
113
- , exceptions
112
+ base
113
+ , exceptions >= 0.10 && < 0.11
114
114
, filepath
115
115
, matlab
116
116
, path
117
- , template-haskell
118
- , text
119
- -- , turtle >= 1.5
117
+ , template-haskell >= 2.14 && < 2.15
118
+ , text >= 1.2 && < 1.3
120
119
default-language : Haskell2010
121
120
extra-libraries : eng, mx, mat
122
121
@@ -127,6 +126,6 @@ executable haskell-hello
127
126
hello
128
127
ghc-options : -threaded -rtsopts -with-rtsopts=-N
129
128
build-depends :
130
- base >= 4 && < 5
129
+ base
131
130
default-language : Haskell2010
132
131
extra-libraries :
0 commit comments