-
Notifications
You must be signed in to change notification settings - Fork 4
/
mpeff.cabal
43 lines (39 loc) · 1.17 KB
/
mpeff.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: b8ecf1544cc419d434acb5067f25bfdb4ba919f6db167c0d989bd35945ae61ee
name: mpeff
version: 0.1.0.0
synopsis: Efficient effect handlers based on evidence-passing semantics
description: See the "Control.Mp.Eff" module or README.md for further information
category: Control, Effect
homepage: https://github.com/xnning/mpeff#readme
bug-reports: https://github.com/xnning/mpeff/issues
author: Ningning Xie, Daan Leijen
maintainer: [email protected];[email protected]
copyright: (c) 2020, Microsoft Research, Ningning Xie, Daan Leijen
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/xnning/mpeff
library
exposed-modules:
Control.Mp.Eff
Control.Mp.Util
other-modules:
Paths_mpeff
hs-source-dirs:
src
ghc-options: -O2 -fspec-constr-keen
build-depends:
base >=4.7 && <5
, ghc-prim
, primitive
default-language: Haskell2010