forked from pikajude/monad-timing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonad-timing.cabal
More file actions
49 lines (44 loc) · 1.61 KB
/
Copy pathmonad-timing.cabal
File metadata and controls
49 lines (44 loc) · 1.61 KB
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
-- Initial monad-timing.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: monad-timing
version: 0.1.0.1
synopsis: Monad transformer for recording timing events
description: Monad transformer for recording timing events
homepage: https://github.com/pikajude/monad-timing
license: MIT
license-file: LICENSE
author: Jude Taylor
maintainer: me@jude.bio
category: Control
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/pikajude/monad-timing
library
exposed-modules: Control.Monad.Timing
build-depends: base ==4.*
, containers
, exceptions
, mtl
, monad-control
, time
, transformers
, transformers-base
hs-source-dirs: src
default-language: Haskell2010
test-suite hlint
type: exitcode-stdio-1.0
main-is: hlint.hs
build-depends: base, hlint
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -w -threaded -rtsopts -with-rtsopts=-N
test-suite sanity
type: exitcode-stdio-1.0
main-is: sanity.hs
build-depends: base, containers, hspec, monad-timing, transformers
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -w -threaded -rtsopts -with-rtsopts=-N