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