-
Notifications
You must be signed in to change notification settings - Fork 3
/
mstan.cabal
81 lines (77 loc) · 2.72 KB
/
mstan.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
name: mstan
version: 0.1.0.0
homepage: https://github.com/rybern/mstan
license: BSD3
license-file: LICENSE
author: Ryan Bernstein
maintainer: ryan.bernstein@columbia.edu
copyright: 2021 Ryan Bernstein
category: Data Science
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
exposed-modules: Indent,
ModuleTree,
SemanticChecking,
ModelGraph,
ConcreteProgram,
Parsing,
Graphviz,
Types,
Printing
hs-source-dirs: lib
default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
build-depends: algebraic-graphs,
attoparsec,
base >= 4.7 && < 5,
containers >= 0.6.2.1,
data-fix >= 0.3.0,
filepath >= 1.4.2.1,
graphviz,
process,
text,
uglymemo
executable mstan
hs-source-dirs: mstan
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
other-modules: CLI,
DiagnosticPrinting
build-depends: base >= 4.7 && < 5,
containers >= 0.6.2.1,
optparse-applicative,
text,
mstan
executable mstan-server
hs-source-dirs: mstan-server
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
other-modules: GraphServer,
WebSocketServer
CLI
build-depends: base >= 4.7 && < 5,
bytestring >= 0.10.10.1,
containers >= 0.6.2.1,
directory,
filepath >= 1.4.2.1,
mstan,
optparse-applicative,
random,
text,
websockets