-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
120 lines (107 loc) · 2.5 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
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
name: freer-simple
version: 1.3.0.0
category: Control
synopsis: Implementation of a friendly effect system for Haskell.
description: |
An implementation of an effect system for Haskell (a fork of
<http://hackage.haskell.org/package/freer-effects freer-effects>), which is
based on the work of Oleg Kiselyov et al.:
* <http://okmij.org/ftp/Haskell/extensible/more.pdf Freer Monads, More Extensible Effects>
* <http://okmij.org/ftp/Haskell/zseq.pdf Reflection without Remorse>
* <http://okmij.org/ftp/Haskell/extensible/exteff.pdf Extensible Effects>
The key features are:
* An efficient effect system for Haskell - as a library!
* Reimplementations of several common Haskell monad transformers as effects.
* Core components for defining your own Effects.
github: lexi-lambda/freer-simple
license: BSD3
author: Allele Dev, Ixcom Core Team, Alexis King, and other contributors
maintainer: Alexis King <[email protected]>
copyright: (c) 2016 Allele Dev; 2017 Ixperta Solutions s.r.o.; 2017 Alexis King
extra-source-files:
- CHANGELOG.md
- README.md
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -fhide-source-paths
default-extensions:
- ConstraintKinds
- DataKinds
- DeriveFunctor
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- LambdaCase
- MultiParamTypeClasses
- RankNTypes
- ScopedTypeVariables
- TypeApplications
- TypeOperators
dependencies:
- base >= 4.9 && < 5
- dlist
- free
- mtl
# - polysemy
- fused-effects
- async
- stm
- criterion
- doctest
- hspec
- tasty
- tasty-hunit
- tasty-quickcheck
- QuickCheck
library:
source-dirs: src
dependencies:
- natural-transformation >= 0.2
- transformers-base
- template-haskell >= 2.11
- transformers
- exceptions
- microlens
- mmorph
- mtl
- resourcet
- random
- async
- stm
executables:
freer-examples:
source-dirs: examples/src
main: Main.hs
dependencies:
- freer-simple
tests:
unit:
source-dirs: tests
main: Main.hs
dependencies:
- freer-simple
specs:
source-dirs: specs
main: Main.hs
dependencies:
- freer-simple
ghc-options:
- -threaded
- -rtsopts
build-tools:
- hspec-discover >= 2.0
benchmarks:
core:
source-dirs: bench
main: Main.hs
ghc-options:
- -O2
- -threaded
- -rtsopts
dependencies:
- freer-simple