-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhlivy.cabal
72 lines (70 loc) · 2.72 KB
/
hlivy.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
name: hlivy
version: 1.0.1
synopsis: Client library for the Apache Livy REST API
description: Client library for the Apache Livy REST API -- see README.md
category: Distributed Computing
homepage: https://github.com/EarnestResearch/hlivy
author: Daniel Donohue <ddonohue@earnestresearch.com>
maintainer: Daniel Donohue <ddonohue@earnestresearch.com>
copyright: 2019 Earnest Research
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files: CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/EarnestResearch/hlivy.git
library
exposed-modules:
Network.Livy
Network.Livy.Client.Batch
Network.Livy.Client.Batch.CreateBatch
Network.Livy.Client.Batch.GetBatch
Network.Livy.Client.Batch.GetBatches
Network.Livy.Client.Batch.GetBatchLogs
Network.Livy.Client.Batch.GetBatchState
Network.Livy.Client.Batch.KillBatch
Network.Livy.Client.Interactive
Network.Livy.Client.Interactive.CancelStatement
Network.Livy.Client.Interactive.CreateSession
Network.Livy.Client.Interactive.GetSession
Network.Livy.Client.Interactive.GetSessionLogs
Network.Livy.Client.Interactive.GetSessions
Network.Livy.Client.Interactive.GetSessionState
Network.Livy.Client.Interactive.GetSessionStatement
Network.Livy.Client.Interactive.GetSessionStatements
Network.Livy.Client.Interactive.KillSession
Network.Livy.Client.Interactive.RunStatement
Network.Livy.Client.Interactive.RunStatementCompletion
Network.Livy.Client.Internal.JSON
Network.Livy.Client.Types.Batch
Network.Livy.Client.Types.Session
Network.Livy.Client.Types.Statement
Network.Livy.Env
Network.Livy.Internal.Text
Network.Livy.Monad
Network.Livy.Request
Network.Livy.Response
Network.Livy.Types
other-modules:
Paths_hlivy
hs-source-dirs:
src
default-extensions: OverloadedStrings
ghc-options: -Wall
build-depends:
aeson >= 1.1.2 && < 1.5
, base >= 4.7 && < 5
, bytestring >= 0.9 && < 0.11
, exceptions >= 0.6 && < 0.11
, http-client >= 0.4 && < 0.6
, http-types >= 0.9.1 && < 0.13
, lens >= 4.4 && < 5.0
, mtl >= 2.2.1 && < 2.3
, resourcet >= 1.1 && < 1.3
, text >= 1.1 && < 1.3
, transformers >= 0.5.2 && < 0.6
, unordered-containers >= 0.2.7 && < 0.3
default-language: Haskell2010