forked from teaching-the-art-of-fp/nanomaly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnanoml.cabal
148 lines (137 loc) · 4.55 KB
/
nanoml.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
-- Initial nanoml.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: nanoml
version: 0.1.0.0
synopsis: Counter-example generator for OCaml type errors
-- description:
license: BSD3
license-file: LICENSE
author: Eric Seidel
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable evaluate
main-is: Evaluate.hs
hs-source-dirs: bin
default-language: Haskell2010
ghc-options: -threaded -rtsopts
build-depends: base >= 4.7 && < 5
-- , async-pool
, containers
, deepseq
, directory
, filepath
, Glob
, mtl
, nanoml
, optparse-generic
, process
, regex-tdfa
, temporary
executable generate-features
main-is: Generate.hs
hs-source-dirs: bin
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, aeson
, bytestring
, cassava
, containers
, Diff
, directory
, filepath
, nanoml
, optparse-generic
, unordered-containers
, vector
executable nanoml-server
main-is: Main.hs
hs-source-dirs: bin
default-language: Haskell2010
ghc-options: -threaded -rtsopts
build-depends: base >= 4.7 && < 5, aeson, containers, data-default, fgl, fgl-visualize,
nanoml, lucid, scotty, text, transformers, wai-extra, unordered-containers >= 0.2
executable nano-check
main-is: Check.hs
hs-source-dirs: bin
default-language: Haskell2010
build-depends: base >= 4.7 && < 5, nanoml, transformers
executable ocaml-to-json
main-is: OcamlToJSON.hs
hs-source-dirs: bin
default-language: Haskell2010
build-depends: base >= 4.7 && < 5, aeson, bytestring, nanoml
executable ocaml-to-seq
main-is: OCamlToSeqToken.hs
hs-source-dirs: bin
default-language: Haskell2010
build-depends: base >= 4.7 && < 5, aeson, bytestring, nanoml
executable print-all-tokens
main-is: PrintAllTokens.hs
hs-source-dirs: bin
default-language: Haskell2010
build-depends: base >= 4.7 && < 5, nanoml
-- executable generate-bad-asts
-- main-is: Generate.hs
-- hs-source-dirs: bin
-- default-language: Haskell2010
-- build-depends: base >= 4.7 && < 5, aeson, bytestring, containers, nanoml, unordered-containers
-- ghc-options: -threaded -rtsopts
library
exposed-modules: NanoML
, NanoML.Classify
, NanoML.Eval
, NanoML.Explore
, NanoML.Gen
, NanoML.Learn
, NanoML.Lexer
, NanoML.Misc
, NanoML.Monad
, NanoML.Parser
, NanoML.Pretty
, NanoML.Prim
, NanoML.Step
, NanoML.Types
-- other-modules:
-- other-extensions:
build-depends: MonadRandom >= 0.5
, aeson >= 0.8
, annotated-wl-pprint >= 0.6
, array
, base >=4.7 && <5
, bytestring >= 0.10
, cassava
, containers >= 0.5
, deepseq
, directory
, exceptions >= 0.8
, fgl, fgl-visualize
, filepath
-- , grenade
, hashable >= 1.2
, haskeline
, hmatrix
, mtl >= 2.2
, parsers >=0.12.5
, random >= 1.1
, regex-tdfa >= 1.2
, syb
, text >= 1.2
, transformers >= 0.4
-- , trifecta >=1.5
, unordered-containers >= 0.2
, vector >= 0.10
build-tools: alex >= 3.2.2, happy >= 1.19.6
hs-source-dirs: src
default-language: Haskell2010
ghc-prof-options: -fprof-auto
executable check-all-from
default-language: Haskell2010
hs-source-dirs: bin
main-is: CheckAllFrom.hs
build-depends: base, nanoml, fgl, unordered-containers, time, cassava, bytestring, async, deepseq, parallel-io
ghc-options: -threaded
ghc-prof-options: -fprof-auto