-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMonads.cabal
53 lines (49 loc) · 1.3 KB
/
Monads.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: ba049f250b863ad5c7abc745a73c1adfc336f3d1a3f39f43a7d22beedcd8e9fd
name: Monads
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/MondayMorningHaskell/Monads#readme>
homepage: https://github.com/MondayMorningHaskell/Monads#readme
bug-reports: https://github.com/MondayMorningHaskell/Monads/issues
author: James Bowen
maintainer: [email protected]
copyright: 2021 Monday Morning Haskell
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/MondayMorningHaskell/Monads
library
exposed-modules:
Functors
FunctorsComplete
ApplicativesComplete
MonadsBasic
MonadsBasicComplete
ReaderWriter
ReaderWriterComplete
State
StateComplete
Transformers
TransformersComplete
LawsComplete
other-modules:
Paths_Monads
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, array
, containers
, mtl
, QuickCheck
, random
, transformers
default-language: Haskell2010