-- Initial hexpress.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: hexpress version: 0.1.0.0 synopsis: An express-like http framework description: Hexpress is an express like http framework to make it easy to write http servers. It is built on the warp http and is blazing fast. See the github readme for more information. homepage: https://github.com/allonsy/hexpress license: MIT license-file: LICENSE author: Alec Snyder maintainer: linuxbash8@gmail.com -- copyright: category: Network build-type: Simple extra-source-files: ChangeLog.md, README.md cabal-version: >=1.10 Source-Repository head Type: git Location: git://github.com/allonsy/hexpress.git library exposed-modules: Network.Hexpress.Request, Network.Hexpress.Server, Network.Hexpress.Types, Network.Hexpress.Middleware.Router -- other-modules: -- other-extensions: build-depends: base >=4.10 && <4.11, bytestring >=0.10 && <1.0.0, transformers >=0.5 && <1.0.0, filepath >=1.0 && <2.0.0, binary >=0.8 && <1.0.0, mtl >=2.0.0 && <3.0.0, http-types >= 0.8.0 && <1.0.0, wai >= 3.0.0 && <4.0.0, aeson >= 1.0.0 && <2.0.0, vault >= 0.3.0.0 && <1.0.0, text >= 1.0.0 && <2.0.0, warp >= 3.0.0 && <4.0.0, mime-types >= 0.1.0.0 && <1.0.0, case-insensitive >= 1.0.0 && <2.0.0 hs-source-dirs: src default-language: Haskell2010