-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdclock.cabal
67 lines (59 loc) · 2.02 KB
/
dclock.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
60
61
62
63
64
65
66
67
cabal-version: 3.0
name: dclock
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Travis Montoya
maintainer: [email protected]
homepage: https://github.com/travgm/dclock
build-type: Simple
synopsis: dclock
description: A simple decimal clock that maps your day to 1000 decimal minutes
extra-doc-files: CHANGELOG.md
category: Time
stability: experimental
source-repository head
type: git
location: [email protected]:travgm/dclock.git
common warnings
ghc-options: -Wall -fwarn-tabs -O2
library
hs-source-dirs: Lib
exposed-modules: DecimalTime,
PrettyPrinter,
Types
build-depends: base >=4.17 && < 4.21,
time ^>=1.14,
lens ^>= 5.2.1,
text ^>= 2.1.1,
ansi-terminal ^>=1.1.1,
QuickCheck ^>= 2.14
default-language: Haskell2010
executable dclock
import: warnings
main-is: Main.hs
build-depends: base >=4.17 && < 4.21,
dclock,
time ^>=1.14,
machines ^>= 0.7.2,
text ^>= 2.1.1,
ansi-terminal ^>=1.1.1,
optparse-applicative ^>= 0.18.1
hs-source-dirs: app
default-language: Haskell2010
test-suite dclock-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base
, dclock
, time ^>=1.14
, lens ^>= 5.2.1
, text ^>= 2.1.1
, hspec
, QuickCheck
, hspec-discover
other-modules: DecimalTimeSpec,
PrettyPrinterSpec
build-tool-depends: hspec-discover:hspec-discover
default-language: Haskell2010