X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fharbl.git;a=blobdiff_plain;f=harbl.cabal;h=8f4401fd7e0c823baba01f34fd49ba472e2110fd;hp=b86a4bec99aeba7a1216b8eebe69937cf03bb1be;hb=b55e5db2a68be5d69b970bbe4b5ad447881abd3d;hpb=bc28c407970d9ff1bfeacc88363fd6d23c0af440 diff --git a/harbl.cabal b/harbl.cabal index b86a4be..8f4401f 100644 --- a/harbl.cabal +++ b/harbl.cabal @@ -13,25 +13,63 @@ description: Provides utility functions for performing blacklist lookups. -executable harbl +library build-depends: base >= 4.6 && < 5, + bytestring >= 0.9, + dns >= 2, + iproute >= 1.4, parsec >= 3, tasty >= 0.8, tasty-hunit >= 0.8 - main-is: - Main.hs + exposed-modules: + Network.DNS.RBL other-modules: Network.DNS.RBL.Domain - Network.DNS.RBL.DnsblSite + Network.DNS.RBL.Host Network.DNS.RBL.IPv4Pattern Network.DNS.RBL.Pretty - Network.DNS.RBL + Network.DNS.RBL.Site + + hs-source-dirs: + harbl/src/ + + ghc-options: + -Wall + -fwarn-hi-shadowing + -fwarn-missing-signatures + -fwarn-name-shadowing + -fwarn-orphans + -fwarn-type-defaults + -fwarn-tabs + -fwarn-incomplete-record-updates + -fwarn-monomorphism-restriction + -fwarn-unused-do-bind + -O2 + + ghc-prof-options: + -prof + -fprof-auto + -fprof-cafs + + +executable harbl + build-depends: + base >= 4.6 && < 5, + cmdargs >= 0.10.6, + configurator >= 0.2, + directory, + filepath, + harbl, + parsec >= 3 + + main-is: + Main.hs hs-source-dirs: - src/ + harbl-cli/src/ ghc-options: -Wall @@ -58,6 +96,9 @@ test-suite testsuite main-is: TestSuite.hs build-depends: base >= 4.6 && < 5, + bytestring >= 0.9, + dns >= 2, + iproute >= 1.4, parsec >= 3, tasty >= 0.8, tasty-hunit >= 0.8