X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mailbox-count.cabal;h=47af6ad9e78b24ff4fba959b2bc6c0db18928f4d;hb=684dfcb4cfb4d76e930a02921452ee3c934ea625;hp=0d995c1153c2a2326f68a9f6ebefd121b78a1889;hpb=4d67efc948ee9317a65c22268e31757a849c9193;p=mailbox-count.git diff --git a/mailbox-count.cabal b/mailbox-count.cabal index 0d995c1..47af6ad 100644 --- a/mailbox-count.cabal +++ b/mailbox-count.cabal @@ -1,5 +1,5 @@ name: mailbox-count -version: 0.0.3 +version: 0.0.5 cabal-version: >= 1.8 author: Michael Orlitzky maintainer: Michael Orlitzky @@ -163,9 +163,13 @@ executable mailbox-count HDBC-postgresql >= 2.3, HDBC-sqlite3 >= 2.3, MissingH >= 1.2, - semigroups >= 0.18, tasty >= 0.8, tasty-hunit >= 0.8 + -- Data.Semigroup was added to GHC.Base in ghc-8.0 + if impl(ghc < 8.0) + -- The minor version 0.18.2 deleted the entire API? + build-depends: semigroups < 0.18.2 + main-is: Main.hs @@ -188,6 +192,17 @@ test-suite testsuite type: exitcode-stdio-1.0 hs-source-dirs: src test main-is: TestSuite.hs + + other-modules: + Configuration + OptionalConfiguration + -- WARNING: the Paths_mailbox_count module is automatically generated by + -- Cabal itself. We don't want it included in the release tarballs, + -- since we typically want the paths that the user has configured. + -- Nevertheless, Cabal will complain if we don't include it here. + Paths_mailbox_count + Report + build-depends: base >= 4.8 && < 5, cmdargs >= 0.10, @@ -199,10 +214,12 @@ test-suite testsuite HDBC-postgresql >= 2.3, HDBC-sqlite3 >= 2.3, MissingH >= 1.2, - semigroups >= 0.18, tasty >= 0.8, tasty-hunit >= 0.8 - + -- Data.Semigroup was added to GHC.Base in ghc-8.0 + if impl(ghc < 8.0) + -- The minor version 0.18.2 deleted the entire API? + build-depends: semigroups < 0.18.2 test-suite doctests