-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmary.cabal
193 lines (160 loc) · 6.39 KB
/
mary.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
-- Initial mary.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: mary
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- https://wiki.haskell.org/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: Content delivery system for CIS
-- A longer description of the package.
-- description:
tested-with: GHC == 8.10
GHC == 9.0
GHC == 9.2
GHC == 9.4
GHC == 9.6
GHC == 9.8
-- URL for the project homepage or repository.
homepage: https://github.com/msp-strath/Mary
-- The license under which the package is released.
-- license:
-- The file containing the license text.
-- license-file: LICENSE
-- The package author(s).
author: Conor McBride, Guillaume Allais, and Fredrik Nordvall Forsberg
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: [email protected]
-- A copyright notice.
-- copyright:
-- category:
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
extra-source-files: README.md
-- , ChangeLog.md
data-files: src/data-dir/Shonkier.js
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
library
hs-source-dirs: src
build-depends: attoparsec >=0.13 && <0.15
, base >=4.14 && <4.20
, bytestring >=0.10 && < 0.12
, containers >=0.6 && <0.7
, directory >=1.3.3.0 && <1.4
, dot >=0.2 && <0.4
, filepath >=1.4 && <1.6
, gitrev >=1.0 && <1.4
, hs-php-session >=0.0 && <0.1
, mtl >=2 && <3
, newtype >=0.2 && <0.3
, pandoc-types >=1.23 && <1.24
, prettyprinter >=1.7 && <1.8
, process >=1.6 && <1.7
, uri-encode >=1.5 && <1.6
, text >=1.2 && <2.2
, yaml >=0.11 && < 0.12
, aeson >= 2.0
-- Modules included in this executable, other than Main.
exposed-modules: Data.Bwd
, Data.Lisp
, Mary.Pandoc
, Mary.Interpreter
, Mary.ServePage
, Mary.Find
, Mary.Version
, Shonkier
, Shonkier.Dot
, Shonkier.Examples
, Shonkier.FreeVars
, Shonkier.Import
, Shonkier.Pandoc
, Shonkier.Parser
, Shonkier.Parser.Examples
, Shonkier.Pretty
, Shonkier.Pretty.Examples
, Shonkier.Pretty.Render.Pandoc
, Shonkier.Primitives
, Shonkier.Scope
, Shonkier.Semantics
, Shonkier.ShonkierJS
, Shonkier.Syntax
, Shonkier.Value
, Utils.List
other-modules: Paths_mary
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Base language which the package is written in.
default-language: Haskell2010
-- LANGUAGE extensions used by modules in this package.
default-extensions: DefaultSignatures
, DeriveTraversable
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, LambdaCase
, MultiParamTypeClasses
, MultiWayIf
, OverloadedStrings
, PatternSynonyms
, RecordWildCards
, ScopedTypeVariables
, TupleSections
, TypeOperators
, TypeSynonymInstances
ghc-options: -Wincomplete-patterns
-Wmissing-signatures
-Woverlapping-patterns
-Wtabs
-fwarn-unused-imports
executable mary
hs-source-dirs: .
main-is: mary.hs
other-modules: Paths_mary
build-depends: attoparsec >=0.13 && <0.15
, base >=4.14 && <4.20
, mary
, mtl >=2 && <3
, optparse-applicative >= 0.13 && < 0.18
, pandoc-types >=1.23 && <1.24
, prettyprinter >=1.7 && <1.8
, text >=1.2 && <2.2
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Base language which the package is written in.
default-language: Haskell2010
-- LANGUAGE extensions used by modules in this package.
default-extensions: LambdaCase
, OverloadedStrings
, RecordWildCards
ghc-options: -Wincomplete-patterns
-Wmissing-signatures
-Woverlapping-patterns
-Wtabs
-fwarn-unused-imports
test-suite mary-tests
type: exitcode-stdio-1.0
hs-source-dirs: test/
main-is: Test/Main.hs
other-modules: Test.Mary
, Test.Shonkier
, Test.Utils
build-depends: base >=4.14 && <4.20
, directory >=1.3 && <1.4
, filepath >=1.4 && <1.5
, mary
, process >=1.6 && <1.7
, tasty >=1.0 && <2.0
, tasty-silver >=3.0 && <4
, text >=1.2 && <2.2
default-extensions: RecordWildCards
-- Base language which the package is written in.
default-language: Haskell2010