summaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-02-04 19:38:51 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-02-04 19:38:51 -0800
commit1fc57ed250da2e2ac0a7e56aa068ada844381ba1 (patch)
tree573a91e1f6af40d71ed4c93c1b993e5b37104f88 /pandoc.cabal
parent800d5cdb07b6763686d1204ea81c358f8da82c73 (diff)
Depend on parsec 3 - for applicative instances used in LaTeX reader.
This is okay now that parsec 3 is the standard version in the Haskell platform, and the speed issues have been addressed.
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal4
1 files changed, 2 insertions, 2 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 968046a14..157dd12e3 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -192,7 +192,7 @@ Library
-- It needs to be duplicated because of the library & executable flags.
-- BEGIN DUPLICATED SECTION
Build-Depends: containers >= 0.1 && < 0.5,
- parsec >= 2.1 && < 3.2,
+ parsec >= 3.1 && < 3.2,
blaze-html >= 0.4.3.0 && < 0.5,
mtl >= 1.1 && < 2.1,
network >= 2 && < 2.4,
@@ -284,7 +284,7 @@ Executable pandoc
-- It needs to be duplicated because of the library & executable flags.
-- BEGIN DUPLICATED SECTION
Build-Depends: containers >= 0.1 && < 0.5,
- parsec >= 2.1 && < 3.2,
+ parsec >= 3.1 && < 3.2,
blaze-html >= 0.4.3.0 && < 0.5,
mtl >= 1.1 && < 2.1,
network >= 2 && < 2.4,