]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - graylog.cabal
Added testing for UDP method.
[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
20
21 ghc-options: -Wall -rtsopts
22
23 build-depends: base ==4.*
24
25 , aeson
26 , aeson-casing
15981d57 27 , network
52696643
A
28 , scientific
29 , text
30 , time
31 , vector
15981d57
A
32
33test-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