diff options
Diffstat (limited to 'graylog.cabal')
-rw-r--r-- | graylog.cabal | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/graylog.cabal b/graylog.cabal new file mode 100644 index 0000000..d7d1163 --- /dev/null +++ b/graylog.cabal | |||
@@ -0,0 +1,30 @@ | |||
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 | |||
21 | ghc-options: -Wall -rtsopts | ||
22 | |||
23 | build-depends: base ==4.* | ||
24 | |||
25 | , aeson | ||
26 | , aeson-casing | ||
27 | , scientific | ||
28 | , text | ||
29 | , time | ||
30 | , vector | ||