servant-bench.cabal 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. -- Initial servant-bench.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: servant-bench
  4. version: 0.1.0.0
  5. -- synopsis:
  6. -- description:
  7. license: BSD3
  8. license-file: LICENSE
  9. author: Julian K. Arni
  10. maintainer: [email protected]
  11. -- copyright:
  12. category: Web
  13. build-type: Simple
  14. extra-source-files: ChangeLog.md
  15. cabal-version: >=1.10
  16. library
  17. exposed-modules: ServantBench
  18. -- other-modules:
  19. -- other-extensions:
  20. build-depends: base >=4.8 && <4.9
  21. , servant == 0.7.*
  22. , servant-server == 0.7.*
  23. , servant-lucid == 0.7.*
  24. , lucid
  25. , aeson == 0.11.*
  26. , hasql == 0.19.*
  27. , hasql-pool == 0.4.*
  28. , bytestring == 0.10.6.*
  29. , mwc-random == 0.13.*
  30. , warp == 3.2.*
  31. , transformers
  32. , text == 1.2.*
  33. , contravariant == 1.4.*
  34. , http-media == 0.6.*
  35. hs-source-dirs: src
  36. default-language: Haskell2010
  37. executable servant-exe
  38. main-is: Main.hs
  39. ghc-options: -Wall -threaded -rtsopts -O2
  40. build-depends: base
  41. , servant-bench
  42. , bytestring
  43. , hasql
  44. hs-source-dirs: driver
  45. default-language: Haskell2010