]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blob - graylog.cabal
c1b028843df9a24bba00b6275a7fc5ebdbdd3cc6
[github/fretlink/haskell-graylog.git] / graylog.cabal
1 name: graylog
2 version: 0.1.0.0
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: WTFPL
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 library
17 hs-source-dirs: src
18 default-language: Haskell2010
19
20 exposed-modules: Graylog.Gelf
21 , Graylog.UDP
22
23 other-modules: Graylog.Types
24
25 ghc-options: -Wall -rtsopts
26
27 build-depends: base ==4.*
28
29 , aeson
30 , aeson-casing
31 , bytestring
32 , network
33 , random
34 , scientific
35 , text
36 , time
37 , vector
38
39 test-suite test-state
40 type: exitcode-stdio-1.0
41 main-is: Main.hs
42 hs-source-dirs: test
43 default-language: Haskell2010
44
45 ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
46
47 other-modules: Test.Graylog.UDP
48
49 build-depends: base ==4.*
50
51 , graylog
52
53 , aeson
54 , aeson-casing
55 , bytestring
56 , file-embed
57 , network
58 , scientific
59 , tasty
60 , tasty-hunit
61 , text
62 , time
63 , vector
64