diff options
Diffstat (limited to 'graylog.cabal')
-rw-r--r-- | graylog.cabal | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/graylog.cabal b/graylog.cabal index d7d1163..b3c1a53 100644 --- a/graylog.cabal +++ b/graylog.cabal | |||
@@ -24,7 +24,33 @@ library | |||
24 | 24 | ||
25 | , aeson | 25 | , aeson |
26 | , aeson-casing | 26 | , aeson-casing |
27 | , network | ||
27 | , scientific | 28 | , scientific |
28 | , text | 29 | , text |
29 | , time | 30 | , time |
30 | , vector | 31 | , vector |
32 | |||
33 | test-suite test-state | ||
34 | type: exitcode-stdio-1.0 | ||
35 | main-is: Main.hs | ||
36 | hs-source-dirs: test | ||
37 | default-language: Haskell2010 | ||
38 | |||
39 | ghc-options: -Wall -threaded -with-rtsopts=-N -rtsopts | ||
40 | |||
41 | other-modules: Test.Graylog.UDP | ||
42 | |||
43 | build-depends: base ==4.* | ||
44 | |||
45 | , graylog | ||
46 | |||
47 | , aeson | ||
48 | , aeson-casing | ||
49 | , network | ||
50 | , scientific | ||
51 | , tasty | ||
52 | , tasty-hunit | ||
53 | , text | ||
54 | , time | ||
55 | , vector | ||
56 | |||