-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
55 lines (49 loc) · 1.17 KB
/
package.yaml
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
name: effet
version: 0.4.0.0
github: "typedbyte/effet"
license: BSD3
author: "Michael Szvetits"
maintainer: "typedbyte@qualified.name"
copyright: "2020 Michael Szvetits"
synopsis: An Effect System based on Type Classes
category: Control
description: Please see the README on GitHub at <https://github.com/typedbyte/effet#readme>
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base >= 4.7 && < 5
- containers >= 0.6.2.1 && < 0.7
- monad-control >= 1.0.2.3 && < 1.1
- template-haskell >= 2.14.0.0 && < 3
- transformers >= 0.5.6.2 && < 0.6
- transformers-base >= 0.4.5.2 && < 0.5
library:
source-dirs: src
tests:
examples:
source-dirs: examples
main: Main.hs
dependencies:
- effet
- hspec >= 2.6.0 && < 3
default-extensions:
- AllowAmbiguousTypes
- ConstraintKinds
- DataKinds
- DerivingVia
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GeneralizedNewtypeDeriving
- KindSignatures
- LambdaCase
- MultiParamTypeClasses
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- TypeApplications
- TypeFamilies
- TypeOperators
- UndecidableInstances
ghc-options: -Wall