-
Notifications
You must be signed in to change notification settings - Fork 2
/
fused-syntax.cabal
64 lines (61 loc) · 1.6 KB
/
fused-syntax.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
cabal-version: 2.2
name: fused-syntax
version: 0.0.0.0
synopsis: Fast, flexible, fused syntax operations for Haskell
description: Fast, flexible, fused syntax operations for languages implemented in Haskell
homepage: https://github.com/antitypical/fused-syntax
bug-reports: https://github.com/antitypical/fused-syntax/issues
license: BSD-3-Clause
license-file: LICENSE
author: Rob Rix
maintainer: [email protected]
copyright: 2019 Rob Rix
category: Language
extra-source-files:
CHANGELOG.md
README.md
common common
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missed-specialisations
-Wno-missing-import-lists
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-name-shadowing
-Wno-safe
-Wno-star-is-type
-Wno-unsafe
if (impl(ghc >= 8.8))
ghc-options: -Wno-missing-deriving-strategies
if (impl(ghc >= 8.10))
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
library
import: common
hs-source-dirs: src
exposed-modules:
Syntax.Algebra
Syntax.Fin
Syntax.Fix
Syntax.Foldable
Syntax.Functor
Syntax.Module
Syntax.Nat
Syntax.Pretty
Syntax.Scope
Syntax.Stack
Syntax.Sum
Syntax.Term
Syntax.Trans.Scope
Syntax.Traversable
Syntax.Var
Syntax.Vec
other-modules:
Example.Lam
build-depends:
base >= 4.12 && < 5
, transformers ^>= 0.5.6