-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
46 lines (40 loc) · 940 Bytes
/
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
46
name: duration
version: 0.2.0.0
github: "ryota-ka/duration"
license: BSD3
author: "Ryota Kameoka"
maintainer: "[email protected]"
copyright: "2018 Ryota Kameoka"
extra-source-files:
- README.md
synopsis: A tiny compile-time time utility library inspired by zeit/ms
category: Time
description: A tiny compile-time time utility library inspired by zeit/ms
dependencies:
- base >= 4.7 && < 5
- parsec
- template-haskell
- time
library:
source-dirs: src
tests:
spec:
main: Spec.hs
source-dirs: spec
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- duration
- hspec
doctest:
main: Doctest.hs
source-dirs: doctest
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- duration
- doctest