-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
75 lines (75 loc) · 1.35 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: alang-clike-parser
version: '0.2.0'
category: Devel
author: Justus Adam
maintainer: [email protected]
copyright: © 2017 Justus Adam
license: OtherLicense
github: ohua-dev/alang-clike-parser
extra-source-files:
- README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
default-extensions:
- OverloadedStrings
- OverloadedLists
- MultiParamTypeClasses
- FunctionalDependencies
- TypeFamilies
- GADTs
- FlexibleContexts
- FlexibleInstances
- TypeSynonymInstances
- LambdaCase
- TupleSections
- BangPatterns
- ExplicitForAll
- ScopedTypeVariables
- DefaultSignatures
- DeriveFunctor
- DeriveFoldable
- DeriveTraversable
- DeriveGeneric
- PatternSynonyms
- NamedFieldPuns
- RecordWildCards
- ConstraintKinds
- StandaloneDeriving
- NoImplicitPrelude
dependencies:
- base >=4.7 && <5
- bytestring
- ohua-core >= 0.3.0
- lens
- mtl
- recursion-schemes
- prettyprinter
library:
source-dirs: src
exposed-modules:
- Ohua.Compat.Clike.Lexer
- Ohua.Compat.Clike.Parser
- Ohua.Compat.Clike.Types
dependencies:
- array
- unordered-containers
- recursion-schemes
- text
build-tools:
- alex
- happy
tests:
alang-clike-parser-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- alang-clike-parser
- hspec