12345678910111213141516171819202122232425262728293031323334353637 |
- Name: snap-bench
- Version: 0.1
- Synopsis: Snap test for benchmark tests
- Description: Simple web services to benchmark the Snap web server
- License: BSD3
- Author: Steve Smith
- Maintainer: [email protected]
- Stability: Experimental
- Category: Web
- Build-type: Simple
- Cabal-version: >=1.2
- Executable snap-bench
- hs-source-dirs: src
- main-is: Main.hs
- Build-depends:
- aeson >= 0.6.1.0 && < 0.7,
- base >= 4 && < 5,
- bytestring >= 0.9.1 && < 0.11,
- MonadCatchIO-transformers >= 0.2.1 && < 0.4,
- mtl >= 2 && < 3,
- snap-core >= 0.9 && < 0.10,
- snap-server >= 0.9 && < 0.10,
- configurator >= 0.2 && < 0.3,
- resource-pool >= 0.2 && < 0.3,
- mysql-simple >= 0.2.2.4 && < 0.3,
- text >= 0.11.0.0 && < 0.12,
- transformers >= 0.3 && < 0.4,
- random >= 1 && < 2,
- unordered-containers >= 0.2.3.1 && < 0.3
- if impl(ghc >= 6.12.0)
- ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2
- -fno-warn-unused-do-bind -rtsopts
- else
- ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2
|