]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - graylog.cabal
Defined Graylog type to contain connection informaiton.
[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
15981d57 30 , network
52696643
A
31 , scientific
32 , text
33 , time
34 , vector
15981d57
A
35
36test-suite test-state
37 type: exitcode-stdio-1.0
38 main-is: Main.hs
39 hs-source-dirs: test
40 default-language: Haskell2010
41
42 ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
43
44 other-modules: Test.Graylog.UDP
45
46 build-depends: base ==4.*
47
48 , graylog
49
50 , aeson
51 , aeson-casing
52 , network
53 , scientific
54 , tasty
55 , tasty-hunit
56 , text
57 , time
58 , vector
59