]> git.immae.eu Git - github/fretlink/haskell-graylog.git/blame - graylog.cabal
Merge pull request #3 from antoine-fl/bump_lts
[github/fretlink/haskell-graylog.git] / graylog.cabal
CommitLineData
52696643 1name: graylog
0edc7f56 2version: 0.1.0.1
52696643 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
0edc7f56 7license: OtherLicense
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
0edc7f56
A
16source-repository head
17 type: git
18 location: https://github.com/AndrewRademacher/haskell-graylog.git
19
8c9d965d 20library
52696643
A
21 hs-source-dirs: src
22 default-language: Haskell2010
23
24 exposed-modules: Graylog.Gelf
2ff46fce
A
25 , Graylog.UDP
26
27 other-modules: Graylog.Types
52696643
A
28
29 ghc-options: -Wall -rtsopts
30
31 build-depends: base ==4.*
8c9d965d 32
52696643
A
33 , aeson
34 , aeson-casing
c91dbdc0 35 , bytestring
15981d57 36 , network
7584306d 37 , network-bsd
640e69ef 38 , random
52696643
A
39 , scientific
40 , text
41 , time
8c9d965d 42 , unordered-containers
52696643 43 , vector
15981d57
A
44
45test-suite test-state
46 type: exitcode-stdio-1.0
47 main-is: Main.hs
48 hs-source-dirs: test
49 default-language: Haskell2010
50
51 ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
52
53 other-modules: Test.Graylog.UDP
54
55 build-depends: base ==4.*
56
57 , graylog
58
59 , aeson
60 , aeson-casing
f82a8dfc
A
61 , bytestring
62 , file-embed
15981d57
A
63 , network
64 , scientific
65 , tasty
66 , tasty-hunit
67 , text
68 , time
69 , vector
70