diff options
| author | 2jacobtan <jacob.tan.en@gmail.com> | 2021-07-06 05:42:34 +0800 |
|---|---|---|
| committer | 2jacobtan <jacob.tan.en@gmail.com> | 2021-07-06 05:42:34 +0800 |
| commit | e1a40640cd55b6047f2aa36bf3394017d8867fd6 (patch) | |
| tree | 560bd495000f43404382cbd7b2c4cde4b50cc60e /src | |
| parent | be231584f61a1c6134b6163b1198be556fafc0fb (diff) | |
specify version bounds in pgf.cabal and pgf2.cabal
Diffstat (limited to 'src')
| -rw-r--r-- | src/runtime/haskell-bind/pgf2.cabal | 6 | ||||
| -rw-r--r-- | src/runtime/haskell/pgf.cabal | 18 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/runtime/haskell-bind/pgf2.cabal b/src/runtime/haskell-bind/pgf2.cabal index c8d5d8c6c..fcd854d72 100644 --- a/src/runtime/haskell-bind/pgf2.cabal +++ b/src/runtime/haskell-bind/pgf2.cabal @@ -23,9 +23,9 @@ library PGF2.Expr, PGF2.Type build-depends: - base >=4.3 && <5, - containers, - pretty + base >= 4.9.1 && <4.15, + containers >= 0.5.7 && < 0.7, + pretty >= 1.1.3 && < 1.2 default-language: Haskell2010 build-tools: hsc2hs extra-libraries: pgf gu diff --git a/src/runtime/haskell/pgf.cabal b/src/runtime/haskell/pgf.cabal index f829a6e35..9a59502c4 100644 --- a/src/runtime/haskell/pgf.cabal +++ b/src/runtime/haskell/pgf.cabal @@ -14,16 +14,16 @@ tested-with: GHC==7.6.3, GHC==7.8.3, GHC==7.10.3, GHC==8.0.2, GHC==8.4.4 library default-language: Haskell2010 build-depends: - array, - base >= 4.6 && <5, - bytestring, - containers, + base >= 4.9.1 && <4.15, + array >= 0.5.1 && < 0.6, + containers >= 0.5.7 && < 0.7, + bytestring >= 0.10.8 && < 0.11, + utf8-string >= 1.0.1.1 && < 1.1, + random >= 1.1 && < 1.3, + pretty >= 1.1.3 && < 1.2, + mtl >= 2.2.1 && < 2.3, + ghc-prim >= 0.5.0 && < 0.7 -- exceptions, - ghc-prim, - mtl, - pretty, - random, - utf8-string other-modules: -- not really part of GF but I have changed the original binary library |
