123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- -- Initial servant-bench.cabal generated by cabal init. For further
- -- documentation, see http://haskell.org/cabal/users-guide/
- name: servant-bench
- 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 && <4.9
- , servant == 0.7.*
- , servant-server == 0.7.*
- , servant-lucid == 0.7.*
- , lucid
- , 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-exe
- main-is: Main.hs
- ghc-options: -Wall -threaded -rtsopts -O2
- build-depends: base
- , servant-bench
- , bytestring
- , hasql
- hs-source-dirs: driver
- default-language: Haskell2010
|