@hackage http-client-tls0.3.6.4
http-client backend using the connection package and tls library
Installation
Dependencies (16)
- base >=4.10 && <5
- bytestring
- case-insensitive
- containers
- crypton <1.1
- crypton-connection Show all…
Dependents (409)
@hackage/hopenpgp-tools, @hackage/linkcheck, @hackage/notion-client, @hackage/opentelemetry-lightstep, @hackage/algolia, @hackage/rfc, Show all…
http-client-tls
Full tutorial docs are available at: https://haskell-lang.org/library/http-client
Use the http-client package with the pure-Haskell tls package for secure
connections. For the most part, you'll just want to replace
defaultManagerSettings with tlsManagerSettings, e.g.:
import Network.HTTP.Client
import Network.HTTP.Client.TLS
main :: IO ()
main = do
manager <- newManager tlsManagerSettings
...