-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutrack.cabal
70 lines (62 loc) · 2.21 KB
/
youtrack.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
name: youtrack
copyright: Copyright (c) 2016 Kosyrev Serge
version: 0.0.8
synopsis: Access a Jetbrains YouTrack instance.
homepage: https://github.com/deepfire/youtrack
bug-reports: https://github.com/deepfire/youtrack/issues
license: GPL-3
license-file: LICENSE
author: Kosyrev Serge
maintainer: _deepfire@feelingofgreen.ru
category: Database
build-type: Simple
extra-doc-files: README.org
cabal-version: >=1.10
tested-with: GHC==8.0.2
source-repository head
type: git
location: https://github.com/deepfire/youtrack.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Youtrack
, Youtrack.Exchanges
, Youtrack.Names
, Youtrack.Types
other-modules: Authinfo
build-depends: aeson >=0.11
, base >=4.8
, base-unicode-symbols >=0.2
, bytestring >=0.10
, hashable >=1.2
, HsOpenSSL >=0.11
, http-client >=0.4
, http-client-openssl >=0.2
, lens >=4.0
, mtl >=2.0
, parsers >=0.12
, QuickCheck >= 2.8
, safe >= 0.3
, scientific >=0.3
, split >= 0.2
, text >=1.2
, time >=1.5
, trifecta >=1.5
, unordered-containers >=0.2
, utf8-string >=1.0
, vector >=0.11
, wreq >=0.4
executable youtrack-test
hs-source-dirs: .
main-is: test.hs
default-language: Haskell2010
ghc-options: -threaded
build-depends: base
, base-unicode-symbols
, exceptions
, optparse-applicative
, pretty-show
, text
, unicode-show
, unordered-containers
, youtrack