-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhectoparsec-examples.cabal
66 lines (62 loc) · 1.56 KB
/
hectoparsec-examples.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
63
64
65
66
cabal-version: 2.4
name: hectoparsec-examples
version: 0.1.0.0
synopsis: Examples for Hectoparsec
description: Examples for Hectoparsec.
homepage: https://github.com/1Computer1/hectoparsec
bug-reports: https://github.com/1Computer1/hectoparsec/issues
license: MIT
license-file: LICENSE
author: comp
maintainer: [email protected]
copyright: (c) 2020 comp
category: Parsing
build-type: Simple
extra-doc-files:
README.md
tested-with:
GHC == 9.2.1
, GHC == 9.0.2
, GHC == 8.10.7
, GHC == 8.8.4
source-repository head
type: git
location: https://github.com/1Computer1/hectoparsec.git
common common-options
build-depends:
base >= 4.13 && < 5
, bytestring >= 0.10.10 && < 0.12
, containers >= 0.6 && < 0.7
, errata >= 0.4 && < 0.5
, hectoparsec
, mtl >= 2.2.2 && < 2.4
, parser-combinators >= 1 && < 2
, text >= 1.2.3 && < 2.1
, transformers >= 0.5.6 && < 0.7
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wpartial-fields
-Wno-unused-do-bind
-threaded
-rtsopts
-with-rtsopts=-N
default-language: Haskell2010
executable hectoparsec-example-while
import: common-options
hs-source-dirs: while
main-is: Main.hs
other-modules:
Lexer
Parser
executable hectoparsec-example-interp
import: common-options
hs-source-dirs: interp
main-is: Main.hs
other-modules:
Lexer
Parser