-
Notifications
You must be signed in to change notification settings - Fork 3
/
Orchid.cabal
105 lines (101 loc) · 3.77 KB
/
Orchid.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
name: Orchid
version: 0.1.0.0
synopsis: Compiler for Orchid programming language
license: MIT
license-file: LICENSE
author: Ivan Gromakovskii
build-type: Simple
cabal-version: >=1.18
library
exposed-modules: Orchid.Codegen
, Orchid.Compiler
, Orchid.Error
, Orchid.Executor
, Orchid.Lexer
, Orchid.Parser
, Orchid.TailAccumulator
, Orchid.Token
, Orchid.Translator
, Orchid.Types
other-modules: Orchid.ParsecToken
, Orchid.Codegen.Body
, Orchid.Codegen.Common
, Orchid.Codegen.Constant
, Orchid.Codegen.Module
, Orchid.Codegen.Type
build-depends: base >= 4.8
, containers
, filepath
, file-embed
, lens
, llvm-general
, llvm-general-pure
, mtl
, parsec
, safe
, serokell-core
, string-conversions
, temporary
, text
, text-format
, transformers
, turtle
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -fno-warn-orphans
default-extensions: OverloadedStrings
, RecordWildCards
, DeriveDataTypeable
, GeneralizedNewtypeDeriving
executable orchid
main-is: Main.hs
other-modules: Options
build-depends: base >= 4.8
, optparse-applicative
, Orchid
hs-source-dirs: src/app
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -fno-warn-orphans
default-extensions: OverloadedStrings
, RecordWildCards
, DeriveDataTypeable
, GeneralizedNewtypeDeriving
test-suite orchid-test
main-is: Test.hs
other-modules: Test.Orchid.Arbitrary
Test.Orchid.CompilerSpec
Test.Orchid.Data
Test.Orchid.LexerSpec
Test.Orchid.ParserSpec
Test.Orchid.Util
Spec
type: exitcode-stdio-1.0
build-depends: base >= 4.8
, file-embed
, hspec
, Orchid
, QuickCheck
, serokell-core
, text
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -O0 -threaded -rtsopts -with-rtsopts=-N -Wall -fno-warn-orphans
default-extensions: OverloadedStrings
, RecordWildCards
, DeriveDataTypeable
, GeneralizedNewtypeDeriving
benchmark orchid-bench
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends: base >= 4.8
, file-embed
, Orchid
, serokell-core
, text
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N -Wall -fno-warn-orphans
default-extensions: OverloadedStrings
, RecordWildCards
, DeriveDataTypeable
, GeneralizedNewtypeDeriving