snap-bench.cabal 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Name: snap-bench
  2. Version: 0.1
  3. Synopsis: Snap test for benchmark tests
  4. Description: Simple web services to benchmark the Snap web server
  5. License: BSD3
  6. Author: Steve Smith
  7. Maintainer: [email protected]
  8. Stability: Experimental
  9. Category: Web
  10. Build-type: Simple
  11. Cabal-version: >=1.2
  12. Executable snap-bench
  13. hs-source-dirs: src
  14. main-is: Main.hs
  15. Build-depends:
  16. aeson >= 0.6.1.0 && < 0.7,
  17. base >= 4 && < 5,
  18. bytestring >= 0.9.1 && < 0.11,
  19. MonadCatchIO-transformers >= 0.2.1 && < 0.4,
  20. mtl >= 2 && < 3,
  21. snap-core >= 0.9 && < 0.10,
  22. snap-server >= 0.9 && < 0.10,
  23. configurator >= 0.2 && < 0.3,
  24. resource-pool >= 0.2 && < 0.3,
  25. mysql-simple >= 0.2.2.4 && < 0.3,
  26. text >= 0.11.0.0 && < 0.12,
  27. transformers >= 0.3 && < 0.4,
  28. random >= 1 && < 2,
  29. unordered-containers >= 0.2.3.1 && < 0.3
  30. if impl(ghc >= 6.12.0)
  31. ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2
  32. -fno-warn-unused-do-bind -rtsopts
  33. else
  34. ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2