-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSulfurLang.cabal
47 lines (45 loc) · 1.38 KB
/
SulfurLang.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
name: SulfurLang
version: 0.1.0.0
synopsis:
-- description:
-- license:
-- license-file:
homepage:
author: Daniel Mescheder
maintainer: [email protected]
category:
-- copyright:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: AST,
Syntax,
Data.List.NonEmpty
extensions: OverloadedStrings
build-depends: base >= 4.8,
prelude-extras >= 0.4,
megaparsec >= 5.0,
bound,
containers,
transformers,
mtl >= 2.2,
text
hs-source-dirs: src
test-suite spec
default-language: Haskell2010
type: exitcode-stdio-1.0
extensions: OverloadedStrings
ghc-options: -Wall
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >= 4.8,
hspec == 2.*,
prelude-extras >= 0.4,
megaparsec >= 5.0,
bound,
containers,
transformers,
mtl >= 2.2,
text,
SulfurLang