diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2024-02-20 10:07:58 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2024-02-20 10:07:58 -0800 |
| commit | 25a994df65f32ea2156c9171ec445d150ad4372c (patch) | |
| tree | a7205c11f92f1fcabecd86e916429039c56a15ba /pandoc.cabal | |
| parent | 7a65ef25a01a0091764d104b92c232e8cb39a2ed (diff) | |
Class: openUrl TLS negotiation fixes.
With the release of TLS 2.0.0, the TLS library started requiring
Extended Main Secret for the TLS handshake. This caused problems
connecting to zotero's server and others that do not support TLS 1.3.
This commit relaxes this requirement.
Closes #9483.
Diffstat (limited to 'pandoc.cabal')
| -rw-r--r-- | pandoc.cabal | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 4640272ce..dae62cc2a 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -528,7 +528,9 @@ library xml >= 1.3.12 && < 1.4, typst >= 0.5.0.1 && < 0.5.1, vector >= 0.12 && < 0.14, - djot >= 0.1 && < 0.2 + djot >= 0.1 && < 0.2, + tls >= 1.9.0 && < 2.1, + crypton-x509-system >= 1.6.7 && < 1.7 if !os(windows) build-depends: unix >= 2.4 && < 2.9 |
