-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconsul-haskell.cabal
105 lines (100 loc) · 2.69 KB
/
consul-haskell.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.2.
--
-- see: https://github.com/sol/hpack
name: consul-haskell
version: 0.6.3
synopsis: A consul client for Haskell
description: A consul client for Haskell . Requires consul 1.0 or later. Tested with the latest consul release in each of the release series from 1.3 to 1.9, as well as 1.10.0-alpha. For more info, please see the README on GitHub at <https://github.com/alphaHeavy/consul-haskell#readme>.
category: Network
homepage: https://github.com/alphaHeavy/consul-haskell
bug-reports: https://github.com/alphaHeavy/consul-haskell/issues
author: Steve Severance
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/alphaHeavy/consul-haskell
library
exposed-modules:
Import
Network.Consul
Network.Consul.Client.Acl
Network.Consul.Client.Agent
Network.Consul.Client.Catalog
Network.Consul.Client.Config
Network.Consul.Client.Connect
Network.Consul.Client.Coordinates
Network.Consul.Client.Events
Network.Consul.Client.Health
Network.Consul.Client.Init
Network.Consul.Client.KVStore
Network.Consul.Client.Namespaces
Network.Consul.Client.Operator
Network.Consul.Client.PreparedQueries
Network.Consul.Client.Session
Network.Consul.Client.Snapshots
Network.Consul.Client.Status
Network.Consul.Client.Transactions
Network.Consul.Internal
Network.Consul.Misc
Network.Consul.Sequencer
Network.Consul.Types
other-modules:
Paths_consul_haskell
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
aeson
, base >=4.10 && <5
, base64-bytestring
, bytestring
, connection
, either
, exceptions
, http-client
, http-client-tls
, http-types
, network
, retry
, stm
, text
, transformers
, unliftio >=0.2.4
, unordered-containers
, vector
default-language: Haskell2010
test-suite tasty-hunit-testsuite
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Import
SocketUtils
Util
Paths_consul_haskell
hs-source-dirs:
tests
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
HUnit >=1.2
, base >=4.7 && <5
, bytestring
, consul-haskell
, http-client
, network
, random
, retry
, tasty
, tasty-hunit
, text
, transformers
, typed-process
, unliftio
, uuid
default-language: Haskell2010