]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blob - graylog.cabal
Framed UDP function.
[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 , bytestring
31 , network
32 , random
33 , scientific
34 , text
35 , time
36 , vector
37
38 test-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