]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - graylog.cabal
Added readme, license, and light commenting.
[github/fretlink/haskell-graylog.git] / graylog.cabal
CommitLineData
52696643
A
1name: graylog
2version: 0.1.0.0
3synopsis: Support for graylog output.
d9a5d441
A
4description: Support for sending GELF formatted messages to graylog over
5 chunked UDP.
6homepage: https://github.com/AndrewRademacher/haskell-graylog
7license: WTFPL
52696643
A
8license-file: LICENSE
9author: Andrew Rademacher
10maintainer: andrewrademacher@gmail.com
11copyright: 2016 Andrew Rademacher
12category: Web
13build-type: Simple
14cabal-version: >=1.10
15
16library
17 hs-source-dirs: src
18 default-language: Haskell2010
19
20 exposed-modules: Graylog.Gelf
2ff46fce
A
21 , Graylog.UDP
22
23 other-modules: Graylog.Types
52696643
A
24
25 ghc-options: -Wall -rtsopts
26
27 build-depends: base ==4.*
28
29 , aeson
30 , aeson-casing
c91dbdc0 31 , bytestring
15981d57 32 , network
640e69ef 33 , random
52696643
A
34 , scientific
35 , text
36 , time
37 , vector
15981d57
A
38
39test-suite test-state
40 type: exitcode-stdio-1.0
41 main-is: Main.hs
42 hs-source-dirs: test
43 default-language: Haskell2010
44
45 ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
46
47 other-modules: Test.Graylog.UDP
48
49 build-depends: base ==4.*
50
51 , graylog
52
53 , aeson
54 , aeson-casing
f82a8dfc
A
55 , bytestring
56 , file-embed
15981d57
A
57 , network
58 , scientific
59 , tasty
60 , tasty-hunit
61 , text
62 , time
63 , vector
64