diff options
Diffstat (limited to 'kirk.cabal')
-rw-r--r-- | kirk.cabal | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -1,5 +1,5 @@ name: kirk -version: 1.0.0 +version: 1.0.1 license: MIT author: tv <tv@krebsco.de> maintainer: tv@krebsco.de @@ -10,10 +10,26 @@ executable ircout main-is: ircout.hs build-depends: async, - bytestring, network, optparse-applicative, text, base default-language: Haskell2010 ghc-options: -O2 -Wall -threaded + +library + build-depends: + bytestring, + network, + optparse-applicative, + text, + base + default-language: Haskell2010 + exposed-modules: + Kirk.Config, + Kirk.Simple + ghc-options: -O2 -Wall + other-extensions: + ApplicativeDo, + RecordWildCards, + OverloadedStrings |