This repository has been archived by the owner on Sep 17, 2019. It is now read-only.
forked from effectfully/tiny-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiny-lang.cabal
103 lines (100 loc) · 3.35 KB
/
tiny-lang.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
name: tiny-lang
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/tiny-lang#readme
license: BSD3
license-file: LICENSE
author: Author name here
maintainer: [email protected]
copyright: 2019 Author name here
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: library common boolean field
exposed-modules:
Data.Field
TinyLang.Environment
TinyLang.Generator
TinyLang.Prelude
TinyLang.Var
TinyLang.Boolean.Core
TinyLang.Boolean.Evaluator
TinyLang.Boolean.Generator
TinyLang.Boolean.Parser
TinyLang.Boolean.Printer
TinyLang.Field.Core
TinyLang.Field.Evaluator
TinyLang.Field.Generator
TinyLang.Field.ParsableField
TinyLang.Field.Parser
TinyLang.Field.ParserUtils
TinyLang.Field.Printer
TinyLang.Field.F17
TinyLang.Field.F4913
build-depends:
base >= 4.7 && < 5,
transformers,
mtl,
containers,
hashable,
unordered-containers,
megaparsec,
mmorph,
parser-combinators,
QuickCheck,
QuickCheck-GenT,
smallcheck
default-language: Haskell2010
default-extensions:
MultiParamTypeClasses, FlexibleContexts, FlexibleInstances
ScopedTypeVariables, ConstraintKinds, DefaultSignatures
GADTs, DataKinds, PolyKinds, RankNTypes, TypeFamilies, FunctionalDependencies
DerivingStrategies, DeriveAnyClass, GeneralizedNewtypeDeriving, StandaloneDeriving
DeriveFunctor, DeriveFoldable, DeriveTraversable
DeriveGeneric, DeriveDataTypeable,
EmptyCase, LambdaCase, BangPatterns, MultiWayIf, TupleSections
TypeOperators, PatternSynonyms, TypeApplications
OverloadedStrings, StrictData
ghc-options:
-Wall
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
test-suite tiny-lang-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Boolean.Textual
Field.Textual
Field.FieldAxioms
default-language: Haskell2010
build-depends:
tiny-lang,
base >= 4.7 && < 5,
mtl,
containers,
QuickCheck,
QuickCheck-GenT >= 2.0,
tasty,
tasty-quickcheck
default-extensions:
MultiParamTypeClasses, FlexibleContexts, FlexibleInstances
ScopedTypeVariables, ConstraintKinds, DefaultSignatures
GADTs, DataKinds, PolyKinds, RankNTypes, TypeFamilies, FunctionalDependencies
DerivingStrategies, DeriveAnyClass, GeneralizedNewtypeDeriving, StandaloneDeriving
DeriveFunctor, DeriveFoldable, DeriveTraversable
DeriveGeneric, DeriveDataTypeable,
EmptyCase, LambdaCase, BangPatterns, MultiWayIf, TupleSections
TypeOperators, PatternSynonyms, TypeApplications
OverloadedStrings, StrictData
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
-Wall
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
source-repository head
type: git
location: https://github.com/githubuser/tiny-lang