-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitlab-triage.cabal
84 lines (80 loc) · 2.81 KB
/
gitlab-triage.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
-- Initial gitlab-triage.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: gitlab-triage
version: 0.1.0.0
synopsis: GitLab ticket viewer
description: TUI for viewing and editing GitLab tickets
license: BSD3
license-file: LICENSE
author: Matthew Pickering
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: 2.0
tested-with: GHC==8.6.4
executable gitlab-triage
main-is: Main.hs
other-modules: Config, SetupForm, Namespace, Model, Autocomplete,
Common, TicketList, Parsers, IssuePage, TextCursor,
ExternalEditor, SetupMode, IOList, Cache, Dialog
-- other-extensions:
ghc-options: -threaded -Wall
build-depends: base >=4.11
, gitlab-servant
, http-client-tls
, http-types
, text
, servant >= 0.16
, servant-client >= 0.16
, connection
, data-default
, brick >= 0.40
, lens
, vector
, vty
, generic-lens
, cursor
, megaparsec
, yaml
, aeson
, directory
, mtl
, temporary
, process
, bytestring
, containers
, parser-combinators
, transformers
, psqueues
, http-client
, time
, hashable
, servant-client-core
, free
, semigroupoids
hs-source-dirs: main
default-language: Haskell2010
library gitlab-servant
exposed-modules: GitLab.Tickets
GitLab.Users
GitLab.Project
GitLab.UploadFile
GitLab.Common
build-depends: base >=4.9 && <4.13,
bytestring,
text,
directory,
exceptions >= 0.9,
aeson,
mtl,
time,
containers,
servant,
servant-client,
process,
servant-client-core,
free
hs-source-dirs: src
default-language: Haskell2010