Typo.
[cabal.git] / solver-benchmarks / solver-benchmarks.cabal
blob757aed010ef66d1f2b3a0556c61f2fcbadccf8ec
1 name:          solver-benchmarks
2 version:       2.1.0.0
3 copyright:     2003-2017, Cabal Development Team (see AUTHORS file)
4 license:       BSD3
5 license-file:  LICENSE
6 author:        Cabal Development Team <cabal-devel@haskell.org>
7 maintainer:    cabal-devel@haskell.org
8 homepage:      http://www.haskell.org/cabal/
9 bug-reports:   https://github.com/haskell/cabal/issues
10 synopsis:      Benchmarks for the cabal dependency solver
11 description:
12   This package contains benchmarks that test cabal's dependency solver by running the cabal executable.
13 category:       Distribution
14 cabal-version:  >=1.10
15 build-type:     Simple
17 extra-source-files:
18   README.md
20 source-repository head
21   type:     git
22   location: https://github.com/haskell/cabal/
23   subdir:   solver-benchmarks
25 library
26   ghc-options: -Wall -fwarn-tabs
27   exposed-modules:
28     HackageBenchmark
29   build-depends:
30     base,
31     bytestring,
32     Cabal >= 2.1,
33     optparse-applicative,
34     process,
35     time,
36     statistics >= 0.14 && < 0.15,
37     vector
38   default-language: Haskell2010
40 executable hackage-benchmark
41   main-is: hackage-benchmark.hs
42   hs-source-dirs: main
43   ghc-options: -threaded -Wall -fwarn-tabs
44   build-depends:
45     base,
46     solver-benchmarks
47   default-language: Haskell2010
49 test-suite unit-tests
50   type: exitcode-stdio-1.0
51   main-is: HackageBenchmarkTest.hs
52   hs-source-dirs: tests
53   ghc-options: -threaded -Wall -fwarn-tabs
54   build-depends:
55     base,
56     solver-benchmarks,
57     statistics >= 0.14 && < 0.15,
58     tasty,
59     tasty-hunit
60   default-language: Haskell2010