tfb-hasql.cabal 710 B

12345678910111213141516171819202122232425
  1. name: tfb-hasql
  2. version: 0.1.0.0
  3. homepage: https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Haskell/warp/shared/tfb-hasql
  4. license: BSD3
  5. author: Naushadh
  6. maintainer: [email protected]
  7. copyright: 2019 Naushadh
  8. category: Web
  9. build-type: Simple
  10. cabal-version: >=1.10
  11. extra-source-files: README.md
  12. library
  13. hs-source-dirs: .
  14. default-language: Haskell2010
  15. exposed-modules: TFB.Db
  16. build-depends:
  17. base >= 4.18 && < 5
  18. , tfb-types
  19. , bytestring
  20. , text
  21. , hasql >= 1.9.3
  22. , hasql-pool >= 1.3.0
  23. , hasql-th >= 0.4.0
  24. , contravariant