-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtiny.cabal
More file actions
71 lines (67 loc) · 1.61 KB
/
tiny.cabal
File metadata and controls
71 lines (67 loc) · 1.61 KB
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
cabal-version: 3.0
name: tiny
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: mvr
maintainer: mitchell.v.riley@gmail.com
category: Language
build-type: Simple
common warnings
ghc-options:
-Wall -funbox-strict-fields -Wno-unused-imports
-Wno-unused-top-binds -Wno-name-shadowing
common extensions
default-extensions:
BangPatterns
BlockArguments
ConstraintKinds
DeriveFunctor
DerivingVia
FlexibleContexts
FlexibleInstances
FunctionalDependencies
ImplicitParams
LambdaCase
MultiParamTypeClasses
NoMonomorphismRestriction
OverloadedStrings
PatternSynonyms
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
Strict
TupleSections
UndecidableInstances
ViewPatterns
library
import: warnings
import: extensions
default-language: GHC2021
exposed-modules:
Tiny.Check
Tiny.Core
Tiny.Env
Tiny.Parser
Tiny.Pretty
Tiny.Renaming
Tiny.Syntax
Tiny.Value
-- other-extensions:
build-depends:
base ^>=4.19.2.0
, megaparsec
hs-source-dirs: src
executable tiny
import: warnings
import: extensions
default-language: GHC2021
main-is: Main.hs
build-depends:
base ^>=4.19.2.0
, tiny
, megaparsec
hs-source-dirs: app