-
Notifications
You must be signed in to change notification settings - Fork 0
/
lev.cabal
124 lines (118 loc) · 3.52 KB
/
lev.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.2.
--
-- see: https://github.com/sol/hpack
name: lev
version: 0.0.0.0
synopsis: Toy language
description: Blah
category: Language
homepage: http://github.com/jkarni/lev
bug-reports: https://github.com/jkarni/lev/issues
author: Julian K. Arni
maintainer: [email protected]
copyright: (c) Julian K. Arni
license: BSD3
license-file: LICENSE
tested-with: GHC == 8.0.1
build-type: Simple
extra-source-files:
package.yaml
source-repository head
type: git
location: https://github.com/jkarni/lev
library
hs-source-dirs:
src
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveAnyClass DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable DerivingStrategies DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings StandaloneDeriving RankNTypes RecordWildCards ScopedTypeVariables TypeFamilies TypeOperators
ghc-options: -Wall
build-depends:
base
, bound
, bound-gen
, containers
, deriving-compat
, generic-functor
, lens
, mmorph
, monad-gen
, mtl
, parsers
, prettyprinter
, prettyprinter-ansi-terminal
, string-conversions
, text
, transformers-compat
, trifecta
exposed-modules:
Lev
Lev.Internal
Lev.Internal.Decl
Lev.Internal.Expr
Lev.Internal.Parser
Lev.Internal.Pretty
Lev.Internal.Prim
default-language: Haskell2010
executable dt
main-is: Dt.hs
other-modules:
Paths_lev
hs-source-dirs:
exe
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveAnyClass DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable DerivingStrategies DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings StandaloneDeriving RankNTypes RecordWildCards ScopedTypeVariables TypeFamilies TypeOperators
ghc-options: -Wall
build-depends:
QuickCheck
, base
, bound
, bound-gen
, containers
, deriving-compat
, generic-functor
, lens
, lev
, mmorph
, monad-gen
, mtl
, optparse-applicative
, parsers
, prettyprinter
, prettyprinter-ansi-terminal
, string-conversions
, text
, transformers-compat
, trifecta
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveAnyClass DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable DerivingStrategies DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings StandaloneDeriving RankNTypes RecordWildCards ScopedTypeVariables TypeFamilies TypeOperators
ghc-options: -Wall
build-depends:
QuickCheck
, base
, bound
, bound-gen
, containers
, deriving-compat
, generic-functor
, hspec
, lens
, lev
, mmorph
, monad-gen
, mtl
, parsers
, prettyprinter
, prettyprinter-ansi-terminal
, string-conversions
, text
, transformers-compat
, trifecta
other-modules:
Lev.Internal.ExprSpec
Lev.Internal.PPSpec
Paths_lev
default-language: Haskell2010