tfb-mysql-haskell.cabal 733 B

12345678910111213141516171819202122232425
  1. name: tfb-mysql-haskell
  2. version: 0.1.0.0
  3. homepage: https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Haskell/warp/shared/tfb-mysql-haskell
  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: GHC2021
  15. ghc-options: -funbox-strict-fields
  16. exposed-modules: TFB.Db
  17. build-depends:
  18. base >= 4.18 && < 5
  19. , tfb-types
  20. , bytestring
  21. , text
  22. , resource-pool
  23. , mysql-haskell
  24. , io-streams