packages feed

http2-tls-0.1.0: http2-tls.cabal

cabal-version:      >=1.10
name:               http2-tls
version:            0.1.0
license:            BSD3
license-file:       LICENSE
maintainer:         Kazu Yamamoto <kazu@iij.ad.jp>
author:             Kazu Yamamoto <kazu@iij.ad.jp>
homepage:           https://github.com/kazu-yamamoto/http2-tls
synopsis:           Library for HTTP/2 over TLS
description:
    Using the HTTP/2 library over TLS

category:           Network
build-type:         Simple

source-repository head
    type:     git
    location: https://github.com/kazu-yamamoto/http2-tls

library
    exposed-modules:
        Network.HTTP2.TLS.Client
        Network.HTTP2.TLS.Internal
        Network.HTTP2.TLS.Server

    other-modules:
        Network.HTTP2.TLS.Client.Settings
        Network.HTTP2.TLS.Config
        Network.HTTP2.TLS.IO
        Network.HTTP2.TLS.Server.Settings
        Network.HTTP2.TLS.Supported

    default-language:   Haskell2010
    default-extensions: Strict StrictData
    ghc-options:        -Wall
    build-depends:
        base >=4.9 && <5,
        bytestring,
        crypton-x509-store,
        crypton-x509-validation,
        data-default-class,
        http2 >= 4.2.0,
        network,
        network-run >=0.2.6,
        recv,
        time-manager,
        tls >=1.7.0,
        unliftio