summaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-10-13 13:01:02 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2016-10-13 13:01:49 +0200
commit6d13567ac5c689dde3c1e4362b17fb42678e2b88 (patch)
treedd4ddd5260d809139dbe6c37d3d50b1c2af30ddd /pandoc.cabal
parent4a1ef0b51d234a876d0621c710413ebebff69239 (diff)
Allow http-client 0.4.30, which is the version in stackage lts.
Previously we required 0.5. Remove CPP conditionals for earlier versions.
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 15e2e47d9..b85fb664a 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -301,8 +301,8 @@ Library
else
Build-Depends: network >= 2 && < 2.6
if flag(https)
- Build-Depends: http-client >= 0.5 && < 0.6,
- http-client-tls >= 0.3 && < 0.4,
+ Build-Depends: http-client >= 0.4.30 && < 0.6,
+ http-client-tls >= 0.2.4 && < 0.4,
http-types >= 0.8 && < 0.10
cpp-options: -DHTTP_CLIENT
if flag(embed_data_files)