-
Notifications
You must be signed in to change notification settings - Fork 20
/
mvc.cabal
44 lines (43 loc) · 1.41 KB
/
mvc.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
Name: mvc
Version: 1.1.7
Cabal-Version: >=1.8.0.2
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2014 Gabriella Gonzalez
Author: Gabriella Gonzalez
Maintainer: GenuineGabriella@gmail.com
Tested-With: GHC == 8.0.2
Bug-Reports: https://github.com/Gabriella439/Haskell-MVC-Library/issues
Synopsis: Model-view-controller
Description: Use the @mvc@ library to distill concurrent programs into pure and
single-threaded programs using the @Model@-@View@-@Controller@ pattern. This
transformation lets you:
.
* replay your program deterministically,
.
* do property-based testing of your model (like @QuickCheck@), and:
.
* equationally reason about your pure core.
Category: Control, Concurrency
Source-Repository head
Type: git
Location: https://github.com/Gabriella439/Haskell-MVC-Library
Library
Hs-Source-Dirs: src
Build-Depends:
base >= 4 && < 5 ,
async >= 2.0.0 && < 2.3,
contravariant < 1.5,
foldl >= 1.4,
managed < 1.1,
mmorph >= 1.0.2 && < 1.2,
pipes >= 4.1.7 && < 4.4,
pipes-concurrency >= 2.0.3 && < 2.1,
transformers >= 0.2.0.0 && < 0.6
if !impl(ghc >= 8.0)
Build-depends: semigroups == 0.18.*
Exposed-Modules:
MVC,
MVC.Prelude
GHC-Options: -Wall