-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
57 lines (49 loc) · 952 Bytes
/
package.yaml
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
name: haccepted
version: 0.1.0.0
synopsis: Data structures and algorithms
description: Data structures and algorithms for competitive programming in Haskell
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- array
- bytestring
- containers
- deepseq
- mtl
ghc-options: -Wall -fno-warn-name-shadowing
library:
source-dirs: src
tests:
test-all:
source-dirs: tests
main: Spec.hs
ghc-options: -fno-warn-orphans
dependencies:
- haccepted
- hspec
- QuickCheck
benchmarks:
bench-all:
source-dirs: bench
main: Bench.hs
ghc-options: -O2 -fno-warn-orphans
dependencies:
- haccepted
- criterion
- MonadRandom
- random
executables:
gen-summary:
source-dirs: bench-out
main: GenSummary.hs
dependencies:
- containers
- csv
- table-layout
- text
rewrite-srcs:
source-dirs: gendocs
main: RewriteSrcs.hs
dependencies:
- filepath