]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blob - graylog.cabal
Merge pull request #1 from fretlink/support-additional-meta
[github/fretlink/haskell-graylog.git] / graylog.cabal
1 name: graylog
2 version: 0.1.0.1
3 synopsis: Support for graylog output.
4 description: Support for sending GELF formatted messages to graylog over
5 chunked UDP.
6 homepage: https://github.com/AndrewRademacher/haskell-graylog
7 license: OtherLicense
8 license-file: LICENSE
9 author: Andrew Rademacher
10 maintainer: andrewrademacher@gmail.com
11 copyright: 2016 Andrew Rademacher
12 category: Web
13 build-type: Simple
14 cabal-version: >=1.10
15
16 source-repository head
17 type: git
18 location: https://github.com/AndrewRademacher/haskell-graylog.git
19
20 library
21 hs-source-dirs: src
22 default-language: Haskell2010
23
24 exposed-modules: Graylog.Gelf
25 , Graylog.UDP
26
27 other-modules: Graylog.Types
28
29 ghc-options: -Wall -rtsopts
30
31 build-depends: base ==4.*
32
33 , aeson
34 , aeson-casing
35 , bytestring
36 , network
37 , random
38 , scientific
39 , text
40 , time
41 , unordered-containers
42 , vector
43
44 test-suite test-state
45 type: exitcode-stdio-1.0
46 main-is: Main.hs
47 hs-source-dirs: test
48 default-language: Haskell2010
49
50 ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
51
52 other-modules: Test.Graylog.UDP
53
54 build-depends: base ==4.*
55
56 , graylog
57
58 , aeson
59 , aeson-casing
60 , bytestring
61 , file-embed
62 , network
63 , scientific
64 , tasty
65 , tasty-hunit
66 , text
67 , time
68 , vector
69