1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
name: network-conduit-tls
version: 1.4.0.1
synopsis: Create TLS-aware network code with conduits
description: Uses the tls package for a pure-Haskell implementation.
homepage: https://github.com/snoyberg/conduit
license: MIT
license-file: LICENSE
author: Michael Snoyman
maintainer: michael@snoyman.com
category: Network
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md ChangeLog.md
library
default-language: Haskell2010
exposed-modules: Data.Conduit.Network.TLS
Data.Conduit.Network.TLS.Internal
build-depends: base >= 4.12 && < 5
, bytestring >= 0.9
, tls >= 1.3
, conduit-extra >= 1.3
, conduit >= 1.3
, network
, transformers
, crypton-connection
, streaming-commons >= 0.1.12
, unliftio-core
, data-default-class
test-suite test
default-language: Haskell2010
hs-source-dirs: test
main-is: main.hs
type: exitcode-stdio-1.0
cpp-options: -DTEST
build-depends: conduit
, conduit-extra
, crypton-connection
, base
, mtl
, network-conduit-tls
, bytestring
, HUnit
, data-default-class
ghc-options: -Wall -threaded
|