-
Notifications
You must be signed in to change notification settings - Fork 1
/
compiler.cabal
87 lines (82 loc) · 2.04 KB
/
compiler.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
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 58afd0480fb7d55091476cfbee189609c1d38198ff33e428e5ec73c0d72d0718
name: compiler
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/exosphere/compiler#readme>
homepage: https://github.com/exosphere-lang/compiler#readme
bug-reports: https://github.com/exosphere-lang/compiler/issues
author: Chris Bacon & Jacob Clark
copyright: 2019 Chris Bacon & Jacob Clark
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/exosphere-lang/compiler
library
exposed-modules:
CodeGen.Generate
Parser.AST
Parser.CustomError
Parser.Keywords
Parser.Parse
Parser.ParseError.Errors
Parser.SyntacticAnalysis
ServiceType
ServiceTypes.S3
other-modules:
Paths_compiler
hs-source-dirs:
src
ghc-options: -Wincomplete-patterns -Wall -O2
build-depends:
aeson
, base
, bytestring
, containers
, megaparsec
, parsec
, split
, text
, unordered-containers
default-language: Haskell2010
executable exospherec
main-is: Main.hs
other-modules:
Paths_compiler
hs-source-dirs:
app
ghc-options: -Wincomplete-patterns -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base
, bytestring
, compiler
, megaparsec
default-language: Haskell2010
test-suite exosphere-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
CodeGen.GenerateSpec
Parser.S3.AccessControl
Parser.SyntacticAnalysisSpec
Paths_compiler
hs-source-dirs:
test
ghc-options: -Wincomplete-patterns -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base
, bytestring
, compiler
, hspec
, megaparsec
default-language: Haskell2010