]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blob - graylog.cabal
Defined Graylog type to contain connection informaiton.
[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 , Graylog.UDP
21
22 other-modules: Graylog.Types
23
24 ghc-options: -Wall -rtsopts
25
26 build-depends: base ==4.*
27
28 , aeson
29 , aeson-casing
30 , network
31 , scientific
32 , text
33 , time
34 , vector
35
36 test-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