diff options
| author | John MacFarlane <[email protected]> | 2020-05-07 14:19:17 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2020-05-14 09:00:35 -0700 |
| commit | 041ab7b0acdc90e551f83334767da9dac3e17ede (patch) | |
| tree | 3ff0706a8adbc87152e1a05d056d6b26e2fb4c59 | |
| parent | 8433431540f7235d97d1744d295988cdb9de4169 (diff) | |
Make base lower bound 4.10, since we don't support ghc 8.0 any more.
| -rw-r--r-- | pandoc.cabal | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 9def385b8..331e820a3 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -377,7 +377,7 @@ flag trypandoc Default: False library - build-depends: base >= 4.9 && < 5, + build-depends: base >= 4.10 && < 5, syb >= 0.1 && < 0.8, containers >= 0.4.2.1 && < 0.7, unordered-containers >= 0.2 && < 0.3, @@ -650,7 +650,7 @@ library buildable: True executable pandoc - build-depends: pandoc, base >= 4.8 && < 5 + build-depends: pandoc, base >= 4.10 && < 5 if impl(ghc < 8.4) hs-source-dirs: prelude other-modules: Prelude @@ -707,7 +707,7 @@ benchmark weigh-pandoc main-is: weigh-pandoc.hs hs-source-dirs: benchmark build-depends: pandoc, - base >= 4.8 && < 5, + base >= 4.10 && < 5, text, weigh >= 0.0 && < 0.1, mtl >= 2.2 && < 2.3 @@ -734,7 +734,7 @@ test-suite test-pandoc type: exitcode-stdio-1.0 main-is: test-pandoc.hs hs-source-dirs: test - build-depends: base >= 4.8 && < 5, + build-depends: base >= 4.10 && < 5, pandoc, pandoc-types >= 1.21 && < 1.22, mtl >= 2.2 && < 2.3, @@ -842,7 +842,7 @@ benchmark benchmark-pandoc hs-source-dirs: benchmark build-depends: pandoc, time, bytestring, containers, - base >= 4.8 && < 5, + base >= 4.10 && < 5, text >= 1.1.1.0 && < 1.3, mtl >= 2.2 && < 2.3, criterion >= 1.0 && < 1.6 |
