-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathambiata-bmx.cabal
151 lines (132 loc) · 5.14 KB
/
ambiata-bmx.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: ambiata-bmx
version: 0.0.1
license: BSD3
author: Ambiata <[email protected]>
maintainer: Ambiata <[email protected]>
copyright: (c) 2015 Ambiata.
synopsis: ambiata-bmx
category: System
cabal-version: >= 1.8
build-type: Custom
description: ambiata-bmx
library
build-depends:
base >= 3 && < 5
, template-haskell >= 2.8 && < 2.12
, transformers >= 0.3 && < 0.6
, either >= 4.3 && < 4.5
, ambiata-p
, ambiata-x-aeson
, ambiata-x-eithert
, ambiata-x-templatehaskell
, syb
, text == 1.2.*
, safe == 0.3.*
, array == 0.5.*
, parsec == 3.1.*
, mtl == 2.2.*
, containers == 0.5.*
, unordered-containers == 0.2.*
, blaze-html == 0.8.*
, scientific == 0.3.*
, filemanip == 0.3.*
, filepath == 1.3.*
, dlist >= 0.7 && < 0.9
, cereal == 0.5.*
, cereal-text == 0.1.*
, bytestring == 0.10.*
build-tools:
happy == 1.19.*
ghc-options:
-Wall
if impl(ghc >= 8.0)
ghc-options: -fno-warn-redundant-constraints
hs-source-dirs:
src
exposed-modules:
-- API
BMX
BMX.Builtin
BMX.Builtin.Debug
BMX.Builtin.Decorators
BMX.Builtin.Helpers
BMX.Debug
BMX.Function
-- Guts
BMX.Eval
BMX.Eval.Function
BMX.Lexer
BMX.Parser
BMX.TH
-- Data
BMX.Data
BMX.Data.AST
BMX.Data.Error
BMX.Data.Eval
BMX.Data.Format
BMX.Data.Function
BMX.Data.Page
BMX.Data.Position
BMX.Data.Token
BMX.Data.Value
executable bmx
ghc-options: -Wall -threaded -O2
build-depends:
base
, ambiata-p
, ambiata-bmx
, ambiata-x-aeson
, ambiata-x-eithert
, ambiata-x-optparse
, text
, transformers
, directory == 1.2.*
hs-source-dirs: gen
main-is: ../main/bmx.hs
test-suite test
type: exitcode-stdio-1.0
main-is: test.hs
ghc-options: -Wall
hs-source-dirs:
test
other-modules:
Test.BMX.Arbitrary
, Test.BMX.Eval
, Test.BMX.Function
, Test.BMX.Lexer
, Test.BMX.Orphans
, Test.BMX.Parser
, Test.BMX.Page
, Test.BMX.Position
, Test.BMX.TH
build-depends:
base >= 3 && < 5
, ambiata-bmx
, ambiata-disorder-aeson
, ambiata-disorder-core
, ambiata-disorder-corpus
, ambiata-p
, ambiata-x-aeson
, QuickCheck >= 2.8.2 && < 2.9
, quickcheck-instances == 0.3.*
, text
, attoparsec
, syb
, containers
, blaze-html
, mtl
, transformers
, deepseq
, dlist
benchmark bench
type: exitcode-stdio-1.0
main-is: bench.hs
ghc-options: -Wall -threaded -O2
hs-source-dirs: test
build-depends: base
, ambiata-bmx
, ambiata-p
, text
, criterion == 1.1.*
, QuickCheck
, deepseq