-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
43 lines (38 loc) · 997 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
# DON'T EDIT THIS!
#
# Codecrafters relies on this file being intact to run tests successfully. Any changes
# here will not reflect when CodeCrafters tests your code, and might even cause build
# failures.
#
# DON'T EDIT THIS!
name: hs-grep-clone
version: 0.1.0.0
license: BSD3
dependencies:
- base >= 4.7 && < 5
- megaparsec # can help when implementing the parser
- parser-combinators # extends megaparsec
- containers # Set, Map, Seq
- unordered-containers # HashSet, HashMap
- hashable # when using your own data types with unordered-containers
- mtl # monad transformers to help with nested monads
- optparse-applicative
- regex-pcre
default-extensions:
- BlockArguments
- ImportQualifiedPost
- LambdaCase
- NamedFieldPuns
- RecordWildCards
library:
source-dirs: src
executables:
hs-grep-clone-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hs-grep-clone