summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kirk.cabal20
1 files changed, 18 insertions, 2 deletions
diff --git a/kirk.cabal b/kirk.cabal
index 9153de1..08cd4cf 100644
--- a/kirk.cabal
+++ b/kirk.cabal
@@ -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