Skip to content

Commit 57e0d06

Browse files
committed
Add os-string upper bound
1 parent 03eb931 commit 57e0d06

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

hashable.cabal

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ bug-reports:
3131
stability: Provisional
3232
category: Data
3333
build-type: Simple
34-
tested-with:
35-
GHC ==9.6.5
36-
|| ==9.8.2
37-
|| ==9.10.1
38-
34+
tested-with: GHC ==9.6.5 || ==9.8.2 || ==9.10.1
3935
extra-source-files:
4036
CHANGES.md
4137
include/HsHashable.h
@@ -90,19 +86,19 @@ library
9086
, containers >=0.6.7 && <0.8
9187
, deepseq >=1.4.8.1 && <1.6
9288
, ghc-prim
93-
, text >=2.0.2 && <2.2
89+
, text >=2.0.2 && <2.2
9490

9591
-- depend on os-string on newer GHCs only.
9692
-- os-string has tight lower bound on bytestring, which prevents
9793
-- using bundled version on older GHCs.
98-
build-depends: os-string >=2.0.2
94+
build-depends: os-string >=2.0.2 && <2.1
9995

10096
-- we also ensure that we can get filepath-1.5 only with GHC-9.2
10197
-- therefore there is else-branch with stricter upper bound.
102-
build-depends: filepath >=1.4.200.1 && <1.6
98+
build-depends: filepath >=1.4.200.1 && <1.6
10399

104100
-- Integer internals
105-
build-depends: ghc-bignum >=1.3 && <1.4
101+
build-depends: ghc-bignum >=1.3 && <1.4
106102

107103
if (flag(random-initial-seed) && impl(ghc))
108104
cpp-options: -DHASHABLE_RANDOM_SEED=1

0 commit comments

Comments
 (0)