blob: b3c1a5308b8e6710dba02a1dbe8982db545de785 (
plain) (
tree)
|
|
name: graylog
version: 0.1.0.0
synopsis: Support for graylog output.
description: Please see README.md
homepage: http://github.com/githubuser/graylog#readme
license: MIT
license-file: LICENSE
author: Andrew Rademacher
maintainer: andrewrademacher@gmail.com
copyright: 2016 Andrew Rademacher
category: Web
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Graylog.Gelf
ghc-options: -Wall -rtsopts
build-depends: base ==4.*
, aeson
, aeson-casing
, network
, scientific
, text
, time
, vector
test-suite test-state
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts
other-modules: Test.Graylog.UDP
build-depends: base ==4.*
, graylog
, aeson
, aeson-casing
, network
, scientific
, tasty
, tasty-hunit
, text
, time
, vector
|