-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
45 lines (42 loc) · 1.25 KB
/
package.yaml
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
name: monad-thyme
version: 0.1.0.0
synopsis: Type class for monads which carry the notion of the current time.
description: A MonadTime type class for monads which carry the notion of the current time.
The type class has instances for IO and a transformer TimeT which can be used
for mocking purposes when testing.
category: Control, Time
github: tmortiboy/monad-thyme
homepage: https://github.com/tmortiboy/monad-thyme
bug-reports: https://github.com/tmortiboy/monad-thyme/issues
license: MIT
license-file: LICENSE
author: Tom Mortiboy
maintainer: [email protected]
copyright: Copyright (c) 2020 Tom Mortiboy
extra-source-files: README.md, ChangeLog.md
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
ghc-options: -Wall
dependencies:
- exceptions
- mmorph
- mtl
- primitive
- thyme
- transformers-base
tests:
monad-thyme-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hspec
- monad-thyme
- mtl
- QuickCheck