diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-07-04 10:23:37 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-07-04 10:23:37 -0700 |
commit | 374614aaf7c6582d47a98af9e762b0610bdecf4e (patch) | |
tree | 70e013308b11ca27a4168cffd1035aff4326413c | |
parent | 46f3deb2480b8b45bfc5f8a067cdcb4c92f9dd6e (diff) | |
download | pandoc-374614aaf7c6582d47a98af9e762b0610bdecf4e.tar.gz |
Depend on http-client 0.5, http-client-tls 0.3
-rw-r--r-- | pandoc.cabal | 4 | ||||
-rw-r--r-- | stack.yaml | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 3976eddca..dbb9a925f 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -300,8 +300,8 @@ Library else Build-Depends: network >= 2 && < 2.6 if flag(https) - Build-Depends: http-client >= 0.3.2 && < 0.5, - http-client-tls >= 0.2 && < 0.3, + Build-Depends: http-client >= 0.5 && < 0.6, + http-client-tls >= 0.3 && < 0.4, http-types >= 0.8 && < 0.10 cpp-options: -DHTTP_CLIENT if flag(embed_data_files) diff --git a/stack.yaml b/stack.yaml index 62bf29b1e..4af30de8f 100644 --- a/stack.yaml +++ b/stack.yaml @@ -9,4 +9,6 @@ packages: - '.' extra-deps: - data-default-0.6.0 +- http-client-0.5.0 +- http-client-tls-0.3.0 resolver: lts-6.5 |