-
Notifications
You must be signed in to change notification settings - Fork 1
/
tai64.cabal
59 lines (51 loc) · 1.66 KB
/
tai64.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
name: tai64
version: 0.2.0
synopsis: Tai64 Labels for Haskell
homepage: https://github.com/kim/tai64
bug-reports: http://github.com/kim/tai64/issues
license: MPL-2.0
license-file: LICENSE
author: Kim Altintop
maintainer: [email protected]
copyright: (c) 2015-2016 Kim Altintop
category: Data
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.10.3
description:
Implementation of TAI64 labels as specified by <http://cr.yp.to/libtai/tai64.html>
.
Mainly useful for working with logfiles generated by \"multilog\" (part of
the <http://cr.yp.to/daemontools.html daemontools> suite) or \"svlogd\" (part
of the <http://smarden.org/runit/ runit> suite).
extra-source-files: README.md, CHANGELOG.md, *.dat
data-files: *.dat
source-repository head
type: git
location: https://github.com/kim/tai64.git
library
exposed-modules:
Data.Time.Clock.TAI64
build-depends:
attoparsec >= 0.12
, base >= 4.8 && < 5
, binary >= 0.7
, bytestring >= 0.10
, QuickCheck >= 2.8
, text >= 1.0
, time >= 1.5
, vector >= 0.10
, base16-bytestring >= 0.1.1.6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite doctests
type: exitcode-stdio-1.0
main-is: Doctests.hs
build-depends:
base
, doctest >= 0.8
, tai64
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall -threaded