-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmasque.cabal
52 lines (51 loc) · 1.85 KB
/
masque.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
name: masque
version: 15.4.0.0
-- synopsis:
-- description:
homepage: http://github.com/monte-language/masque
license: GPL-3
license-file: LICENSE
author: Corbin Simpson
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable masque
ghc-options: -Wall
main-is: Main.hs
other-modules: Masque.AST
, Masque.Equality
, Masque.Eval
, Masque.Monte
, Masque.Objects.Bool
, Masque.Objects.Builtin
, Masque.Objects.Double
, Masque.Objects.Ejector
, Masque.Objects.Int
, Masque.Objects.Safe
, Masque.Objects.Str
other-extensions: DeriveDataTypeable,
DeriveGeneric,
RecursiveDo,
TemplateHaskell,
ViewPatterns,
FlexibleContexts
build-depends: base == 4.8.*
, bound == 1.0.*
, binary == 0.7.*
, bytestring == 0.10.*
, containers == 0.5.*
, data-binary-ieee754 == 0.4.*
, either == 4.4.*
, free == 4.12.*
, GenericPretty == 1.2.*
, lens == 4.13.*
, mtl == 2.2.*
, network == 2.6.*
, prelude-extras == 0.4.*
, semigroups == 0.18.*
, transformers == 0.4.*
-- hs-source-dirs:
default-language: Haskell2010