porpoise-0.1.0.0: porpoise.cabal
cabal-version: 2.4
name: porpoise
version: 0.1.0.0
license: MIT
license-file: LICENSE
synopsis: A minimalist HTTP server framework written on top of wai
description: A minimalist HTTP server framework written on top of wai.
author: Samuel Schlesinger
maintainer: sgschlesinger@gmail.com
copyright: 2020 Samuel Schlesinger
category: Control
build-type: Simple
extra-source-files: CHANGELOG.md
tested-with: GHC ==8.6.1 ||
==8.6.2 ||
==8.6.3 ||
==8.6.4 ||
==8.6.5 ||
==8.8.1 ||
==8.8.2 ||
==8.8.3 ||
==8.8.4 ||
==8.10.1 ||
==8.10.2
source-repository head
type: git
location: https://github.com/samuelschlesinger/porpoise
library
exposed-modules: Web.Porpoise
build-depends: base >=4.12 && <4.16,
wai >=3.2,
profunctors >=0.5,
mtl >=2.2,
unliftio >=0.2,
http-types >=0.12,
network >=3.1,
vault >=0.3
default-language: Haskell2010
executable porpoise-example
main-is: example.hs
hs-source-dirs: example
build-depends: base >=4.12 && <4.16,
warp >=3.3,
porpoise
default-language: Haskell2010