-
Notifications
You must be signed in to change notification settings - Fork 3
/
BDCSCli.cabal
89 lines (85 loc) · 3.1 KB
/
BDCSCli.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
85
86
87
88
89
-- Initial bdcs-cli.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: BDCSCli
version: 0.2.0.0
synopsis: A commandline tool for interacting with the BDCS API server.
-- description:
license: GPL-3
license-file: LICENSE
author: Brian C. Lane
maintainer: bcl@redhat.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: BDCSCli.API.V0
BDCSCli.API.Types.APIResponse
BDCSCli.API.Types.ComposeBody
BDCSCli.API.Types.ComposeDelete
BDCSCli.API.Types.ComposeInfo
BDCSCli.API.Types.ComposeStatus
BDCSCli.API.Types.ComposeType
BDCSCli.API.Types.QueueStatus
BDCSCli.API.Types.Recipe
BDCSCli.API.Types.RecipeDiff
BDCSCli.Cmdline
BDCSCli.Commands
BDCSCli.CommandCtx
BDCSCli.FileDownload
BDCSCli.Recipe
BDCSCli.URL
BDCSCli.Utilities
build-depends: aeson,
aeson-pretty,
base >=4.9 && <=4.11,
bytestring,
cond,
directory,
filepath,
gi-gio,
gi-ggit,
gi-glib >= 2.0.15 && < 2.1,
http-client,
http-streams,
htoml,
io-streams,
lens,
lens-aeson,
monad-loops,
network,
process,
semver,
split,
string-conversions >= 0.4.0 && < 0.5,
time,
temporary,
text,
tostring,
wreq
default-language: Haskell2010
ghc-options: -Wall -Wno-unused-do-bind
executable bdcs-cli
main-is: bdcs-cli.hs
hs-source-dirs: tools
dist/build/autogen
build-depends: base,
gitrev >= 1.3.1,
wreq,
BDCSCli
other-modules: Paths_BDCSCli
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
ghc-options: -Wall
build-depends: base,
aeson,
bytestring,
hspec,
string-qq,
text,
BDCSCli
default-language: Haskell2010