-
Notifications
You must be signed in to change notification settings - Fork 0
/
language-grift.cabal
39 lines (38 loc) · 1.53 KB
/
language-grift.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
name: language-grift
version: 0.1.0.0
synopsis: Parser and pretty printer for Grift languages
-- description:
homepage: https://github.com/Gradual-Typing/language-grift
license: BSD3
license-file: LICENSE
author: Deyaaeldeen Almahallawi
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Language.Grift.Common.Pretty
, Language.Grift.Common.Syntax
, Language.Grift.Source.Parser
, Language.Grift.Source.Pretty
, Language.Grift.Source.Parser.WithSourcePos
, Language.Grift.Source.Syntax
, Language.Grift.Source.Utils
-- other-modules:
other-extensions: FlexibleContexts, FlexibleInstances, MultiParamTypeClasses, NoMonomorphismRestriction, TypeSynonymInstances, UndecidableInstances, DeriveFoldable, DeriveFunctor, DeriveTraversable, StandaloneDeriving, TemplateHaskell
build-depends: base
, bifunctors
, containers
, dlist
, lattices
, mtl
, parsec
, pretty
, Stack
, system-filepath
, text
-- hs-source-dirs:
default-language: Haskell2010
ghc-options:
-Wall -O2