packages feed

warp-quic-0.0.2: warp-quic.cabal

cabal-version:      >=1.10
name:               warp-quic
version:            0.0.2
license:            BSD3
license-file:       LICENSE
maintainer:         Kazu Yamamoto <kazu@iij.ad.jp>
author:             Kazu Yamamoto <kazu@iij.ad.jp>
homepage:           https://github.com/yesodweb/wai
synopsis:           Warp based on QUIC
description:        WAI handler for HTTP/3 based on QUIC
category:           Network
build-type:         Simple
extra-source-files: ChangeLog.md

library
    exposed-modules:  Network.Wai.Handler.WarpQUIC
    default-language: Haskell2010
    ghc-options:      -Wall
    build-depends:
        base >=4.13 && <5,
        bytestring,
        http3,
        network,
        quic >=0.2 && <0.3,
        tls >=1.7,
        wai,
        warp >=3.4.4

    if impl(ghc >=8)
        default-extensions: Strict StrictData