-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell-pdf.cabal
47 lines (45 loc) · 1.09 KB
/
haskell-pdf.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
cabal-version: >=1.10
-- Initial package description 'haskell-pdf.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: haskell-pdf
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Alex Kovar
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable haskell-pdf
main-is: Main.hs
other-modules:
Person
Timesheet
Outvoice
Utils
Config
-- other-extensions:
build-depends:
base >=4.14 && <4.15,
HPDF == 1.5.0,
text >= 1.2.4 && < 1.3,
aeson >= 1.5.3 && < 1.6,
bytestring >= 0.10.10 && < 0.11,
cmdargs >= 0.10.20 && < 0.11,
cassava >= 0.5.2 && < 0.6,
vector >= 0.12.1 && < 0.13,
split >= 0.2.3 && < 0.3,
transformers,
either,
errors,
vector-split,
time,
directory,
filepath
-- hs-source-dirs:
default-language: Haskell2010