1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- -- Initial servant-hasql.cabal generated by cabal init. For further
- -- documentation, see http://haskell.org/cabal/users-guide/
- name: servant-hasql
- version: 0.1.0.0
- -- synopsis:
- -- description:
- license: BSD3
- license-file: LICENSE
- author: Julian K. Arni
- maintainer: [email protected]
- -- copyright:
- category: Web
- build-type: Simple
- extra-source-files: ChangeLog.md
- cabal-version: >=1.10
- library
- exposed-modules: ServantBench
- -- other-modules:
- -- other-extensions:
- build-depends: base >=4.8
- , servant >= 0.7
- , servant-server >= 0.7
- , type-of-html
- , aeson >= 0.11
- , hasql >= 0.19
- , hasql-pool >= 0.4
- , bytestring >= 0.10.6
- , mwc-random >= 0.13
- , warp >= 3.2
- , transformers
- , text >= 1.2
- , contravariant >= 1.4
- , http-media >= 0.6
- hs-source-dirs: src
- default-language: Haskell2010
- executable servant-hasql
- main-is: Main.hs
- ghc-options: -Wall -threaded -rtsopts -O2
- build-depends: base
- , servant-hasql
- , bytestring
- , hasql
- hs-source-dirs: driver
- default-language: Haskell2010
|