forked from EarnestResearch/honeycomb-haskell
-
Notifications
You must be signed in to change notification settings - Fork 2
/
honeycomb.cabal
81 lines (78 loc) · 2.38 KB
/
honeycomb.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
cabal-version: 1.12
name: honeycomb
version: 0.1.0.0
description: Please see the README on Github at <https://github.com/EarnestResearch/honeycomb-haskell#readme>
homepage: https://github.com/EarnestResearch/honeycomb-haskell#readme
bug-reports: https://github.com/EarnestResearch/honeycomb-haskell/issues
author: Gary Coady
maintainer: [email protected]
copyright: 2019 Earnest Research
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/EarnestResearch/honeycomb-haskell
library
exposed-modules:
Honeycomb
Honeycomb.Api
Honeycomb.Api.Events
Honeycomb.Api.Types
Honeycomb.Api.Types.ApiHost
Honeycomb.Api.Types.ApiKey
Honeycomb.Api.Types.Dataset
Honeycomb.Api.Types.Event
Honeycomb.Api.Types.HoneyObject
Honeycomb.Api.Types.HoneyValue
Honeycomb.Api.Types.RequestOptions
Honeycomb.Trace
Honeycomb.Trace.Types
Honeycomb.Trace.Types.ServiceName
Honeycomb.Trace.Types.SpanContext
Honeycomb.Trace.Types.SpanId
Honeycomb.Trace.Types.SpanName
Honeycomb.Trace.Types.SpanReference
Honeycomb.Trace.Types.TraceId
Honeycomb.Transport
Honeycomb.Core
Honeycomb.Core.Types
Honeycomb.Core.Types.Honey
Honeycomb.Core.Types.HoneyEvent
Honeycomb.Core.Types.HoneyException
Honeycomb.Core.Types.HoneyOptions
Honeycomb.Core.Types.HoneyResponse
Honeycomb.Core.Types.HoneyServerOptions
Honeycomb.Core.Types.TransportState
other-modules:
Paths_honeycomb
hs-source-dirs:
src
other-extensions:
FlexibleInstances GeneralizedNewtypeDeriving NamedFieldPuns OverloadedStrings ScopedTypeVariables DeriveGeneric DeriveAnyClass TupleSections
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -fhide-source-paths
build-depends:
aeson
, base >=4.11 && <10
, bytestring
, hashable
, http-client
, http-client-tls
, http-types
, microlens
, microlens-mtl
, mtl
, network-uri
, random
, resourcet
, scientific
, stm
, text
, time
, unliftio
, unordered-containers
, uuid
default-language: Haskell2010