servant-hasql.cabal 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. -- Initial servant-hasql.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: servant-hasql
  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
  21. , servant >= 0.7
  22. , servant-server >= 0.7
  23. , type-of-html
  24. , aeson >= 0.11
  25. , hasql >= 0.19
  26. , hasql-pool >= 0.4
  27. , bytestring >= 0.10.6
  28. , mwc-random >= 0.13
  29. , warp >= 3.2
  30. , transformers
  31. , text >= 1.2
  32. , contravariant >= 1.4
  33. , http-media >= 0.6
  34. hs-source-dirs: src
  35. default-language: Haskell2010
  36. executable servant-hasql
  37. main-is: Main.hs
  38. ghc-options: -Wall -threaded -rtsopts -O2
  39. build-depends: base
  40. , servant-hasql
  41. , bytestring
  42. , hasql
  43. hs-source-dirs: driver
  44. default-language: Haskell2010