]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - graylog.cabal
Successful test of un-chunked message.
[github/fretlink/haskell-graylog.git] / graylog.cabal
CommitLineData
52696643
A
1name: graylog
2version: 0.1.0.0
3synopsis: Support for graylog output.
4description: Please see README.md
5homepage: http://github.com/githubuser/graylog#readme
6license: MIT
7license-file: LICENSE
8author: Andrew Rademacher
9maintainer: andrewrademacher@gmail.com
10copyright: 2016 Andrew Rademacher
11category: Web
12build-type: Simple
13cabal-version: >=1.10
14
15library
16 hs-source-dirs: src
17 default-language: Haskell2010
18
19 exposed-modules: Graylog.Gelf
2ff46fce
A
20 , Graylog.UDP
21
22 other-modules: Graylog.Types
52696643
A
23
24 ghc-options: -Wall -rtsopts
25
26 build-depends: base ==4.*
27
28 , aeson
29 , aeson-casing
c91dbdc0 30 , bytestring
15981d57 31 , network
640e69ef 32 , random
52696643
A
33 , scientific
34 , text
35 , time
36 , vector
15981d57
A
37
38test-suite test-state
39 type: exitcode-stdio-1.0
40 main-is: Main.hs
41 hs-source-dirs: test
42 default-language: Haskell2010
43
44 ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
45
46 other-modules: Test.Graylog.UDP
47
48 build-depends: base ==4.*
49
50 , graylog
51
52 , aeson
53 , aeson-casing
54 , network
55 , scientific
56 , tasty
57 , tasty-hunit
58 , text
59 , time
60 , vector
61