-
Notifications
You must be signed in to change notification settings - Fork 9
/
list-t.cabal
91 lines (84 loc) · 2.08 KB
/
list-t.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
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
cabal-version: 3.0
name: list-t
version: 1.0.5.7
synopsis: ListT done right
description:
A correct implementation of the list monad-transformer.
Useful for basic streaming.
category: Streaming, Data Structures, Control
homepage: https://github.com/nikita-volkov/list-t
bug-reports: https://github.com/nikita-volkov/list-t/issues
author: Nikita Volkov <[email protected]>
maintainer: Nikita Volkov <[email protected]>
copyright: (c) 2014, Nikita Volkov
license: MIT
license-file: LICENSE
source-repository head
type: git
location: git://github.com/nikita-volkov/list-t.git
common language-settings
default-extensions:
NoImplicitPrelude
NoMonomorphismRestriction
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFunctor
DeriveGeneric
DeriveTraversable
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
LambdaCase
LiberalTypeSynonyms
MagicHash
MultiParamTypeClasses
MultiWayIf
OverloadedStrings
ParallelListComp
PatternGuards
PolyKinds
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeFamilies
TypeOperators
UnboxedTuples
UndecidableInstances
default-language: Haskell2010
library
import: language-settings
hs-source-dirs: library
exposed-modules: ListT
other-modules: ListT.Prelude
build-depends:
, base >=4.11 && <5
, foldl >=1.2 && <2
, logict >=0.7 && <0.9
, mmorph >=1 && <2
, monad-control >=0.3 && <2
, mtl >=2 && <3
, transformers >=0.3 && <0.7
, transformers-base ^>=0.4
if impl(ghc <8.0)
build-depends: semigroups >=0.11 && <0.21
test-suite htf-test
import: language-settings
type: exitcode-stdio-1.0
hs-source-dirs: htf-test
main-is: Main.hs
build-depends:
, base-prelude
, HTF ^>=0.15
, list-t
, mmorph
, mtl-prelude <3