-- Initial seacat.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: seacat -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- http://www.haskell.org/haskellwiki/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 1.0.0.0 -- A short (one-line) description of the package. synopsis: Small web framework using Warp and WAI -- A longer description of the package. description: A small Haskell web framework using Warp and WAI that tries to get out of your way and let you do what you want, but also providing more advanced features like rate limiting and flood protection. . [WAI] . [Warp] -- URL for the project homepage or repository. homepage: https://github.com/Barrucadu/lambdadelta -- The license under which the package is released. license: OtherLicense -- The file containing the license text. license-file: ../LICENSE -- The package author(s). author: Michael Walker -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: mike@barrucadu.co.uk -- A copyright notice. -- copyright: category: Web build-type: Simple -- Extra files to be distributed with the package, such as examples or a -- README. -- extra-source-files: -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.10 library -- Modules exported by the library. exposed-modules: Web.Seacat , Web.Seacat.Configuration , Web.Seacat.RequestHandler , Web.Seacat.RequestHandler.BanHammer , Web.Seacat.RequestHandler.OnMethod -- Modules included in this library but not exported. other-modules: Web.Seacat.Database , Web.Seacat.Server , Web.Seacat.RequestHandler.Types , Web.Seacat.Router ghc-options: -Wall -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >=4.7 && <4.8 , blaze-builder >=0.3 && <0.4 , blaze-html >=0.7 && <0.8 , bytestring >=0.10 && <0.11 , ConfigFile >=1.1 && <1.2 , data-default >= 0.5 && <0.6 , directory >=1.2 && <1.3 , filepath >=1.3 && <1.4 , http-types >=0.8 && <0.9 , mime-types >=0.1 && <0.2 , MissingH >=1.2 && <1.3 , monad-control >=0.3 && <0.4 , mtl >=2.1 && <2.2 , network >=2.5 && <2.6 , persistent >=1.3 && <1.4 , persistent-postgresql >=1.3 && <1.4 , persistent-sqlite >=1.3 && <1.4 , persistent-template >=1.3 && <1.4 , text >=1.1 && <1.2 , time >=1.4 && <1.5 , transformers >=0.3 && <0.5 , wai >=3.0 && <3.1 , wai-extra >=3.0 && <3.1 , wai-middleware-static >=0.6 && <0.7 , warp >=3.0 && <3.1 , web-routes >=0.27 && <0.28 -- Directories containing source files. hs-source-dirs: src -- Base language which the package is written in. default-language: Haskell2010