Skip to content

Commit 182c826

Browse files
committed
Fix bounds for ghc 9.10 package set
N.B. This has only been tried on nixpkgs staging and Mercury's internal package set, but the indexer and demo seem to work. Haven't tried the test suite.
1 parent 72c926e commit 182c826

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

glean.cabal.in

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ common deps
157157
random,
158158
regex-base,
159159
regex-pcre,
160-
base >=4.11.1 && <4.19,
160+
base >=4.11.1 && <4.21,
161161
array ^>=0.5.2.0,
162162
async ^>=2.2.1,
163163
attoparsec >=0.13.2.3 && <0.15,
@@ -166,24 +166,24 @@ common deps
166166
containers,
167167
contravariant ^>=1.5,
168168
text >=1.2.3.0 && < 2.2,
169-
bytestring >=0.10.8.2 && <0.12,
169+
bytestring >=0.10.8.2 && <0.13,
170170
vector >=0.12.0.1 && <0.14,
171171
transformers >= 0.5.6 && < 0.7,
172172
network-uri ^>=2.6.1.0,
173173
stm ^>=2.5.0.0,
174174
directory ^>=1.3.1.5,
175-
filepath ^>=1.4.2,
175+
filepath >=1.4.2 && < 1.6,
176176
exceptions ^>=0.10.0,
177177
mtl >= 2.2.2 && < 2.4,
178178
unix >= 2.7.2.2 && < 2.9,
179179
process ^>=1.6.3.0,
180180
prettyprinter >=1.2.1 && <1.8,
181181
time >=1.8.0.2 && <1.13,
182182
binary ^>=0.8.5.1,
183-
deepseq ^>=1.4.3.0,
184-
hashable >=1.2.7.0 && <1.6,
185-
tar ^>=0.5.1.0,
186-
ghc-prim >=0.5.2.0 && <0.11,
183+
deepseq >=1.4.3.0 && < 1.6,
184+
hashable >=1.2.7.0 && < 1.6,
185+
tar >=0.5.1.0 && < 0.7,
186+
ghc-prim >=0.5.2.0 && <0.12,
187187
parsec ^>=3.1.13.0,
188188
haxl >= 2.1.2.0 && < 2.6,
189189
hinotify ^>= 0.4.1
@@ -1223,7 +1223,7 @@ executable hie-indexer
12231223
glean:schema,
12241224
glean:stubs,
12251225
glean:util,
1226-
hie-compat < 0.3.1.2,
1226+
hie-compat,
12271227
hiedb >= 0.6 && < 0.7
12281228

12291229
-- -----------------------------------------------------------------------------

glean/lang/clang/glean-clang.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ flag opt
3838

3939
common deps
4040
build-depends:
41-
ansi-terminal ^>= 0.11,
41+
ansi-terminal >= 0.11 && < 1.2,
4242
array ^>=0.5.2.0,
4343
async ^>=2.2.1,
44-
base >=4.11.1 && <4.19,
44+
base >=4.11.1 && <4.21,
4545
containers,
4646
data-default,
47-
deepseq ^>=1.4.3.0,
47+
deepseq >=1.4.3.0 && < 1.6,
4848
directory ^>=1.3.1.5,
4949
fb-util,
50-
filepath ^>=1.4.2,
50+
filepath >=1.4.2 && < 1.6,
5151
optparse-applicative,
5252
process ^>=1.6.3.0,
5353
stm ^>=2.5.0.0,

0 commit comments

Comments
 (0)