spock.cabal 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. name: spock
  2. version: 0.1.0.0
  3. synopsis: Spock - TechEmpower benchmark
  4. description: Please see README.md
  5. homepage: http://spock.li
  6. license: BSD3
  7. license-file: LICENSE
  8. author: Jérôme Mahuet
  9. maintainer: [email protected]
  10. copyright: 2016 Jérôme Mahuet
  11. category: Web
  12. build-type: Simple
  13. -- extra-source-files:
  14. cabal-version: >=1.10
  15. executable spock-exe
  16. hs-source-dirs: src
  17. main-is: Main.hs
  18. ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2
  19. build-depends: base
  20. , Spock
  21. , resource-pool
  22. , text
  23. , aeson >= 0.11
  24. , postgresql-simple
  25. , random
  26. , transformers
  27. , async
  28. , mtl
  29. , resourcet
  30. , http-types
  31. , blaze-html
  32. , blaze-markup
  33. other-modules: Models.Fortune
  34. , Models.World
  35. , Views.Fortune
  36. default-language: Haskell2010
  37. source-repository head
  38. type: git
  39. location: https://github.com/githubuser/spock