-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
72 lines (65 loc) · 1.85 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
name: marginal
version: 0.0.1.0
github: "jhmcstanton/marginal"
license: BSD3
author: "Jim McStanton"
maintainer: "[email protected]"
copyright: "2019 Jim McStanton"
extra-source-files:
- README.md
- ChangeLog.md
- src/Marginal/Parse/OnePhase/Parser.x
- src/Marginal/Parse/TwoPhase/Lexer.x
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/jhmcstanton/marginal#readme>
dependencies:
- base >= 4.7 && < 5
- ansi-terminal >= 0.8.2
- array >= 0.5.3.0
- bytestring >= 0.10.8.2
- containers >= 0.6.0.1
- hashable >= 1.2.7.0
- monads-tf >= 0.1.0.3
- text >= 1.2.3.1
- transformers >= 0.5.6.2
- unordered-containers >= 0.2.10.0
- vector >= 0.12.0.3
library:
source-dirs: src
build-tools:
- alex
- happy
exposed-modules:
- Marginal.Parse.OnePhase.Parser
- Marginal.Parse.TwoPhase.Lexer
- Marginal.Parse.TwoPhase.Parser
- Marginal.Parse.Type
- Marginal.VM.Strict
- Marginal.VM.StrictDebug
- Marginal.VM.Type
executables:
marginal-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- marginal
- optparse-applicative >= 0.14.3.0
tests:
marginal-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- marginal