-
Notifications
You must be signed in to change notification settings - Fork 1
/
datetimes.cabal
56 lines (51 loc) · 1.62 KB
/
datetimes.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
cabal-version: 1.12
name: datetimes
version: 0.1.2.0
license: Apache
license-file: LICENSE
maintainer: Adjoint Inc ([email protected])
author: Adjoint Inc
homepage: https://github.com/adjoint-io/datetime#readme
bug-reports: https://github.com/adjoint-io/datetime/issues
category: Finance
build-type: Simple
source-repository head
type: git
location: https://github.com/adjoint-io/datetime
library
exposed-modules:
Datetime
Datetime.Types
hs-source-dirs: src
other-modules: Paths_datetimes
default-language: Haskell2010
ghc-options:
-fwarn-unused-imports -fwarn-incomplete-patterns
-fwarn-incomplete-uni-patterns
build-depends:
aeson >=1.1 && <1.6
, base >=4.7 && <5
, binary >=0.8.5.1 && <0.9
, cereal >=0.5 && <0.6
, hourglass >=0.2 && <0.3
, protolude >=0.2 && <0.4
, time >=1.6.0.1 && <1.10
test-suite datetimes-test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test
other-modules: Paths_datetimes
default-language: Haskell2010
build-depends:
aeson >=1.1 && <1.6
, base >=4.7 && <4.15
, binary >=0.8.5.1 && <0.9
, cereal >=0.5 && <0.6
, datetimes
, hourglass >=0.2 && <0.3
, protolude >=0.2 && <0.4
, QuickCheck >=2.12 && <2.15
, tasty >=1.2 && <1.4
, tasty-hunit >=0.10.0.0 && <0.11
, tasty-quickcheck >=0.10 && <0.11
, time >=1.6.0.1 && <1.10