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