From f61c73d3db315d4460da105d94e4a4fb4e810e3f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 9 Dec 2024 15:30:51 +0800 Subject: [PATCH 01/14] CURATORS thank Chris Dornan for his long service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was a fine privilege to work together đŸ€Č --- CURATORS.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CURATORS.md b/CURATORS.md index fedcd8d9f..ce2458690 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -6,7 +6,6 @@ The following is the current list of curators, in alphabetical order: * Adam Bergmark (@bergmark) * Alexey Zabelin (@alexeyzab) * Andreas LĂ€ndle (@alaendle) -* Chris Dornan (@cdornan) * Dan Burton (@danburton) * Jens Petersen (@juhp) * Joe Kachmar (@jkachmar) From 93797bf862f811f4acd010cd64cf2491844c1e97 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 9 Dec 2024 12:04:10 +0530 Subject: [PATCH 02/14] run-nightly.sh: use argument '1' to run once --- automated/run-nightly.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/automated/run-nightly.sh b/automated/run-nightly.sh index 15bc25dc9..d598db90f 100755 --- a/automated/run-nightly.sh +++ b/automated/run-nightly.sh @@ -2,12 +2,17 @@ cd "$(dirname "${BASH_SOURCE[0]}")" +case $1 in + 1) once=1 ;; + *) cmd=$1 +esac + while true; do git pull - ./build.sh nightly-$(date -u +%F) $1 - ${1:+exit 0} + ./build.sh nightly-$(date -u +%F) $cmd + ${cmd:+exit 0} date - + ${once:+exit 0} sleep 60m echo done From b4f76924365fdb3850109ee02576eb9ed7c6c5bc Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 6 Dec 2021 13:13:36 +0100 Subject: [PATCH 03/14] Support for lts-build-constraints.yaml generation --- etc/lts-constraints/LICENSE | 30 + etc/lts-constraints/README.md | 1 + etc/lts-constraints/Setup.hs | 2 + etc/lts-constraints/cabal.project | 6 + etc/lts-constraints/lts-constraints.cabal | 34 + etc/lts-constraints/src/Main.hs | 174 + etc/lts-constraints/stack.yaml | 4 + etc/lts-constraints/stack.yaml.lock | 13 + lts-build-constraints.yaml | 8028 +++++++++++++++++++++ 9 files changed, 8292 insertions(+) create mode 100644 etc/lts-constraints/LICENSE create mode 100644 etc/lts-constraints/README.md create mode 100644 etc/lts-constraints/Setup.hs create mode 100644 etc/lts-constraints/cabal.project create mode 100644 etc/lts-constraints/lts-constraints.cabal create mode 100644 etc/lts-constraints/src/Main.hs create mode 100644 etc/lts-constraints/stack.yaml create mode 100644 etc/lts-constraints/stack.yaml.lock create mode 100644 lts-build-constraints.yaml diff --git a/etc/lts-constraints/LICENSE b/etc/lts-constraints/LICENSE new file mode 100644 index 000000000..bc59db9ef --- /dev/null +++ b/etc/lts-constraints/LICENSE @@ -0,0 +1,30 @@ +Copyright Author name here (c) 2021 + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + * Neither the name of Author name here nor the names of other + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/etc/lts-constraints/README.md b/etc/lts-constraints/README.md new file mode 100644 index 000000000..09e127e20 --- /dev/null +++ b/etc/lts-constraints/README.md @@ -0,0 +1 @@ +# lts-constraints diff --git a/etc/lts-constraints/Setup.hs b/etc/lts-constraints/Setup.hs new file mode 100644 index 000000000..9a994af67 --- /dev/null +++ b/etc/lts-constraints/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/etc/lts-constraints/cabal.project b/etc/lts-constraints/cabal.project new file mode 100644 index 000000000..a432e71c3 --- /dev/null +++ b/etc/lts-constraints/cabal.project @@ -0,0 +1,6 @@ +source-repository-package + type: git + location: git://github.com/commercialhaskell/pantry.git + +packages: ./lts-constraints.cabal +with-compiler: ghc-8.10.7 diff --git a/etc/lts-constraints/lts-constraints.cabal b/etc/lts-constraints/lts-constraints.cabal new file mode 100644 index 000000000..9af3b1d0c --- /dev/null +++ b/etc/lts-constraints/lts-constraints.cabal @@ -0,0 +1,34 @@ +name: lts-constraints +version: 0.1.0.0 +-- synopsis: +-- description: +homepage: https://github.com/githubuser/lts-constraints#readme +license: BSD3 +license-file: LICENSE +author: Author name here +maintainer: example@example.com +copyright: 2021 Author name here +category: Web +build-type: Simple +cabal-version: >=1.10 +extra-source-files: README.md + +executable lts-constraints + ghc-options: -Wall + hs-source-dirs: src + main-is: Main.hs + default-language: Haskell2010 + build-depends: base >= 4.7 && < 5 + , pantry + , Cabal + , rio + , containers + , parsec + , mtl + , aeson + , yaml + , split + , string-conversions + , safe + , mtl + , transformers diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs new file mode 100644 index 000000000..2c54fb283 --- /dev/null +++ b/etc/lts-constraints/src/Main.hs @@ -0,0 +1,174 @@ +{-# LANGUAGE TypeApplications #-} +{-# LANGUAGE DeriveAnyClass #-} +{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE NamedFieldPuns #-} +{-# LANGUAGE TupleSections #-} +{-# OPTIONS -Wno-name-shadowing #-} +module Main where + +import Control.Arrow +import Control.Monad +import Control.Monad.State +import Data.Aeson +import Data.Char +import Data.List +import Data.List.Split +import Data.Maybe +import Data.String.Conversions +import Distribution.Text (display, simpleParse) +import Distribution.Types.VersionRange (VersionRange, normaliseVersionRange, anyVersion, intersectVersionRanges, majorBoundVersion, earlierVersion) +import GHC.Generics +import RIO () +import RIO.Map (Map) +import System.IO +import qualified Data.Yaml as Y +import qualified Distribution.Types.PackageName as C (PackageName, mkPackageName) +import qualified Distribution.Types.Version as C (Version, mkVersion) +import qualified RIO.Map as M + +src :: String +src = "../../build-constraints.yaml" + +target :: String +target = "../../lts-build-constraints.yaml" + +newtype PackageName = PackageName { unPackageName :: C.PackageName } + deriving (Eq, Generic, Ord, FromJSONKey, Show) + +instance FromJSON PackageName where + parseJSON = fmap (PackageName . C.mkPackageName) . parseJSON + +newtype Version = Version { unVersion :: C.Version } + deriving (Generic, Show) + +instance FromJSON Version where + parseJSON v = do + s <- parseJSON @ String v + case simpleParse s of + Nothing -> fail "Invalid Version" + Just v -> pure $ Version v + + +data PackageDecl = PackageDecl + { prefix :: String + , package :: PackageName + , range :: VersionRange + , suffix :: String + } + +takeDropWhile :: (Char -> Bool) -> String -> Maybe (String, String) +takeDropWhile p s = if null a then Nothing else Just (a, b) + where + (a, b) = takeDropWhile_ p s + +takeDropWhile_ :: (Char -> Bool) -> String -> (String, String) +takeDropWhile_ p s = (takeWhile p s, dropWhile p s) + +takePrefix :: String -> String -> Maybe (String, String) +takePrefix p s = + if p `isPrefixOf` s + then Just (p, drop (length p) s) + else Nothing + +takePackageName :: String -> Maybe (PackageName, String) +takePackageName = fmap (first (PackageName . C.mkPackageName)) . takeDropWhile (/= ' ') + +maybeTakeVersionRange :: String -> (Maybe VersionRange, String) +maybeTakeVersionRange s = (simpleParse range, comment) + where + (range, comment) = takeDropWhile_ (/= '#') s + +p_packageDecl :: String -> Maybe PackageDecl +p_packageDecl s = do + (prefix, s') <- takePrefix " - " s + (package, s'') <- takePackageName s' + let (range, s''') = maybeTakeVersionRange s'' + pure PackageDecl { prefix, package, range = fromMaybe anyVersion range, suffix = s''' } + +handlePackage :: Map PackageName Version -> PackageDecl -> String +handlePackage snap PackageDecl { prefix, package, range, suffix } = + prefix ++ display (unPackageName package) ++ rng ++ suff + where + suff = if null suffix then suffix else (' ': suffix) + + + rng = case intersect (majorBoundVersion . unVersion <$> snapshotVersion) range of + Just rngI | rngI == anyVersion -> "" + Nothing -> "" + Just rngI -> (' ' :) . (\(a,b) -> a <> " " <> b) . takeDropWhile_ (not . isDigit) $ display rngI + snapshotVersion = M.lookup package snap + + intersect Nothing _ = Just . earlierVersion $ C.mkVersion [0] -- package not in snapshot + intersect (Just a) b = + if b == anyVersion -- drop `&& -any` + then Just a + else Just $ normaliseVersionRange (intersectVersionRanges a b) + + +data Snapshot = Snapshot + { packages :: [SnapshotPackage] + } deriving (FromJSON, Generic, Show) + +data SnapshotPackage = SnapshotPackage + { hackage :: PackageVersion + } deriving (FromJSON, Generic, Show) + +data PackageVersion = PackageVersion + { pvPackage :: PackageName + , pvVersion :: Version + } deriving Show + +instance FromJSON PackageVersion where + parseJSON s0 = do + s1 <- parseJSON @ String s0 + let s2 = takeWhile (/= '@') s1 + let xs = splitOn "-" s2 + pvPackage <- parseJSON $ String $ cs $ intercalate "-" (init xs) + pvVersion <- parseJSON $ String $ cs $ last xs + pure PackageVersion { pvPackage, pvVersion } + + +snapshotMap :: Snapshot -> Map PackageName Version +snapshotMap = M.fromList . map ((pvPackage &&& pvVersion) . hackage) . packages + +loadSnapshot :: FilePath -> IO (Either Y.ParseException Snapshot) +loadSnapshot f = Y.decodeFileEither f + +data State + = LookingForLibBounds + | ProcessingLibBounds + | Done + +io :: MonadIO m => IO a -> m a +io = liftIO + +main :: IO () +main = do + snapshot_ <- loadSnapshot "../../nightly-2012-12-11.yaml" + let snapshot = case snapshot_ of + Left err -> error $ show err + Right r -> r + let map = snapshotMap snapshot + output <- openFile target WriteMode + let putLine = io . hPutStrLn output + lines <- lines <$> readFile src + void $ flip runStateT LookingForLibBounds $ do + forM_ lines $ \line -> do + st <- get + case st of + LookingForLibBounds -> do + when (line == "packages:") $ + put ProcessingLibBounds + putLine line + ProcessingLibBounds -> + if line == "# end of packages" + then do + put Done + putLine line + else + case p_packageDecl line of + Just p -> putLine $ handlePackage map p + Nothing -> putLine line + Done -> putLine line + hFlush output + hClose output diff --git a/etc/lts-constraints/stack.yaml b/etc/lts-constraints/stack.yaml new file mode 100644 index 000000000..ef03d7c00 --- /dev/null +++ b/etc/lts-constraints/stack.yaml @@ -0,0 +1,4 @@ +resolver: + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml +packages: +- . diff --git a/etc/lts-constraints/stack.yaml.lock b/etc/lts-constraints/stack.yaml.lock new file mode 100644 index 000000000..cc26a0084 --- /dev/null +++ b/etc/lts-constraints/stack.yaml.lock @@ -0,0 +1,13 @@ +# This file was autogenerated by Stack. +# You should not edit this file by hand. +# For more information, please see the documentation at: +# https://docs.haskellstack.org/en/stable/lock_files + +packages: [] +snapshots: +- completed: + size: 586296 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml + sha256: 63539429076b7ebbab6daa7656cfb079393bf644971156dc349d7c0453694ac2 + original: + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml new file mode 100644 index 000000000..81161b6e2 --- /dev/null +++ b/lts-build-constraints.yaml @@ -0,0 +1,8028 @@ +ghc-major-version: "9.0" +# new curator is supposed to use exact GHC version +ghc-version: "9.0.1" + +# This affects which version of the Cabal file format we allow. We +# should ensure that this is always no greater than the version +# supported by the most recent cabal-install and Stack releases. +cabal-format-version: "3.0" + +# Constraints for brand new builds +packages: + + "Lukas Epple @sternenseemann": + - socket + - spacecookie + - gopher-proxy + - filepath-bytestring < 1.4.2.1.10 # https://github.com/commercialhaskell/stackage/issues/6355 + - download-curl + - cabal2nix + - distribution-nixpkgs + - hackage-db + - language-nix + - jailbreak-cabal + + "Profpatsch @Profpatsch": + - error + - yarn-lock + + "James Sully @sullyj3": + - buttplug-hs-core + + "Manuel Schneckenreither @schnecki": + - experimenter + - api-maker + - easy-logger + + "Kamil Dworakowski @luntain": + - error-or + - error-or-utils + - inbox + - mock-time + + "Liang-Ting Chen @L-TChen": + - geniplate-mirror + + "Andreas Abel @andreasabel": + - BNFC + - Sit + - STMonadTrans + - Agda + - agda2lagda + - cabal-clean + - ListLike + - haskell-src + - fix-whitespace + - hs-tags + - goldplate + - hasktags + - regex-base + - regex-compat + - regex-pcre + - regex-posix + - regex-posix-clib + - regex-tdfa + - java-adt + - tasty-silver + + "Diogo Biazus ": + - hasql-notifications + + "David James @davjam": + - MapWith + + "Bernie Pope @bjpop": + - language-python + + "Nils Alex @nilsalex": + - safe-tensor + + "Artur Gajowy @ArturGajowy": + - ghc-clippy-plugin + + "Daniel Rolls @danielrolls": + - byte-count-reader + + "Allan Lukwago @epicallan": + - servant-errors + + "Christian Charukiewicz @charukiewicz": + - isbn + + "Koz Ross @kozross": + - medea + + "Marcin RzeĆșnicki @marcin-rzeznicki": + - hspec-tables + - stackcollapse-ghc + - libjwt-typed + + "Mauricio Fierro @mauriciofierrom": + - dialogflow-fulfillment + + "Mihai Giurgeanu @mihaigiurgeanu": + - sqlcli + - sqlcli-odbc + # not a maintainer + - logging + + "Sasha Bogicevic @v0d1ch": + - plaid + + "Geoffrey Mainland @mainland": + - exception-mtl + - exception-transformers + - mainland-pretty + - ref-fd + - ref-tf + - srcloc + - symbol + + "Patrick Bahr ": + - equivalence + - compdata + - Rattus + + "Rob Stewart @robstewart57": + - gitlab-haskell + + "Callan McGill @callanmcgill": + - perfect-vector-shuffle + + "Luke Clifton @luke-clifton": + - generic-monoid + + "Tobias Reinhart @TobiReinhart": + - sparse-tensor + + "Stephan Schiffels @stschiff": + - sequence-formats + - pipes-ordered-zip + - sequenceTools + + "YongJoon Joe @QuietJoon": + - doldol + - ENIG + + "Chris Penner @ChrisPenner": + - eve + - lens-regex-pcre + - lens-csv + - selections + - slick + - unipatterns + + "Emily Pillmore @topos": + - base16 + - base16-lens + - base32 + - base32-lens + - base64 + - base64-lens + - lens-process + - microlens-process + - nonempty-vector + - smash + - smash-aeson + - smash-microlens + - smash-lens + - strict-tuple + - strict-tuple-lens + + "Matthieu Monsch @mtth": + - flags-applicative + - more-containers + - tracing + + "Robert Vollmert @robx": + - configurator-pg + - postgrest + + "Sandy Maguire @isovector": + - ecstasy + - interpolatedstring-qq2 + - prospect + - do-notation + - unagi-chan + - type-errors + + "Matej Niznik @TheMatten": + - polysemy + - polysemy-plugin + - polysemy-zoo + - loopbreaker + + "William Yao @williamyaoh": + - string-interpolate + + "Roel van Dijk @roelvandijk": + - terminal-progress-bar + + "Marek Fajkus @turboMaCk": + - wai-enforce-https + - aeson-combinators + + "Fernando Freire @dogonthehorizon": + [] + # - hal # #4288/closed + + "Nathan Fairhurst @iamfromspace": + - hal + + "Daniel Taskoff @dtaskoff": + - hlibcpuid + - skip-var + - system-info + + "Dzianis Kabanau @kobargh": + - template-toolkit + + "Christopher Davenport @ChristopherDavenport": + - nonemptymap + - hinfo + + "Joerg Winter @clojj": + - rosezipper + + "Edward Wastell @edwardwas": + - TotalMap + - sized-grid + + "Antonio Alonso Dominguez @alonsodomin": + - hschema + - hschema-aeson + - hschema-prettyprinter + - hschema-quickcheck + + "Preetham Gujjula @pgujjula": + - modular + - list-predicate + + "Guillaume Bouchard @guibou": + - krank + - pretty-terminal + - PyF + + "Erik Schnetter @eschnett": + - mpi-hs + - mpi-hs-binary + - mpi-hs-cereal + + "Yang Bo @Atry": + - control-dsl + + "Laurent P. RenĂ© de Cotret @LaurentRDC": + - pandoc-plot + + "Andrew Newman @andrewfnewman": + - geojson + + "Mateusz Karbowy @obszczymucha": + - parsec-numbers + + "Joshua Grosso @jgrosso": + - axel + + "Varun Gandhi @theindigamer": + - edit + + "Luka HadĆŸiegrić @reygoch": + - valor + + "Scott N. Walck @walck": + - cyclotomic + - learn-physics + - TypeCompose + + # @ghorn + - not-gloss + - spatial-math + + "Phil de Joux @philderbeast": + - siggy-chardust + - detour-via-sci + - hpack-dhall + + "Matthew Ahrens @mpahrens": + - forkable-monad + - butter + + "Iris Ward @AdituV": + - typenums + + "Jude Taylor @pikajude": + - th-printf + + "Christian Marie @christian-marie": + - git-vogue + + "Manuel BĂ€renz @turion": + - dunai + - rhine + - rhine-gloss + - finite-typelits + - essence-of-live-coding + - essence-of-live-coding-gloss + - essence-of-live-coding-pulse + - essence-of-live-coding-quickcheck + - pulse-simple + - simple-affine-space + + "Paul Johnson @PaulJohnson": + - geodetics + - Ranged-sets + + "Travis Athougies @tathougies": + - beam-core + - beam-migrate + - beam-mysql + - beam-postgres + - beam-sqlite + + "Fraser Murray @yusent": + - yesod-auth-bcryptdb + + "Johannes Gerer ": + - buchhaltung + + "Tom McLaughlin @thomasjm": + - aeson-typescript + - fsnotify + - sandwich + - sandwich-quickcheck + - sandwich-slack + - sandwich-webdriver + - slack-progressbar + + "Paulo Tanaka @paulot": + # on behalf of Bryan O'Sullivan @bos: + - zstd + + "Jacek Galowicz @tfc": + - hamtsolo + + "Ferdinand van Walree @Ferdinand-vW": + - tuple-sop + - sessiontypes + - sessiontypes-distributed + + "Jacob Thomas Errington @tsani": + - servant-github-webhook + - pushbullet-types + + "Theodore Lief Gannon @tejon": + - aeson-yak + - safe-foldable + + "Jaro Reinders @Noughtmare": + - haskell-lsp-client + + "Florian Knupfer @knupfer": + - type-of-html + - type-of-html-static + - chronos-bench + + "Mikolaj Konarski @Mikolaj": + - sdl2-ttf + - enummapset + - assert-failure + - minimorph + - miniutter + - LambdaHack + - Allure + + "JĂŒrgen Keck @j-keck": + - wreq-stringless + + "Olaf Chitil @OlafChitil": + - FPretty + + "Maarten Faddegon @MaartenFaddegon": + - libgraph + - Hoed + + "Agustin Camino @acamino": + - state-codes + + "Sebastian Mihai Ardelean @ardeleanasm": + - qchas + + "Patrick Pelletier @ppelleti": + - mercury-api + - normalization-insensitive + + "Jacob Stanley @jacobstanley": + - hedgehog + - hedgehog-quickcheck + - transformers-bifunctors + - unix-compat + + "Walter Schulze @awalterschulze": + - katydid + + "Nobutada Matsubara @matsubara0507": + - chatwork + - rakuten + - servant-kotlin + + "Pavol Klacansky @pavolzetor": + - openexr-write + + "Pasqualino Assini @tittoassini": + # - zm + - flat + - model + + "Jose Iborra @pepeiborra": + # - arrowp-qq # build failure https://github.com/pepeiborra/arrowp/issues/8 + - haskell-src-exts-util + - hexml-lens + - hp2pretty + - floatshow + - ghc-check + + "Roman Gonzalez @roman": + - componentm + - componentm-devel + - teardown + - etc + - capataz + + "Richard Cook @rcook": + - hidden-char + - oset + - req-url-extra + - sexpr-parser + + "Vanessa McHale @vmchale": + - bz2 + + "Henning Thielemann @thielema": + - accelerate-arithmetic + - accelerate-fftw + - accelerate-fourier + - accelerate-utility + - align-audio + - alsa-core + - alsa-pcm + - alsa-seq + - apportionment + - audacity + - battleship-combinatorics + - bibtex + - board-games + - buffer-pipe + - cabal-flatpak + - calendar-recycling + - checksum + - combinatorial + - comfort-graph + - comfort-array + - comfort-array-shape + - comfort-fftw + - concurrent-split + - cutter + - data-accessor + - data-accessor-mtl + - data-accessor-template + - data-accessor-transformers + - data-ref + - doctest-exitcode-stdio + - doctest-extract + - doctest-lib + - dsp + - enumset + - equal-files + - event-list + - explicit-exception + - fixed-length + - fftw-ffi + - gnuplot + - group-by-date + - guarded-allocation + - iff + - interpolation + - jack + - latex + - lazyio + - markov-chain + - midi + - midi-alsa + - midi-music-box + - mbox-utility + - med-module + - monoid-transformer + - non-empty + - non-negative + - numeric-prelude + - numeric-quest + - pathtype + - pooled-io + - probability + - quickcheck-transformer + - sample-frame + - sample-frame-np + - set-cover + - shell-utility + - sound-collage + - sox + - soxlib + - split-record + - spreadsheet + - stm-split + - storable-record + - storable-tuple + - storablevector + - synthesizer-core + - synthesizer-dimensional + - synthesizer-alsa + - synthesizer-midi + - tagchup + - tfp + - unicode + - unique-logic + - unique-logic-tf + - unsafe + - utility-ht + - xml-basic + - youtube + - prelude-compat + - fft + - carray + - lapack-ffi-tools + - netlib-ffi + - blas-ffi + - lapack-ffi + - netlib-carray + - blas-carray + - lapack-carray + - netlib-comfort-array + - blas-comfort-array + - lapack-comfort-array + - lapack + - lapack-hmatrix + - hmm-lapack + - magico + - resistor-cube + - linear-circuit + # Not a maintainer + - cabal-plan + - topograph + - ix-shapable + - hsshellscript + - hyper + - storable-endian + + "Jeremy Barisch-Rooney @barischrooneyj": + - threepenny-gui-flexbox + + "Romain Edelmann @redelmann": + - distribution + + "Nikita Tchayka @nickseagull": + - ramus + - require + - tintin + # - aws-lambda-haskell-runtime # https://github.com/commercialhaskell/stackage/pull/4299 + + "Simon Jakobi @sjakobi": + - threepenny-gui + - newtype-generics + - bsb-http-chunked + - hspec-parsec + - checkers + - unordered-containers + - prettyprinter + - prettyprinter-ansi-terminal + - prettyprinter-compat-wl-pprint + - prettyprinter-compat-ansi-wl-pprint + - prettyprinter-compat-annotated-wl-pprint + - prettyprinter-convert-ansi-wl-pprint + + "Joe M @joe9": + - logger-thread + - text-generic-pretty + + "Li-yao Xia @Lysxia": + - ap-normalize + - boltzmann-samplers + - first-class-families + - generic-data + - generic-data-surgery + - generic-functor + - generic-random + - scanf + - show-combinators + - type-map + - quickcheck-higherorder + - test-fun + + "Tobias Dammers @tdammers": + - ginger + - yeshql + + "Yair Chuchem @yairchu": + - generic-constraints + - List + - ListTree + + "Marco Zocca @ocramz": + - ad-delcont + - sparse-linear-algebra + - depq + - matrix-market-attoparsec + - splitmix-distributions + - rp-tree + - xeno + - bytestring-mmap # required by xeno + - datasets + - lucid-extras + - mnist-idx-conduit + - rigel-viz + + "Joseph Canero @caneroj1": + - sqlite-simple-errors + - median-stream + - stm-supply + - filter-logger + - tile + - mbtiles + + "James M.C. Haver II @mchaver": + - quickcheck-arbitrary-adt + - hspec-golden-aeson + - quickcheck-arbitrary-template + + "Winter Han @winterland1989": + - if + - tcp-streams + - tcp-streams-openssl + - wire-streams + - binary-parsers + - binary-ieee754 + - word24 + - mysql-haskell + - mysql-haskell-openssl + - data-has + - unboxed-ref + + "Harendra Kumar @harendra-kumar": + - bench-show + - monad-recorder + - packcheck + - streamly + - unicode-transforms < 0.4 # https://github.com/commercialhaskell/stackage/issues/6337 + - xls + + "Pranay Sashank @pranaysashank": + - fusion-plugin-types + - fusion-plugin + + "Adithya Kumar @adithyaov": + - unicode-data + + "Aleksey Uimanov @s9gf4ult": + # - postgresql-query # build errors + - hreader + - hset + - base58-bytestring + + "Aaron Taylor @hamsterdam": + - kawhi + + "Schell Scivally @schell": + - renderable + - varying + + "Nicolas Mattia @nmattia": + - makefile + + "Siddharth Bhat @bollu": + - symengine + + "alpheccar @alpheccar": + - HPDF + + "Dmitry Bogatov @iu-guest": + - once + - mbug + + "David Johnson @dmjio": + - miso + - envy + - s3-signer + - google-translate + - hackernews + - ses-html + - stripe-haskell + - stripe-http-client + - stripe-core + - stripe-tests + + "Piotr Mlodawski @pmlodawski": + - error-util < 0 # MonadFail + - signal + + "Michael Snoyman michael@snoyman.com @snoyberg": + - bzlib-conduit + - case-insensitive + - classy-prelude-yesod + - conduit-combinators + - conduit-extra + - hebrew-time + - markdown + - mime-mail + - mime-mail-ses + - mime-types + - network-conduit-tls + - persistent + - persistent-mysql + - persistent-postgresql + - persistent-sqlite + - persistent-template + - persistent-test + - store + - wai-extra + - wai-websockets + - warp-tls + - yesod + - authenticate + - html-conduit + - yesod-auth + - authenticate-oauth + - yesod-bin + - yesod-eventsource + - yesod-gitrepo + - yesod-newsfeed + - yesod-sitemap + - yesod-static + - yesod-test + - yesod-websockets + - cereal-conduit + - binary-conduit + - lzma-conduit + - mutable-containers + - hpc-coveralls + - monad-unlift + - monad-unlift-ref + - yaml + - servius + - cryptonite-conduit + - streaming-commons + + - alex + - async + - base16-bytestring + - csv-conduit + - executable-hash + - executable-path + - foreign-store + - formatting + - gtk2hs-buildtools + - happy + - hybrid-vectors + - indents + - language-c + - persistent-mongoDB + - pretty-class + - th-expand-syns + - th-lift + - quickcheck-assertions + + - wai-middleware-crowd + - monad-logger-json + - safe-exceptions + - fsnotify-conduit + - pid1 + - typed-process + - say + - unliftio-core + - unliftio + + - hinotify + - hfsevents + - Win32-notify + - windns + + - mono-traversable + - http-client + - http-conduit + - githash + + - time-manager + - pantry + - mega-sdist + - http-download + - hi-file-parser + - rio-prettyprint + - packdeps + + "Brandon Barker @bbarker": + - unexceptionalio + - unexceptionalio-trans + - zio + + "Omari Norman @massysett": + - rainbow + - rainbox + - multiarg + - ofx + - accuerr + - timelens + - squeather + + "Neil Mitchell @ndmitchell": + - hlint + - hoogle + - shake + - tagsoup + - cmdargs + - safe + - uniplate + - nsis + - js-jquery + - js-flot + - js-dgtable + - extra + - ghcid + - hexml + - profiterole + - record-dot-preprocessor + - filepattern + - record-hasfield + - rattle + - hie-bios + - fuzzy + + "Digital Asset ": + - ghc-lib + - ghc-lib-parser + + "Shayne Fletcher ": + - ghc-lib-parser-ex + + "Karl Ostmo @kostmo": + - perfect-hash-generator + + "Alan Zimmerman @alanz": + - ghc-exactprint < 1.1 # needs GHC 9.2 #6177/closed + - haskell-lsp + - hjsmin + - language-javascript + - Strafunski-StrategyLib + + "Luke Lau @bubba": + - lsp-test + + "Alfredo Di Napoli @adinapoli": + - mandrill + + "Jon Schoning @jonschoning": + - pinboard + - swagger-petstore + + "Jasper Van der Jeugt @jaspervdj": + - blaze-html + - blaze-markup + - stylish-haskell + - profiteur + - psqueues + - websockets + - websockets-snap + + "Jasper Van der Jeugt @jaspervdj & Alexander Batischev @Minoru": + - hakyll + + "Sibi Prabakaran @psibi": + - download + - textlocal + - shell-conduit + - tldr + - fb + - yesod-fb + - yesod-auth-fb + - hourglass-orphans + - wai-slack-middleware + - sysinfo + - xmonad-extras + - shelly + - persistent-redis + - fakedata + - fakedata-parser + - fakedata-quickcheck + - streamly-bytestring + + "haskell-openal": + - OpenAL + - ALUT + + "haskell-opengl": + - OpenGL + - GLURaw + - GLUT + - OpenGLRaw + - StateVar + - ObjectName + + "Antoine Latter @aslatter": + - byteorder + - uuid + + "Philipp Middendorf @pmiddend": + - clock + + "Stefan Wehr @skogsbaer": + - HTF + - xmlgen + - stm-stats + - large-hashable + + "Bart Massey @BartMassey": + - parseargs + + "Vincent Hanquez @vincenthz": + - basement + - bytedump + - cipher-aes + - cipher-rc4 + - connection + - cprng-aes + - cpu + - cryptocipher + - cryptohash + - cryptonite + - cryptonite-openssl + - crypto-pubkey-types + - crypto-random-api + - foundation + - gauge + - git < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - hit + - memory + - language-java + - libgit + - pem + - siphash + - socks + - tasty-kat + - tls + - tls-debug + - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - xenstore < 0 # sClose not in scope + + "Chris Done @chrisdone": + - labels + - ace + - check-email + - freenect + - frisby + - gd + - hostname-validate + - ini + - lucid + - pdfinfo + - pure-io + - sourcemap + - hindent + - descriptive + - wrap + - path + - weigh + - odbc + - structured-haskell-mode + - casa-client + - casa-types + + "Alberto G. Corona @agocorona": + - RefSerialize + - TCache + - Workflow + - MFlow + - transient + - transient-universe + - axiom + + "Edward Kmett @ekmett": + - ad + - adjunctions + - algebra + - ansi-wl-pprint + - approximate + - bifunctors + - bits + - bound + - bytes + - charset + - comonad + - compensated + - compressed + - concurrent-supply + - constraints + - contravariant + - distributive + - discrimination + - either + - eq + - ersatz + - fixed + - folds + - free + - gl + - graphs + - half + - heaps + - hybrid-vectors + - hyperloglog + - hyphenation + - indexed-traversable + - integration + - intern + - intervals + - kan-extensions + - keys + - lca + - lens + - lens-action + - lens-aeson + - lens-properties + - linear + - linear-accelerate + - log-domain + - machines + - monadic-arrays + - monad-products + - monad-st + # - mtl take the one that ships with GHC + - nats + - numeric-extras + - parsers + - pointed + - profunctors + - promises + - rcu + - reducers + - reflection + - semigroupoid-extras + - semigroupoids + - semigroups + - speculation + - streams + - structs + - tagged + - tagged-transformer + - transformers-compat <0.7 # https://github.com/commercialhaskell/stackage/issues/6137 + - trifecta + - unique + - vector-instances + - void + - wl-pprint-extras + - wreq + - wl-pprint-terminfo + - zippers + - zlib-lens + + "Andrew Farmer @xich": + - scotty + - wai-middleware-static + + "Simon Hengel @sol": + - hspec + - hspec-core + - hspec-discover + - hspec-wai + - hspec-wai-json + - aeson-qq + - interpolate + - doctest + - base-compat + + "Mario Blazevic @blamario": + - monad-parallel + - monad-coroutine + - monoid-subclasses + - rank2classes + - input-parsers + - incremental-parser + - construct + + "Brent Yorgey @byorgey": + - active + - diagrams + - diagrams-builder + - diagrams-cairo + - diagrams-canvas + - diagrams-contrib + - diagrams-core + - diagrams-gtk + - diagrams-html5 + - diagrams-lib + - diagrams-postscript + - diagrams-rasterific + - diagrams-solve + - diagrams-svg + - force-layout + - SVGFonts + - haxr + - MonadRandom + - monoid-extras + + "Vincent Berthoux @Twinside": + - JuicyPixels + - FontyFruity + - Rasterific + - svg-tree + - rasterific-svg + - asciidiagram + + "Patrick Brisbin @pbrisbin": + - bugsnag-haskell + - gravatar + - load-env + - yesod-auth-oauth2 + - yesod-markdown + - yesod-paginator + + "Freckle Engineering @pbrisbin @mjgpy3 @stevenxl": + - bcp47 + - bcp47-orphans + - faktory + - graphula + - hspec-expectations-json + - yesod-page-cursor + - yesod-routes-flow + - nonempty-zipper + - sendgrid-v3 + - yesod-auth-oauth2 + - hspec-junit-formatter < 1.1 # https://github.com/freckle/freckle-app/issues/43 + - aws-xray-client + - aws-xray-client-wai + - freckle-app + + "Felipe Lessa @meteficha": + - fb + - nonce + - serversession + - serversession-backend-persistent + - serversession-backend-redis + - serversession-frontend-wai + # - serversession-frontend-yesod # conduit 1.3, yesod 1.6 + # - thumbnail-plus # https://github.com/prowdsponsor/thumbnail-plus/issues/5 + - yesod-auth-fb + - yesod-fb + + "Alexander Altman @pthariensflame": + # Maintaining on behalf of @roelvandijk: + - base-unicode-symbols + - containers-unicode-symbols + # My own packages: + - ChannelT + + "Trevor L. McDonell @tmcdonell": + - accelerate + - accelerate-bignum + - accelerate-blas + - accelerate-fft + - accelerate-io + - accelerate-llvm + - accelerate-llvm-native + - accelerate-llvm-ptx + - accelerate-examples + - repa + - repa-algorithms + - repa-io + - gloss + - gloss-rendering + - gloss-algorithms + - gloss-examples + - gloss-raster + - gloss-accelerate + - gloss-raster-accelerate + - colour-accelerate + - lens-accelerate + - mwc-random-accelerate + - cuda + - cufft + - cublas + - cusparse + - cusolver + - nvvm + - wide-word # @erikd + + "Dan Burton @DanBurton": + - ANum + - basic-prelude + - composition + - haskell-src-meta + - io-memoize + - lens-family-th + - numbers + - rev-state + - runmemo + - tardis + - yesod-gitrev + # @mr's packages + - ftp-client + - ftp-client-conduit + # other: real maintainers pls steal these back + - text-format # needed by liquid-fixpoint + - liquid-fixpoint + + "Daniel Casanueva @Daniel-Diaz": + - bimap-server + - binary-list + - byteset + - Clipboard + - gmail-simple + - grouped-list + - haskintex + - HaTeX + - include-file + - matrix + - pcre-light + - phantom-state + - post-mess-age + - sorted-list + + "Gabriella Gonzalez @Gabriel439": + - optparse-generic + - pipes + - pipes-extras + - pipes-http + - pipes-parse + - pipes-concurrency + - pipes-safe + - turtle + - foldl + - bench + - dhall + - dhall-bash + - dhall-json + - dhall-lsp-server + - dhall-yaml + - aeson-yaml # req'd by dhall-json + - dhall-nix + - nix-derivation + - list-transformer + + "Andrew Thaddeus Martin @andrewthad": + - colonnade + - blaze-colonnade + - dot + + "Chris Allen @bitemyapp": + - machines-directory + - machines-io + - bloodhound + + "Adam Bergmark @bergmark": + - aeson + - HUnit + - attoparsec-iso8601 + - feed + - time-compat + - through-text + # Not my packages + - HStringTemplate + - language-ecmascript + - spoon + - tagshare + + "Benedict Aas @Shou": + - boolean-like + - type-operators + + "Sebastiaan Visser @sebastiaanvisser": + - clay + - fclabels + + "Robert Klotzner @eskimor": + - purescript-bridge + - servant-purescript < 0 # #6091/closed + - servant-subscriber + + "Rodrigo Setti @rodrigosetti": + - messagepack + - messagepack-rpc + + "Boris Lykah @lykahb": + - groundhog + - groundhog-inspector + - groundhog-mysql + - groundhog-postgresql + - groundhog-sqlite + - groundhog-th + + "Janne Hellsten @nurpax": + - sqlite-simple + + "Michal J. Gajda @mgajda": + - iterable + - FenwickTree + - json-autotype + + "Dom De Re @domdere": + - cassava-conduit + + "Dominic Steinitz @idontgetoutmuch": + - monad-bayes + - random-fu + + "Ben Gamari @bgamari": + - vector-fftw + - cborg-json + - language-dot + + "Roman Cheplyaka @feuerbach": + - action-permutations + - amqp + - heredoc + - immortal + - regex-applicative + - lexer-applicative + - tasty + - tasty-golden + - tasty-hunit + - tasty-quickcheck + - tasty-smallcheck + - tasty-html + - time-lens + - timezone-olson + - timezone-series + - traverse-with-class + - tuples-homogenous-h98 + + "George Giorgidze @giorgidze": + - YampaSynth + - set-monad + + "Phil Hargett @hargettp": + - courier + + "Aycan iRiCAN @aycanirican": + - hdaemonize + - hweblib + + "Joachim Breitner @nomeata": + - circle-packing + - haskell-spacegoo + - tasty-expected-failure + + "Aditya Bhargava @egonSchiele": + - HandsomeSoup + + "Clint Adams @clinty": + - hOpenPGP + - openpgp-asciiarmor + - MusicBrainz + - DAV + - hopenpgp-tools + - opensource + - debian + - cabal-debian + # dependencies: + - monad-chronicle + + "Piyush P Kurur @piyush-kurur": + - raaz + - naqsha + + "Joey Hess @joeyh": + - git-annex + - concurrent-output + - mountpoints + - disk-free-space + + "Colin Woodbury @fosskers": + - aur + - aura + - bounded-queue + - kanji + - language-bash + - microlens-aeson + - pipes-random + - servant-xml + - streaming-attoparsec + - versions + - vectortiles + + "Ketil Malde @ketil-malde": + - biocore + - biofasta + - biofastq + - blastxml + - bioace + - biopsl + - seqloc + - bioalign + - BlastHTTP + + "Florian Eggenhofer @eggzilla": + - ClustalParser + - EntrezHTTP + - Genbank + - RNAlien + - biocore + - bimaps + - BiobaseBlast + - BiobaseENA + - BiobaseEnsembl + - BiobaseFasta + - BiobaseHTTP + - BiobaseTypes + - BiobaseXNA + - DPutils + - ForestStructures + - OrderedBits + - PrimitiveArray + - SciBaseTypes + - Taxonomy + - ViennaRNAParser + - either-unwrap + + "Silk ": + - aeson-utils + - arrow-list + - attoparsec-expr + - code-builder + - generic-xmlpickler + - hxt-pickle-utils + - imagesize-conduit + - json-schema + - multipart + - rest-client + - rest-core + - rest-gen + - rest-happstack + - rest-snap + - rest-stringmap + - rest-types + - rest-wai + - tostring + - uri-encode + + "Simon Michael @simonmichael": + - quickbench + - regex-compat-tdfa + - shelltestrunner + # The hledger project aims to keep the latest release of the core + # "hledger-lib" and "hledger" packages in stackage nightly at all times. + # When other hledger-* packages (or minor non-hledger packages) have + # incompatible bounds, we would prefer they be disabled temporarily, + # rather than disabling the latest hledger-lib and hledger. + # (#3494/closed, #5779/closed) + - hledger + - hledger-lib + - hledger-ui + - hledger-web + + "Mihai Maruseac @mihaimaruseac": + - io-manager + + "Dimitri Sabadie @phaazon": + - al + - event + - hid + - monad-journal + - smoothie + - wavefront + - zero + + "Thomas Schilling @nominolo": + - ghc-syb-utils + + "Boris Buliga @d12frosted": + - io-choice + + "Yann Esposito yogsototh @yogsototh": + - human-readable-duration + - holy-project + - wai-middleware-caching + - wai-middleware-caching-lru + - wai-middleware-caching-redis + + "Paul Rouse @paul-rouse": + - mysql + - mysql-simple + - sphinx < 0 # Could not find module Network + - xmlhtml + - yesod-auth-hashdb + + "Toralf Wittner @twittner": + - bytestring-conversion + - cql + - cql-io + - redis-resp + - redis-io + - swagger + - tinylog + - wai-predicates + - wai-routing + - zeromq4-haskell + + "Alejandro Serrano @serras": + - djinn-lib + - djinn-ghc + - generics-mrsop < 0 # MonadFail + - kind-apply + - kind-generics + - kind-generics-th + - simplistic-generics + - wl-pprint + - AC-Angle + - language-protobuf + - generic-aeson + - parameterized + - tracing-control + - primitive-unlifted + - stm-lifted + - monad-primitive + - mwc-random-monad + + "Flavio Corpa @kutyel": + - language-avro + + "Matvey Aksenov @supki": + - terminal-size + - envparse + + "Luis G. Torres @giogadi": + - kdt + + "Pavel Krajcevski @Mokosha": + - netwire + - netwire-input + - netwire-input-glfw + - yoga + - freetype2 + - HCodecs + - netcode-io + - reliable-io + + "Emanuel Borsboom @borsboom": + - BoundedChan + - broadcast-chan + - fuzzcheck + - here + - hlibgit2 + - gitlib-libgit2 + - interpolatedstring-perl6 + - iproute + - missing-foreign + - MissingH + - multimap + - parallel-io + - text-binary + - Chart-cairo + - ghc-events + - monad-extras + - optparse-simple + - hpack + - bindings-uname + - stack < 9.9.9 # see #3563/closed + + "Michael Sloan @mgsloan": + - store + - store-core + - store-streaming + - th-orphans + - th-reify-many + - th-utilities + + "Nikita Volkov @nikita-volkov": + - acc + - attoparsec-data + - attoparsec-time + - base-prelude + - bytestring-strict-builder + - bytestring-tree-builder + - cases + - deferred-folds + - deque + - domain + - domain-core + - domain-optics + - focus + - hasql + - hasql-optparse-applicative + - hasql-pool + - hasql-th < 0 # 0.4.0.9 TH compile error + - hasql-transaction + - headed-megaparsec < 0.2.0.2 # https://github.com/commercialhaskell/stackage/issues/6348 + - jsonifier + - list-t + - mtl-prelude + - neat-interpolation + - optima + - partial-handler + - postgresql-binary + - postgresql-syntax + - primitive-extras + - ptr-poker + - rebase < 1.14 # https://github.com/commercialhaskell/stackage/issues/6348 + - rerebase < 1.14 # https://github.com/commercialhaskell/stackage/issues/6348 + - slave-thread + - stm-containers + - stm-hamt + - template-haskell-compat-v0208 + - text-builder + - th-lego + - vector-builder + - yaml-unscrambler < 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/6348 + - xml-parser + + "Iustin Pop @iustin": + - prefix-units + + "Alexander Thiemann @agrafix": + - Spock + - Spock-core + - Spock-api + - Spock-api-server + - Spock-worker + - graph-core + - hvect + - reroute + - users + - users-persistent + - users-postgresql-simple + - users-test + - validate-input + - ignore < 0 # compile fail https://github.com/agrafix/ignore/issues/5 + - blaze-bootstrap + - dataurl + - psql-helpers + - superbuffer + - timespan + - distance < 0 # compile fail (GHC 8.4) + - async-extra + - format-numbers + - highjson + - highjson-swagger + - highjson-th + - fileplow + + "Joey Eremondi @JoeyEremondi": + - digest + - elm-core-sources + - language-glsl + - prettyclass + - QuasiText + - union-find + - zip-archive + + "Arthur Fayzrakhmanov @geraldus": + - yesod-form-richtext + - ghcjs-perch + + "Tom Ellis @tomjaguarpaw": + - opaleye + - product-profunctors + - strict-wrapper + + "Samplecount stefan@samplecount.com @kaoskorobase": + - shake-language-c + + "David Turner @davecturner": + - alarmclock + - bank-holidays-england + + "Haskell Servant ": + - servant + - servant-blaze + - servant-cassava + - servant-client + - servant-client-core + - servant-conduit + - servant-docs + - servant-foreign + - servant-http-streams + - servant-js + - servant-lucid + - servant-machines + - servant-mock + - servant-multipart + - servant-multipart-api + - servant-pipes + - servant-server + - servant-swagger + - servant-swagger-ui + - servant-swagger-ui-core + + "Optics ": + - indexed-profunctors + - optics + - optics-core + - optics-extra + - optics-th + - optics-vl + + "Alexandr Ruchkin @mvoidex": + - hformat + - simple-log + - text-region + - haskell-names + - hsdev + + "Aleksey Kliger @lambdageek": + - unbound-generics + - indentation-core + - indentation-parsec + - clang-compilation-database + + "Alois Cochard @aloiscochard": + - machines-binary + # on behalf of Bryan O'Sullivan @bos: + - wreq + + "Andraz Bajt @edofic": + - effect-handlers + - koofr-client + - snowflake + + "Leza M. Lutonda @lemol": + - HaskellNet + - HaskellNet-SSL + + "Tristan de Cacqueray @tristanC": + - linux-capabilities + + "Jens Petersen @juhp": + - bugzilla-redhat + - cabal-file + - cabal-rpm + - cached-json-file + - dl-fedora + - fedora-dists + - fedora-haskell-tools + - hkgr + - http-directory < 0.1.9 # https://github.com/juhp/dl-fedora/issues/2 + - http-query + - koji + - pagure-cli + - pkgtreediff + - rhbzquery + - rpm-nvr + - rpmbuild-order + - simple-cabal + - simple-cmd + - simple-cmd-args + - HaXml + + - async-pool + - darcs + - idris + - libffi + - cairo + - glib + - gio + - pango + - gtk3 + - ghcjs-codemirror + - ghcjs-dom + - jsaddle + - vado + - vcswrapper + - ShellCheck + - binary-shared + - xdg-userdirs + # please take these + - cryptohash-md5 + - cryptohash-sha1 + + "Renzo Carbonara @k0001": + - df1 + - di + - di-core + - di-df1 + - di-handle + - di-monad + - exinst + - flay + - network-simple + - network-simple-tls + - pipes-aeson + - pipes-attoparsec + - pipes-binary + - pipes-network + - pipes-network-tls + - safe-money + - vector-bytes-instances + - xmlbf-xeno + - xmlbf-xmlhtml + - xmlbf + + "Tomas Carnecky @wereHamster": + - avers + - avers-api + - avers-server + - css-syntax + - etcd + - github-types + - github-webhook-handler + - github-webhook-handler-snap + - google-cloud + - kraken + - libinfluxdb + - mole + - publicsuffix + - rethinkdb-client-driver + - snap-blaze + + "Alexandr Kurilin @alex_kurilin": + - bcrypt + + "Jeffrey Rosenbluth @jeffreyrosenbluth": + - palette + - diagrams-canvas + - svg-builder + + "GabrĂ­el ArthĂșr PĂ©tursson @polarina": + - sdl2 + + "Leon Mergen @solatis": + - base32string + - base58string + - bitcoin-api + - bitcoin-api-extra + - bitcoin-block + - bitcoin-script + - bitcoin-tx + - bitcoin-types + - hexstring + - network-attoparsec < 0 # MonadFail + - network-anonymous-i2p < 0 + - network-anonymous-tor + + "Timothy Jones @zmthy": + - http-media + + "Greg V @myfreeweb": + - pcre-heavy + - http-link-header + - microformats2-parser + - hspec-expectations-pretty-diff + - wai-cli + - magicbane + + "Francesco Mazzoli @bitonic": + - language-c-quote + + "Sönke Hahn @soenkehahn": + - generics-eot + - getopt-generics + - graph-wrapper + - string-conversions + - hspec-checkers + - FindBin + + "Jan Stolarek @jstolarek": + - tasty-program + + "Abhinav Gupta @abhinav": + - farmhash + - pinch + - sandman < 0 # compilation failure (Cabal 3) + + "Adam C. Foltzer @acfoltzer": + - gitrev + - persistent-refs + + "Luke Taylor @tekul": + - jose-jwt + + "Brendan Hay @brendanhay": + - amazonka + - amazonka-core + - amazonka-test + - amazonka-apigateway + - amazonka-application-autoscaling + - amazonka-appstream + - amazonka-athena + - amazonka-autoscaling + - amazonka-budgets + - amazonka-certificatemanager + - amazonka-cloudformation + - amazonka-cloudfront + - amazonka-cloudhsm + - amazonka-cloudsearch + - amazonka-cloudsearch-domains + - amazonka-cloudtrail + - amazonka-cloudwatch + - amazonka-cloudwatch-events + - amazonka-cloudwatch-logs + - amazonka-codebuild + - amazonka-codecommit + - amazonka-codedeploy + - amazonka-codepipeline + - amazonka-cognito-identity + - amazonka-cognito-idp + - amazonka-cognito-sync + - amazonka-config + - amazonka-datapipeline + - amazonka-devicefarm + - amazonka-directconnect + - amazonka-discovery + - amazonka-dms + - amazonka-ds + - amazonka-dynamodb + - amazonka-dynamodb-streams + - amazonka-ec2 < 0 # takes too much memory to build https://github.com/brendanhay/amazonka/issues/549 + - amazonka-ecr + - amazonka-ecs + - amazonka-efs + - amazonka-elasticache + - amazonka-elasticbeanstalk + - amazonka-elasticsearch + - amazonka-elastictranscoder + - amazonka-elb + - amazonka-elbv2 + - amazonka-emr + - amazonka-gamelift + - amazonka-glacier + - amazonka-glue + - amazonka-health + - amazonka-iam + - amazonka-importexport + - amazonka-inspector + - amazonka-iot + - amazonka-iot-dataplane + - amazonka-kinesis + - amazonka-kinesis-analytics + - amazonka-kinesis-firehose + - amazonka-kms + - amazonka-lambda + - amazonka-lightsail + - amazonka-marketplace-analytics + - amazonka-marketplace-metering + - amazonka-ml + - amazonka-opsworks + - amazonka-opsworks-cm + - amazonka-pinpoint + - amazonka-polly + - amazonka-rds + - amazonka-redshift + - amazonka-rekognition + - amazonka-route53 + - amazonka-route53-domains + - amazonka-s3 + - amazonka-sdb + - amazonka-servicecatalog + - amazonka-ses + - amazonka-shield + - amazonka-sms + - amazonka-snowball + - amazonka-sns + - amazonka-sqs + - amazonka-ssm + - amazonka-stepfunctions + - amazonka-storagegateway + - amazonka-sts + - amazonka-support + - amazonka-swf + - amazonka-waf + - amazonka-workspaces + - amazonka-xray + # gogol-* disabled due to `gogol-core` due to `servant`: #6089/closed + # gogol + # gogol-core + # gogol-adexchange-buyer + # gogol-adexchange-seller + # gogol-admin-datatransfer + # gogol-admin-directory + # gogol-admin-emailmigration + # gogol-admin-reports + # gogol-adsense + # gogol-adsense-host + # gogol-affiliates + # gogol-analytics + # gogol-android-enterprise + # gogol-android-publisher + # gogol-appengine + # gogol-apps-activity + # gogol-apps-calendar + # gogol-apps-licensing + # gogol-apps-reseller + # gogol-apps-tasks + # gogol-appstate + # gogol-autoscaler + # gogol-bigquery + # gogol-billing + # gogol-blogger + # gogol-books + # gogol-civicinfo + # gogol-classroom + # gogol-cloudmonitoring + # gogol-cloudtrace + # gogol-compute + # gogol-container + # gogol-customsearch + # gogol-dataflow + # gogol-dataproc + # gogol-datastore + # gogol-debugger + # gogol-deploymentmanager + # gogol-dfareporting + # gogol-discovery + # gogol-dns + # gogol-doubleclick-bids + # gogol-doubleclick-search + # gogol-drive + # gogol-firebase-rules + # gogol-fitness + # gogol-fonts + # gogol-freebasesearch + # gogol-fusiontables + # gogol-games + # gogol-games-configuration + # gogol-games-management + # gogol-genomics + # gogol-gmail + # gogol-groups-migration + # gogol-groups-settings + # gogol-identity-toolkit + # gogol-kgsearch + # gogol-latencytest + # gogol-logging + # gogol-maps-coordinate + # gogol-maps-engine + # gogol-mirror + # gogol-monitoring + # gogol-oauth2 + # gogol-pagespeed + # gogol-partners + # gogol-people + # gogol-play-moviespartner + # gogol-plus + # gogol-plus-domains + # gogol-prediction + # gogol-proximitybeacon + # gogol-pubsub + # gogol-qpxexpress + # gogol-replicapool + # gogol-replicapool-updater + # gogol-resourcemanager + # gogol-resourceviews + # gogol-script + # gogol-sheets + # gogol-shopping-content + # gogol-siteverification + # gogol-spectrum + # gogol-sqladmin + # gogol-storage + # gogol-storage-transfer + # gogol-tagmanager + # gogol-taskqueue + # gogol-translate + # gogol-urlshortener + # gogol-useraccounts + # gogol-vision + # gogol-webmaster-tools + # gogol-youtube + # gogol-youtube-analytics + # gogol-youtube-reporting + - ede + - pagerduty < 0 # build failure with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 + - semver + - text-manipulate + + "Nick Partridge @nkpart": + - cabal-file-th + + "Gershom Bazerman @gbaz": + - jmacro + - jmacro-rpc + - jmacro-rpc-snap + - jmacro-rpc-happstack + + - mbox + - kmeans + - boolsimplifier + - cubicspline + - maximal-cliques + + "Alexander Bondarenko @dpwiz": + - hedn + - soap + - soap-tls + - soap-openssl + + "Andres Löh @kosmikus": + - generics-sop + - records-sop + - sop-core + + "Vivian McPhail @amcphail": + - hmatrix-gsl-stats + - hsignal + - hstatistics + - plot + - vector-buffer + - hmatrix-repa + + "Noam Lewis @sinelaw": + - xml-to-json + - xml-to-json-fast + - wl-pprint + # not a maintainer + - hxt-curl + - hxt-expat + - hxt-tagsoup + - hexpat + - digits + - logict + - leveldb-haskell + - system-argv0 + - markdown-unlit + + "Brian McKenna @puffnfresh": + - jwt < 0.11 # https://github.com/commercialhaskell/stackage/issues/6356 + + "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": + - setlocale + + "Taylor Fausak @tfausak": + - autoexporter + - burrito + - derulo + - flow + - github-release + - json-feed + - lackey + - list-singleton + - rampart + - ratel + - ratel-wai + - rattletrap + - salve + - splint + - strive + - witch + - wuss + + - bmp # @benl23x5 + - gpolyline # @fegu + + "Marios Titas @redneb": + - HsOpenSSL-x509-system + - adler32 + - btrfs + - disk-free-space + - hxt-css + - islink + - linux-file-extents + - linux-namespaces + + "Will Coster @fimad": + - prometheus-client + - prometheus-metrics-ghc + - scalpel + - scalpel-core + - wai-middleware-prometheus + + "William Casarin @jb55": + - bson-lens + - cased + - elm-export + - elm-export-persistent + - pipes-csv + - pipes-mongodb + - servant-elm + - servant-streaming + - servant-streaming-client + - servant-streaming-server + - skeletons + + "David Raymond Christiansen @david-christiansen": + - annotated-wl-pprint + + "Yitz Gale @ygale": + - boolean-normal-forms + - strict-concurrency + - timezone-series + - timezone-olson + + "Harry Garrood @hdgarrood": + - aeson-better-errors + + "Mitchell Rosen @mitchellwrosen": + - ki + - tasty-hspec + - termbox + - text-ansi + - timer-wheel + + "QBayLogic B.V. @martijnbastiaan": + - ghc-tcplugins-extra + - ghc-typelits-extra + - ghc-typelits-knownnat + - ghc-typelits-natnormalise + - clash-prelude + - clash-lib + - clash-ghc + + "Martijn Bastiaan @martijnbastiaan": + - aeson-pretty + + "Athan Clark @athanclark": + - aeson-attoparsec + - alternative-vector + - almost-fix + - attoparsec-base64 + - attoparsec-path + # - attoparsec-ip # Deprecated in favor of ip + # - attoparsec-uri + - chan + - commutative + - composition-extra + - every + - extractable-singleton + - follow-file + - HSet < 0 # compilation failure, duplicate Hashable instance + - markup + - monad-control-aligned + - monadoid + - n-tuple + - path-extra + - pred-set + - pred-trie + - path-extra + - poly-arity + - quickcheck-combinators + - rose-trees + - sets + - since + - timemap + - tmapchan + - tmapmvar + - tries + - unit-constraint + - unfoldable-restricted + - urlpath + - wai-transformers + - websockets-rpc + - websockets-simple + - webpage + - ws + + "Fumiaki Kinoshita @fumieval": + - boundingboxes + - control-bool + - drinkery + - monad-skeleton + - xml-lens + - witherable + - deriving-aeson + + "Peter Harpending @pharpend": + - editor-open + - exceptional < 0 # MonadFail + - pager + - semiring-simple + + "Philipp Hausmann @phile314": + - language-thrift + + "Michael Thompson @michaelt": + - pipes-text + - lens-simple + - lens-family-core + - lens-family + + "Justin Le @mstksg": + - advent-of-code-api + - auto + - backprop + - bins + - conduino + - configurator-export + - decidable + - emd + - functor-products < 0 # compilation failure https://github.com/mstksg/functor-products/issues/1 + - hamilton + - hmatrix-backprop + - hmatrix-vector-sized + - lens-typelevel + - list-witnesses + - nonempty-containers + - one-liner-instances < 0 # compile failure (random 1.2) + - prompt + - servant-cli + - tagged-binary + - type-combinators-singletons + - typelits-witnesses + - uncertain + - vector-sized + + "Ian Duncan @iand675": + - feature-flags + - metrics + - pipes-wai + - serf + - uri-templater + - data-sketches + - data-sketches-core + + "Michael Xavier @MichaelXavier": + - uri-bytestring + - cron + - tasty-tap + - tasty-fail-fast + - drifter + - drifter-postgresql + - drifter-sqlite + + "Lars Kuhtz @larskuhtz": + - wai-cors + - configuration-tools + - random-bytestring + + "Sam Rijs @srijs": + - ndjson-conduit + - operational-class + - result + + "Daniel Patterson @dbp": + - hworker + - fn + + "Mathieu Boespflug @mboes": + - choice + - distributed-closure + - inline-java + - inline-r + - jni < 0 # compilation failure + - jvm + - jvm-streaming + - H + - sparkle + - th-lift + + "Christopher Reichert @creichert": + - bencode + - hsebaysdk + - dockerfile + - wai-middleware-throttle + - yesod-auth-basic + + "Hirotomo Moriwaki @philopon": + - barrier + + "Kai Zhang @kaizhang": + - matrices + - haskell-igraph < 0 # compile failure ghc 8.10.1 #5440/closed + + "Michel Boucey @MichelBoucey": + - IPv6Addr + - ip6addr + - cayley-client + - Spintax + - glabrous + - google-oauth2-jwt + - IPv6DB + - gothic + - NanoID + + "koral koral@mailoo.org @k0ral": + - atom-conduit + - conduit-parse + - dublincore-xml-conduit + - euler-tour-tree + - opml-conduit + - rss-conduit + - timerep + - xml-conduit-parse + + "Daniel Cartwright @chessai": + - streaming + - streaming-bytestring + - country + - semirings + - torsor + - chronos + - refined + - these-skinny + - hedgehog-classes + + "Kostiantyn Rybnikov @k-bx": + - SHA + - currency + - data-ordlist + - digits + - dns + - friday + - friday-juicypixels + - hbeanstalk + - hedis + - hprotoc + - hsyslog-udp + - iso3166-country-codes + - iso639 + - monoidal-containers + - murmur-hash + - protocol-buffers + - protocol-buffers-descriptor + - regex-pcre + - string-class + - string-combinators + + "Rob O'Callahan ropoctl@gmail.com @rcallahan": + - pipes-fastx + - seqalign + + "John Lenz @wuzzeb": + - yesod-static-angular + - hspec-webdriver + - webdriver-angular + + "Sven Heyll @sheyll": + - b9 + - type-spec + - pretty-types + - function-builder + - bytestring-to-vector + + "Jakub FijaƂkowski @jakubfijalkowski": + - hlibsass + - hsass + + "Robert Massaioli @robertmassaioli": + - range + + "Vladislav Zavialov @int-index": + - transformers-lift + - union + - named + - inj + - shower + + "Stack Builders stackage@stackbuilders.com @stackbuilders": + - atomic-write + - dbcleaner + - dotenv + - hapistrano + - hspec-golden + - inflections + - stache + - scalendar + + "Sergey Alirzaev @l29ah": + - monad-peel + - NineP + - Network-NineP + + "Antoni Silvestre @asilvestre": + # Test suite needs a running neo4j server with auth disabled + # unfortunately the cabal package name and the github repo don't have the exact same name + # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client + - haskell-neo4j-client < 0 # build failure with GHC 8.4 https://github.com/asilvestre/haskell-neo4j-rest-client/issues/32 + + "Anton Kholomiov ": + - data-fix + + "Alexey Khudyakov @Shimuuar": + - histogram-fill + - fixed-vector + - fixed-vector-hetero + - type-level-numbers + + "Ryan Scott @RyanGlScott": + - abstract-deque + - abstract-deque-tests + - abstract-par + - atomic-primops + - base-compat-batteries + - base-orphans + - chaselev-deque + - code-page + - constraint-tuples + - criterion + - criterion-measurement + - data-reify + - deriving-compat + - dotgen + - echo + - eliminators + - generic-deriving + - ghc-bignum-orphans + - hashmap + - indexed-traversable-instances + - invariant + - keycode + - lift-generics + - mintty + - monad-par + - monad-par-extras + - mtl-compat + - ordered-containers + - proxied + - rdtsc + - singleton-nats + - singletons-base + - singletons-th + - text-show + - text-show-instances + - th-abstraction + - th-compat + - thread-local-storage + - type-equality + + "Kirill Zaborsky @qrilka": + - xlsx + + "Matt Parsons @parsonsmatt": + - monad-logger-prefix + - monad-metrics + - prairie + - ekg-cloudwatch + - smtp-mail + - liboath-hs + - servant-quickcheck + - esqueleto + - hedgehog-fakedata + - persistent-discover + - persistent-documentation + - persistent-typed-db + - persistent-qq + - persistent-pagination + - hspec-hedgehog + - exception-via + - record-wrangler + - lift-type + - some-dict-of + - discover-instances + + "Matthew Pickering @mpickering": + - refact + + "Andrew Gibiansky @gibiansky": + - ipython-kernel + + "James Cook @mokus0": + - dependent-map + - dependent-sum + - dependent-sum-template + - dice + - hstatsd + - misfortune + + "Timo von Holtz @tvh": + - ekg-wai + - haxl-amazonka + - hasql-migration + - servant-JuicyPixels + + "Artyom Kazak @neongreen": + - microlens + - microlens-platform + - microlens-mtl + - microlens-th + - microlens-ghc + - microlens-contra + - cheapskate-highlight + - cheapskate-lucid + - cmark-lucid + - cmark-highlight + - Spock-lucid + - charsetdetect-ae + - text-all + + "Takano Akio tak@anoak.io @takano-akio": + - fast-builder + - filelock + + "Brian Lewis brian@lorf.org @bsl": + - bindings-GLFW + - GLFW-b + + "Niklas HambĂŒchen mail@nh2.me @nh2": + - conduit-concurrent-map + - hidapi + - iso8601-time + - loop + - lz4-frame-conduit + - netpbm + - network-house < 0 # compilation failure MonadFail + - reinterpret-cast + - shared-memory + - posix-paths + # As dependencies of packages above + - attoparsec-binary + + "Michael Walker @barrucadu": + - both + - concurrency + - dejafu + - hunit-dejafu + - tasty-dejafu + - irc-ctcp + - irc-conduit + - irc-client + + "Rudy Matela @rudymatela": + - leancheck + - leancheck-instances + - fitspec + - express + - speculate + - extrapolate + - code-conjure + - percent-format + - tasty-leancheck + - hspec-leancheck + - test-framework-leancheck + + "Trevor Elliott @elliottt": + - irc + + "Dennis Gosnell @cdepillabout": + - envelope + - from-sum + - natural-transformation + - password + - password-instances + - password-types + - pretty-simple + - print-console-colors + - read-env-var + - servant-checked-exceptions + - servant-checked-exceptions-core + - servant-rawm + - servant-static-th + - termonad + - world-peace + - xml-html-qq + - xml-indexed-cursor + + "Franklin Chen @FranklinChen": + - Ebnf2ps + + "Tobias Bexelius @tobbebex": + - GPipe + + "Jonas Carpay @jonascarpay": + - apecs + - apecs-gloss + - apecs-physics + - aeson-commit + - js-chart + - tasty-focus + + "Spencer Janssen @spencerjanssen": + - Xauth + + "Sebastian de Bellefon @Helkafen": + - wai-middleware-metrics + + "Gregory Collins @gregorycollins": + - hashtables + - io-streams + - openssl-streams + + "Andrew Cowie @istathar": + - chronologique + - http-common + - http-streams + - locators + - core-data + - core-program + - core-telemetry + - core-text + + "Sean Hunt @ivan-m": + - fgl + - graphviz + - wl-pprint-text + - servant-pandoc + + "Sharif Olorin @olorin": + - quickcheck-text + - nagios-check + + "Peter Simons @peti": + - cabal2nix + - cabal2spec + - cgi + - distribution-nixpkgs + - distribution-opensuse + - flexible-defaults + - funcmp + - hackage-db + - hledger-interest + - hopenssl + - hsdns + - hsemail + - hsyslog + - jailbreak-cabal + - lambdabot-core + - lambdabot-irc-plugins + - language-nix + - logging-facade-syslog + - MonadPrompt + - nix-paths + - parsec-class + - prim-uniq + - random-fu < 0 + - random-source + - rvar + - SafeSemaphore + - streamproc + - stringsearch # for cgi + - titlecase + + "Mark Fine @markfine": + - postgresql-schema + - sbp + + "Jinjing Wang @nfjinjing": + - moesocks + + "Gregory W. Schwartz @GregorySchwartz": + - diversity + - fasta + - modify-fasta + - tree-fun + - random-tree + - clumpiness + - find-clumpiness + - blosum + - rank-product + + "Simon Marechal @bartavelle": + - compactmap + - stateWriter + - filecache + - pcre-utils + - strict-base-types + - withdependencies + - hruby + - language-puppet + - tar-conduit + + "Mark Karpov @mrkkrp": + - JuicyPixels-extra + - cue-sheet + - flac + - flac-picture + - forma + - ghc-syntax-highlighter + - hspec-megaparsec + - htaglib + - html-entity-map + - identicon + - lame + - megaparsec + - megaparsec-tests + - mmark + - mmark-cli + - mmark-ext + - modern-uri + - ormolu + - pagination + - parser-combinators + - parser-combinators-tests + - path + - path-io + - req + - req-conduit + - stache + - tagged-identity + - text-metrics + - wave + - zip + + "Emmanuel Touzery @emmanueltouzery": + - app-settings + - hsexif + - slack-web + + "Nickolay Kudasov @fizruk": + - http-api-data + - swagger2 + - telegram-bot-simple + + "Jared Tobin @jtobin": + - mwc-probability + - mcmc-types + - mighty-metropolis + - speedy-slice + - hasty-hamiltonian + - declarative + - sampling + - flat-mcmc + - urbit-hob + - hnock + + "Facundo DomĂ­nguez @facundominguez": + - distributed-process + - distributed-process-simplelocalnet + - distributed-process-tests + - distributed-static + - inline-c + - jvm-batching + - network-transport + - network-transport-tests + - network-transport-tcp + - network-transport-inmemory + - network-transport-composed + - pthread + - rank1dynamic + + "Dave Tapley @dukedave": + - inline-c-cpp + + "Takahiro Himura @himura": + - lens-regex + # - twitter-conduit # twitter-types + # - twitter-types # MonadFail + # - twitter-types-lens # + + "Robbin C. @robbinch": + - zim-parser + + "David Wiltshire @dave77": + # on behalf of Alexey Karakulov @w3rs + - hashable-time + + "Yuras Shumovich @Yuras": + - pdf-toolbox-content + - pdf-toolbox-core + - pdf-toolbox-document + - io-region + - scanner + + "Stanislav Chernichkin @schernichkin": + - partial-isomorphisms + + "Christoph Breitkopf @bokesan": + - IntervalMap + + "Michele Lacchia @rubik": + - pathwalk + + "John Galt @centromere": + - cacophony + - blake2 + - nfc + + + "Michael Schröder @mcschroeder": + - ctrie + - ttrie + + "Stefan Kersten @kaoskorobase": + - hsndfile + - hsndfile-vector + + "yihuang @yihuang": + - tagstream-conduit + + "Johannes Hilden @laserpants": + - hashids + - fuzzyset + + "Will Sewell @willsewell": + - benchpress + - pusher-http-haskell + + "Yorick Laupa yo.eight@gmail.com @YoEight": + - eventstore + - dotnet-timespan + - eventsource-api + - eventsource-geteventstore-store + - eventsource-store-specs + - eventsource-stub-store + + "Sebastian Dröge slomo@coaxion.net @sdroege": + - conduit-iconv < 0 # MonadFail + - conduit-connection + + "Andrew Rademacher @AndrewRademacher": + - aeson-casing + - graylog < 0 # Couldn't find module Network.BSD + - parsec-numeric + - mallard + - gdax + + "Callum Rogers @CRogers": + - should-not-typecheck + + "Mihaly Barasz klao@nilcons.com @klao": + - lens-datetime + - tz + - tzdata + + "Timothy Klim @TimothyKlim": + - pkcs10 + + "David Luposchainsky @quchen": + - pgp-wordlist + - show-prettyprint + + "Jeremy Shaw @stepcut": + - boomerang + - happstack-hsp + - happstack-jmacro + - happstack-server + - happstack-server-tls + - hsx-jmacro + - ixset + - reform + - reform-blaze + - reform-hamlet + - reform-happstack + - reform-hsp + - userid + - web-plugins + - web-routes + - web-routes-boomerang + - web-routes-happstack + - web-routes-hsp + - web-routes-th + - web-routes-wai + - hsx2hs + + "Pedro Tacla Yamada @yamadapc": + - ascii-progress + - drawille + - file-modules + - frontmatter + - read-editor + - list-prompt < 0 # compile failure https://github.com/yamadapc/list-prompt/issues/3 + - package-description-remote < 0 # compile failure + - projectroot + - questioner + - language-dockerfile < 0 # compile failure https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 + + "Pascal Hartig @passy": + - giphy-api + - optparse-text + + "rightfold @rightfold": + - open-browser + + "Denis Redozubov @dredozubov": + - hreader-lens + - schematic + + "Yuji Yamamoto @igrep": + - yes-precure5-command + - th-strict-compat + - main-tester + - skews + - wss-client + - network-messagepack-rpc + - network-messagepack-rpc-websocket + - unicode-show + - deriveJsonNoPrefix + - fakefs + - fakepull + + "Hans-Christian Esperer @hce": + - avwx + - saltine < 0.2.0.0 # https://github.com/tel/saltine/issues/58 + - wai-session-postgresql + + "Haisheng Wu @freizl": + - hoauth2 + + "Falko Peters @informatikr": + - scrypt + + "Jakub Waszczuk @kawu": + - dawg-ord + + "Amit Levy @alevy": + - simple + - simple-templates + - simple-session + - postgresql-orm + + "Sergey Astanin @astanin": + # Stackage server uses Ubuntu 16.04 which ships libzip-1.0.1. + # Haskell packages should match major.minor versions of the C library. + - bindings-libzip >= 1.0 + - LibZip >= 1.0 + + "Anthony Cowley @acowley": + - vinyl + - Frames + - hpp + + "Takayuki Muranushi @nushio3": + - binary-search + + "Jason Shipman @jship": + - logging-effect-extra + - logging-effect-extra-file + - logging-effect-extra-handler + - overhang + - tao + - tao-example + + "Suhail Shergill @suhailshergill": + - extensible-effects + + "Justus Adam @JustusAdam": + - marvin + - marvin-interpolate + - mustache + - exit-codes >= 1.0.0 + + "Cindy Wang @CindyLinz": + - NoTrace + - linked-list-with-iterator + + "Jean-Philippe Bernardy @jyp": + - polynomials-bernstein + - typography-geometry + + "John MacFarlane @jgm": + - hsb2hs + - cmark + - texmath + - highlighting-kate + - skylighting + - skylighting-core + - pandoc-types + - zip-archive + - doclayout + - doctemplates + - emojis + - pandoc + - citeproc + - commonmark + - commonmark-extensions + - commonmark-pandoc + - unicode-collation + - HsYAML-aeson + - ipynb + + "Karun Ramakrishnan @karun012": + - doctest-discover + + "Elie Genard @elaye": + - turtle-options + + "Ozgun Ataman ozgun.ataman@soostone.com @ozataman": + - string-conv + - rng-utils + - ua-parser + - hs-GeoIP + - retry + - katip + - katip-elasticsearch < 0 # https://github.com/commercialhaskell/stackage/issues/6341 + + "Sid Kapur sidharthkapur1@gmail.com @sid-kap": + - tuple + - OneTuple + + "Aaron Levin @aaronmblevin": + - free-vl + + "Kazuo Koga @kkazuo": + - xlsx-tabular + + "Mikhail Glushenkov @23Skidoo": + # - Cabal # take the one that ships with GHC + - cabal-install + - pointful + + "Lennart Kolmodin @kolmodin": + - binary-bits + + "Alex McLean @yaxu": + - tidal + - hosc + + "Kei Hibino @khibino": + - th-data-compat + - th-reify-compat + - relational-query + - relational-query-HDBC + - persistable-types-HDBC-pg + - relational-record + - text-ldap + - debian-build + - aeson-generic-compat + - json-rpc-generic + - protocol-radius + - protocol-radius-test + - th-bang-compat + - th-constraint-compat + - persistable-record + + "wren romano @wrengr": + - bytestring-lexing + - bytestring-trie + - data-or + - exact-combinatorics + - logfloat + - pointless-fun + - prelude-safeenum + - stm-chans + - unification-fd + - unix-bytestring + + "Fraser Tweedale @frasertweedale": + - concise + - dyre + - jose + + "Yoshikuni Jujo @YoshikuniJujo": + - zot + - yjtools + - io-machine + - yjsvg + - x11-xim + - X11-xft + - Imlib + - xturtle + - gluturtle + - papillon + - zasni-gerna + - exception-hierarchy + - simplest-sqlite + - warp-tls-uid + - nowdoc + - typecheck-plugin-nat-simple + - ranged-list + - c-enum + - c-struct + - union-angle + + "Jan Gerlinger @JanGe": + - irc-dcc + + "Alexey Raga @AlexeyRaga": + - hw-kafka-client + + "John Ky newhoggy@gmail.com @newhoggy": + - aeson-lens + - antiope-core + - antiope-dynamodb + - antiope-messages + - antiope-s3 + - antiope-sns + - antiope-sqs + - arbor-lru-cache + - arbor-postgres + - asif + - avro + - bits-extra + - hw-balancedparens + - hw-bits + - hw-conduit + - hw-conduit-merges + - hw-diagnostics + - hw-dsv + - hw-eliasfano + - hw-excess + - hw-fingertree + - hw-fingertree-strict + - hw-hedgehog + - hw-hspec-hedgehog + - hw-int + - hw-ip + - hw-json + - hw-json-simple-cursor + - hw-json-standard-cursor + - hw-mquery + - hw-packed-vector + - hw-parser + - hw-prim + - hw-rankselect + - hw-rankselect-base + - hw-simd + - hw-streams + - hw-succinct + - hw-xml + - tasty-discover + + "George Wilson @gwils": + - hedgehog-fn + - sv + - sv-cassava + - sv-core + - tasty-hedgehog + + "Ismail Mustafa @ismailmustafa": + - handwriting + + "Stephen Diehl @sdiehl": + - llvm-hs-pretty + - protolude + - repline + - picosat + - aos-signature + - bulletproofs + - pedersen-commitment + - merkle-tree + - oblivious-transfer + - pairing + - libraft + - galois-field + + "Daishi Nakajima @nakaji-dayo": + - api-field-json-th + + "Patrick Thomson @helium": + - postgresql-transactional + + "Tom Murphy ": + - gingersnap + - microspec + - midair + - nano-erl + - rando + - vivid + - vivid-osc + - vivid-supercollider + + "Toshio Ito @debug-ito": + - fold-debounce + - fold-debounce-conduit + - stopwatch + - wikicfp-scraper + - wild-bind + - wild-bind-x11 + - greskell + - greskell-core + - greskell-websocket + - hspec-need-env + + "Cies Breijs @cies": + - htoml + + "Martijn Rijkeboer @mrijkeboer": + - protobuf-simple + + "David Reaver @jdreaver": + - eventful-core + - eventful-dynamodb + - eventful-memory + - eventful-postgresql + - eventful-sql-common + - eventful-sqlite + - eventful-test-helpers + - stratosphere + - sum-type-boilerplate + + "Iñaki GarcĂ­a Etxebarria @garetxe": + - haskell-gi + - haskell-gi-base + - gi-atk + - gi-cairo + - gi-dbusmenu + - gi-dbusmenugtk3 + - gi-gdk == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gdkpixbuf + - gi-gdkx11 == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gio + - gi-glib + - gi-gobject + - gi-graphene + - gi-gtk == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gtk-hs + - gi-gmodule + - gi-pango + - gi-xlib + - gi-harfbuzz + - gi-gsk + - gi-gtksource + - gi-javascriptcore + - gi-vte + - gi-webkit2 + + "Brandon Simmons @jberryman": + - directory-tree + + "Ian Grant Jeffries @seagreen": + - hjsonpointer + + "Drew Hess @dhess": + - hpio + + "Richard Eisenberg @goldfirere": + - th-desugar + - singletons + - HUnit-approx + - units-parser + + "Doug McClean @dmcclean": + - dimensional + - exact-pi + - numtype-dk + + "Bjorn Buckwalter @bjornbm": + - leapseconds-announced + + "Pavel Ryzhov @paulrzcz": + - hquantlib + - hquantlib-time + - HSvm + + "Henri Verroken @hverr": + - bordacount + - cache + - haskey + - haskey-btree + - haskey-mtl + - intset-imperative + - lxd-client + - lxd-client-config + - xxhash-ffi + - zeromq4-patterns + + "Cliff Harvey @BlackBrane": + - ansigraph + - microsoft-translator + + "Tebello Thejane @tebello-thejane": + - bitx-bitcoin < 0 # compilation error + + "Andrew Lelechenko @Bodigrim": + - exp-pairs + - fast-digits < 0 # https://github.com/commercialhaskell/stackage/issues/6167 + - chimera + - quadratic-irrational + - primitive-addr + - quickcheck-classes + - quickcheck-classes-base + - arithmoi + - bitvec + - poly + - extended-reals + - ChasingBottoms + - data-interval + - vector-rotcev + - mod + - tasty-rerun + - integer-roots + - smallcheck + - quote-quot + - tasty-bench + - tasty-inspection-testing + + "Ashley Yakeley @AshleyYakeley": + - countable + - witness + - open-witness + + "Victor Denisov @VictorDenisov": + - mongoDB + - bson + + "Alexis King @lexi-lambda": + - freer-simple + - monad-mock + - test-fixture + - text-conversions + - th-to-exp + - type-assertions + + "Patrick Chilton @chpatrick": + - webrtc-vad + - clang-pure < 0 # missing system libraries #3810/closed + - codec + + "Michal Konecny @michalkonecny": + - hmpfr + - collect-errors + - mixed-types-num + - cdar-mBound + - aern2-mp + - aern2-real + + "Bartosz Nitka @niteria": + - oeis + + "Gergely Patai @cobbpg": + - elerea + + "Christopher Wells @ExcalburZero": + - pixelated-avatar-generator + + "Dominic Orchard @dorchard": + - array-memoize + - codo-notation < 0 # MonadFail + - fortran-src + + "Cheng Shao @TerrorJack": + - binaryen + - cabal-toolkit + - direct-rocksdb + + "Anton Gushcha @ncrashed": + - aeson-injector + - JuicyPixels-blp + + "Al Zohali @zohl": + - servant-auth-cookie + - dictionaries + - cereal-time + + "Joachim Fasting @joachifm": + - libmpd + + "Moritz Kiefer @cocreature": + - lrucaching + - llvm-hs + - llvm-hs-pure + + "Thierry Bourrillon @tbourrillon": + - heatshrink + - hocilib + + "Daniel Mendler @minad": + - quickcheck-special + - writer-cps-mtl + - writer-cps-transformers + - writer-cps-morph < 0 # https://github.com/louispan/writer-cps-morph/issues/2 + - writer-cps-lens + - writer-cps-full + - writer-cps-exceptions + - wl-pprint-annotated + - wl-pprint-console + - console-style + - unlit + - intro + - tasty-stats + - colorful-monoids + - ihs + - paripari + - persist + + "Taras Serduke @tserduke": + - do-list + + "Travis Whitaker ": + - cpuinfo + - lmdb + - rdf + - data-compat + - deepseq-instances + + "Michael Swan @michael-swan": + - pcf-font < 0 # MonadFail + - pcf-font-embed + + "Iago Abal ": + - bv + + "Juan Pedro Villa Isaza @jpvillaisaza": + - licensor + + "Florian Hofmann fho@f12n.de @fhaust": + - vector-split + - vector-mmap + + "Ondrej Palkovsky @ondrap": + - json-stream + + "Philipp Balzarek ": + - xml-picklers + + "Lennart Spitzner @lspitzner": + - multistate + - pqueue + - butcher + - czipwith + - data-tree-print + - brittany + + "Ryan Mulligan @ryantm": + - HDBC-mysql + + "Tony Morris @tonymorris": + - validation + + "Tony Day @tonyday567": + - numhask + - numhask-array + - numhask-prelude + - numhask-space + - perf + + "Iphigenia Df @iphydf": + - data-msgpack + - network-msgpack-rpc + + "Dino Morelli @dino-": + - epub-metadata + - hsinstall + - tce-conf + + "Jonathan Fischoff @jfischoff": + - clock-extras + - postgres-options + - tmp-postgres + - pg-transact + - port-utils + - postgresql-libpq-notify + - hasql-queue + + "Jonathan Knowles @jonathanknowles": + - bech32 + - bech32-th + - cardano-coin-selection + - quiet + - roc-id + + "Mahdi Dibaiee @mdibaiee": + - picedit + - mathexpr + - termcolor + + "XT @xtendo-org": + - rawfilepath + + "Konstantin Zudov @zudov": + - html-email-validate + + "Carl Baatz @cbaatz": + - atom-basic + + "Reuben D'Netto ": + - glob-posix + + "Kadzuya Okamoto @arowM": + - type-level-kv-list + - heterocephalus + - bookkeeping + - ochintin-daicho + - transaction + - tonaparser + - tonalude + - tonatona + - tonatona-logger + - tonatona-servant + - tonatona-persistent-sqlite + - tonatona-persistent-postgresql + + "Marcin Tolysz @tolysz": + - rawstring-qm + + "Daniel YU ": + - salak + - salak-yaml + - salak-toml + - tensors + - menshen + - crc32c + - boots + + "Tom Nielsen @glutamate": + - plotlyhs + - inliterate + + "Hyunje Jun @noraesae": + - line + + "Hannes Saffrich @m0rphism": + [] + # - printcess # lens 4.16 + + "Alexey Kuleshevich @lehins": + - wai-middleware-auth + - hip + - massiv + - massiv-io + - massiv-test + - massiv-serialise + - massiv-persist + - scheduler + - Color + - safe-decimal + - flush-queue + - pvar + + "Hans-Peter Deifel @hpdeifel": + - hledger-iadd + + "Roy Levien @orome": + - crypto-enigma + + "BoldizsĂĄr NĂ©meth @nboldi": + - instance-control + - references < 0 # compilation failure + - classyplate + - haskell-tools-ast + - haskell-tools-backend-ghc + - haskell-tools-prettyprint + - haskell-tools-refactor + - haskell-tools-rewrite + - haskell-tools-demo + - haskell-tools-cli + - haskell-tools-daemon + - haskell-tools-debug + + "David Fisher @ddfisher": + - socket-activation + + "aiya000 @aiya000": + - character-cases + - throwable-exceptions + + "Mitsutoshi Aoe @maoe": + - influxdb + - sensu-run + - viewprof + + "Dylan Simon @dylex": + - postgresql-typed + - invertible + - ztail + - zip-stream + + "Louis Pan @louispan": + - alternators + - arrow-extras + - data-diverse + - data-diverse-lens < 0 # compile fail (lens) + - ghcjs-base-stub + - glaze + - glazier < 0 # compile fail (lens) + - glazier-react + - glazier-react-widget + - javascript-extras + - lens-misc + - l10n + - pipes-category + - pipes-fluid + - pipes-misc + - stm-extras + + "SiniĆĄa Biđin @sbidin": + - sdl2-image + - sdl2-mixer + - sdl2-gfx + + "Aditya Manthramurthy @donatello": + - minio-hs + - webby + + "ncaq @ncaq": + - debug-trace-var + - haskell-import-graph + - string-transform + - uniq-deep + - yesod-form-bootstrap4 + - yesod-recaptcha2 + + "Andrei Barbu @abarbu": + - nondeterminism + - csp + - matplotlib + + "mackeyrms @mackeyrms": + - tsv2csv + + "Thomas Sutton @thsutton": + - aeson-diff + - edit-distance-vector + + "Kyle Van Berendonck @donkeybonks": + - rot13 + - dvorak + + "Cuedo Business Solutions @cuedo": + - github-webhooks + + "Pavel Yakovlev @zmactep": + - hasbolt + - uniprot-kb + - mmtf < 0 # MonadFail + + "Christopher A. Gorski @cgorski": + - general-games + + "Cristian AdriĂĄn Ontivero @contivero": + - hasmin + - hopfli + + "Peter TrĆĄko @trskop": + - between + - connection-pool + - verbosity + + "Devon Hollowood @devonhollowood": + - search-algorithms + + "Chris Dornan @cdornan": + - sort + - regex + - regex-pcre-text + - regex-with-pcre + - possibly + - enum-text + - rg + - columnar + - no-value + - optparse-enum + - fmt + + "Elliot Cameron @3noch": + - ziptastic-client + - ziptastic-core + + "Hardy Jones @joneshf": + - katip-rollbar + - rollbar-hs + - servant-ruby + - wai-middleware-rollbar + + "Andrey Mokhov @snowleopard": + - algebraic-graphs + + "Albert Krewinkel @tarleb": + - hslua + - hslua-classes + - hslua-core + - hslua-marshalling + - hslua-module-doclayout + - hslua-module-path + - hslua-module-system + - hslua-module-text + - hslua-module-version + - hslua-objectorientation + - hslua-packaging + - jira-wiki-markup + - lpeg + - lua + - lua-arbitrary + - pandoc-lua-marshal + - tasty-hslua + - tasty-lua + + "Judah Jacobson @judah": + - proto-lens-protobuf-types + - proto-lens-protoc + - proto-lens-runtime + - proto-lens-setup + - proto-lens + - proto-lens-arbitrary + - proto-lens-optparse + - tensorflow-test + - pier-core + - pier + - haskeline + - ghc-source-gen # tests disabled due to QuickCheck < 2.14 + + "Christof Schramm ": + - mnist-idx + + "Naushadh @naushadh": + - persistent-mysql-haskell + + "Moritz Schulte @mtesseract": + - async-refresh + - async-refresh-tokens + - type-level-integers + - partial-order + - async-timer + - nakadi-client + - throttle-io-stream + - conduit-throttle + + "Simon Hafner @reactormonk": + - uri-bytestring-aeson + - katip-scalyr-scribe + + "Sebastian Witte @saep": + - nvim-hs + - nvim-hs-contrib + - nvim-hs-ghcid + + "Sam Protas @SamProtas": + - triplesec + - composable-associations + - composable-associations-aeson + - JuicyPixels-blurhash + + "Anton Ekblad @valderman": + - selda + - selda-sqlite + - selda-postgresql + - selda-json + + "Luis Pedro Coelho @luispedro": + - safeio + - conduit-algorithms < 0 # compile fail + - conduit-zstd + + "Alex Biehl @alexbiehl": + - haddock-library + - http-client-openssl + + "Steven Vandevelde @icidasset": + - shikensu + + "George Pollard @Porges": + - email-validate + + "Alexander Ignatyev @aligusnet": + - astro + - mltool + - hmatrix-morpheus + + "Matt Noonan @matt-noonan": + - justified-containers + - roles >= 0.2 + - lawful + - gdp + + "Levent Erkok @LeventErkok": + - sbv + - crackNum + + "JĂĄnos Tapolczai @jtapolczai": + - listsafe + + "Serokell @serokell": + - importify + - log-warper + - o-clock + - tasty-hunit-compat + - universum + - with-utf8 + - uncaught-exception + + "Holmusk @arbus": + - elm-street + + "Noel Kwan @kwannoel": + - servant-docs-simple + + "Lorenz Moesenlechner @moesenle": + - servant-websockets + + "Daniel Campoverde @alx741": + - currencies + - alerts + - yesod-alerts + - graphite + + "JosĂ© Lorenzo RodrĂ­guez @lorenzo": + - wrecker + - language-docker + - docker-build-cacher + - mysql-haskell-nem + - hadolint + + "Phil Ruffwind @Rufflewind": + - blas-hs + + "Eitan Chatav @echatav": + - free-categories + - squeal-postgresql + + "Sam Quinn @Lazersmoke": + - ghost-buster + + "typeable.io ": + - dom-parser + - xml-isogen + + "Jeremy Huffman @jeremyjh": + - higher-leveldb + - distributed-process-lifted + - distributed-process-monad-control + + "Adam Curtis @kallisti-dev": + - webdriver + - cond + + "Naoto Shimazaki @nshimaza": + - thread-hierarchy + - thread-supervisor + - bitset-word8 + - webex-teams-api + - webex-teams-conduit + - webex-teams-pipes + + "Deni Bertovic @denibertovic & James Parker @jprider63": + - docker + + "Hexirp @Hexirp": + - doctest-driver-gen + + "VĂĄclav Haisman @wilx": + - hs-bibutils + + "Christian KjĂŠr Laustsen @tehnix": + - ghc-core + - colorize-haskell + + "Chris Martin @chris-martin": + - data-forest + - loc + - partial-semigroup + - path-text-utf8 + + "Type Classes @argumatronic @chris-martin": + - ascii + - ascii-case + - ascii-char + - ascii-group + - ascii-predicates + - ascii-superset + - ascii-th + - aws-cloudfront-signed-cookies + - d10 + - hex-text + - stripe-concepts + - stripe-signature + - stripe-scotty + - stripe-wreq + + "Viacheslav Lotsmanov @unclechu": + - place-cursor-at + - qm-interpolated-string + + "Douglas Burke @DougBurke": + - swish + - hvega + - ihaskell-hvega + + "Adam Flott @adamflott": + - milena < 0 # compilation failures + + "Csongor Kiss @kcsongor": + - generic-lens + - generic-optics + - generic-lens-core + + "Bogdan Neterebskii @ozzzzz": + - cast + - aeson-picker + + "Warlock @A1-Triard": + - errors-ext + - binary-ext + + "Bob Long @bobjflong": + - yesod-csp + + "Alexander Vershilov @qnikst": + - stm-conduit + - co-log-concurrent + - HaskellNet + + "Tung Dao @tungd": + - time-locale-vietnamese + + "Tim McGilchrist @tmcgilchrist": + - riak + - riak-protobuf + - airship + - hedgehog-corpus + + "Tom Sydney Kerckhove @NorfairKing": + - autodocodec + - autodocodec-openapi3 + - autodocodec-schema + - autodocodec-yaml + - cursor + - cursor-brick + - cursor-fuzzy-time + - cursor-gen + - fuzzy-time + - genvalidity + - genvalidity-aeson + - genvalidity-bytestring + - genvalidity-containers + - genvalidity-criterion + - genvalidity-hspec + - genvalidity-hspec-aeson + - genvalidity-hspec-binary + - genvalidity-hspec-cereal + - genvalidity-hspec-hashable + - genvalidity-hspec-optics + - genvalidity-hspec-persistent + - genvalidity-mergeful + - genvalidity-mergeless + - genvalidity-path + - genvalidity-persistent + - genvalidity-property + - genvalidity-scientific + - genvalidity-sydtest + - genvalidity-sydtest-aeson + - genvalidity-sydtest-hashable + - genvalidity-sydtest-lens + - genvalidity-sydtest-persistent + - genvalidity-text + - genvalidity-time + - genvalidity-typed-uuid + - genvalidity-unordered-containers + - genvalidity-uuid + - genvalidity-vector + - mergeful + - mergeless + - pretty-relative-time + - safe-coloured-text + - safe-coloured-text-terminfo + - sydtest + - sydtest-discover + - sydtest-persistent + - sydtest-persistent-sqlite + - sydtest-servant + - sydtest-wai + - sydtest-yesod + - typed-uuid + - validity + - validity-aeson + - validity-bytestring + - validity-containers + - validity-path + - validity-persistent + - validity-primitive + - validity-scientific + - validity-text + - validity-time + - validity-unordered-containers + - validity-uuid + - validity-vector + - yamlparse-applicative + + + "Henry Laxen @HenryLaxen": + - bbdb + + "Stevan Andjelkovic @stevana": + - quickcheck-state-machine + + "Sebastian Nagel @ch1bo": + - hdevtools < 0 # compilation failure + - servant-exceptions + - servant-exceptions-server + + "Vaibhav Sagar @vaibhavsagar": + - ihaskell + - ghc-parser + + "Alexis Williams @typedrat": + - stb-image-redux + + "Alexandre Peyroux @apeyroux": + - HSlippyMap + - google-isbn + - nuxeo + + "Andrey Sverdlichenko @rblaze": + - credential-store + - dbus + - re2 + + "Bardur Arantsson @BardurArantsson": + - peregrin + - pg-harness-client + - pg-harness-server + - unliftio-pool + - unliftio-streams + + "Sebastian Graf @sgraf812": + - pomaps + + "Alexey Kotlyarov @koterpillar": + - appendmap + - serverless-haskell + + "Guru Devanla @gdevanla": + - pptable + - cassava-records < 0 # compilation failure MonadFail + - pandoc-markdown-ghci-filter # https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 + + "Lucas David Traverso @ludat": + - map-syntax + - heist + - snap + - conferer + - conferer-snap + - conferer-warp + - conferer-hspec + - conferer-aeson + + "Tim Humphries @thumphries": + - transformers-either + - transformers-fix + + "Dan Firth @locallycompact": + - aeson-with + - binary-instances + - comonad-extras + - compact + - composite-aeson + - composite-aeson-path + - composite-aeson-refined + - composite-aeson-throw + - composite-base + - composite-binary + - composite-ekg + - composite-hashable + - composite-tuple + - composite-xstep + - ixset-typed-binary-instance + - ixset-typed-conversions + - ixset-typed-hashable-instance + - lucid-cdn + - natural-arithmetic + - pandoc-dhall-decoder + - pandoc-throw + - path-binary-instance + - path-dhall-instance + - path-extensions + - path-formatting + - path-like + - path-utils + - polysemy-extra + - polysemy-fs + - polysemy-fskvstore + - polysemy-kvstore-jsonfile + - polysemy-kvstore + - polysemy-methodology + - polysemy-path + - polysemy-several + - polysemy-socket + - polysemy-uncontrolled + - polysemy-video + - polysemy-vinyl + - primitive-offset + - shake-plus + - shake-plus-extended + - simple-media-timestamp + - simple-media-timestamp-formatting + - simple-media-timestamp-attoparsec + - srt + - srt-attoparsec + - srt-dhall + - srt-formatting + - tuples + - unliftio-path + - variable-media-field + - variable-media-field-dhall + - variable-media-field-optics + - vinyl-loeb + - within + - zipper-extra + + "Domen Kozar @domenkozar": + - elm2nix + - mixpanel-client + - netrc + - pretty-sop + - servant-auth + - servant-auth-server + - servant-auth-client + - servant-auth-swagger + - servant-auth-docs + - servant-elm + - systemd + + "Andre Van Der Merwe @andrevdm": + - bhoogle + - hyraxAbif + - postgresql-migration + + "David Millar-Durrant @DavidM-D": + - indexed-list-literals + + "Dmitry Dzhus @dzhus": + - csg + - simple-vec3 + - static-text + - th-env + - th-nowq + + "Dan Fithian @dfithian": + - oauthenticated + - datadog + - interpolator + - file-path-th + + "Raghu Kaippully @rkaippully": + - webgear-server + + "Alex Washburn @recursion-ninja": + - bv-little + - mono-traversable-keys + + "Avi Press @aviaviavi": + - curl-runnings + - cryptocompare + + "Jack Kiefer @JackKiefer": + - herms + + "Sergey Vinokurov @sergv": + - bencoding + - emacs-module < 0 # compilation failure ghc 8.10.1 #5436/closed + - tasty-ant-xml + + "Eugene Smolanka @esmolanka": + - sexp-grammar + - invertible-grammar + + "Maximilian Tagher @MaxGabriel": + - aeson-iproute + - persistent-iproute + + "Damian Nadales @capitanbatata": + - hierarchy + + "Kofi Gumbs @hkgumbs": + - codec-beam + + "Chris Parks @cdparks": + - closed + + "Chris Coffey @ChrisCoffey": + - servant-tracing + - cuckoo-filter + - confcrypt + + "Rick Owens @owensmurray": + - om-elm + + "ALeX Kazik @alexkazik": + - exomizer + - qnap-decrypt + - qrcode-core + - qrcode-juicypixels + + "Reed Oei @ReedOei": + - fuzzy-dates + + "Matthew Farkas-Dyck @strake": + - Fin + - alg + - category + - constraint + - dual + - either-both + - filtrable + - foldable1 + - hs-functors + - lenz + - natural-induction + - peano + - unconstrained + - util + + "Ben Sima @bensima": + - yesod-text-markdown + + "Alexander Krupenkin @akru": + - web3 + + "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": + - can-i-haz + - enum-subset-generate + + "Trevis Elser @telser": + - sendfile + + "Kristen Kozak @grayjay": + - json-rpc-server + - json-rpc-client + + "Magnus Therning @magthe": + - hsini + + "Baojun Wang @wangbj": + - elf + + "Tom Oram @tomphp": + - cfenv + + "Owen Lynch @olynch": + - natural-sort + + "John Biesnecker @biesnecker": + - async-pool + + "Zoltan Kelemen @kelemzol": + - fswatch + + "Matthew Wraith @wraithm": + - prometheus + - prometheus-wai-middleware + - hgrev + - seqid + - seqid-streams + + "Daniel Gorin @jcpetruzza": + - barbies + - data-hash + + "Eduard Sergeev @EduardSergeev": + - monad-memo + + "Wanja Chresta @wchresta": + - matrix-static + + "Jean-Pierre Rupp @xenog": + - json-rpc + - rfc1751 + - murmur3 + - nqe + - secp256k1-haskell + - rocksdb-haskell + - rocksdb-haskell-jprupp + - rocksdb-query + - haskoin-core + - haskoin-node + - haskoin-store + + "asakamirai @asakamirai": + - kazura-queue + + "Eric Torreborre @etorreborre": + - registry + + "Ryota Kameoka @ryota-ka": + - duration + + "Takenobu Tani @takenobu-hs": + - ghci-hexcalc + + "Nikos Karagianndis @nkarag": + - DBFunctor + + "Marat Khafizov @xafizoff": + - n2o + - n2o-nitro + - n2o-protocols + - n2o-web + + "David Smith @shmish111": + - bazel-runfiles + + "Rob Rix @robrix": + - fused-effects + + "Josef Thorne @Grendel-Grendel-Grendel": + - focuslist + + "Pavan Rikhi @prikhi": + - hs-php-session + - wordpress-auth + - servant-auth-wordpress + - ca-province-codes + - mx-state-codes + - sitemap-gen + - tasty-wai + - stack-templatizer + - immortal-queue + - wai-middleware-clacks + - hledger-stockquotes + - bnb-staking-csvs + - solana-staking-csvs + - cointracking-imports + + "David Baynard @dbaynard": + - time-qq + - ucam-webauth + - ucam-webauth-types + + "Erick Gonzalez @codemonkeylabs-de": + - eap + - failable + - ttl-hashtables + - radius + - structured-cli + + "Jan Path @janpath": + - smallcheck-series + + "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": + - oeis2 + + "David Himmelstrup @lemmih": + - chiphunk + - reanimate-svg + - reanimate + - earcut + - vector-circular + # required by reanimate as of 0.4.2.0 + - hgeometry >= 0.12.0.2 + - hgeometry-combinatorial + - approximate-equality # required by hgeometry-combinatorial + - type-level-natural-number # required by approximate-equality + + "Vitaly Bragilevsky @bravit": + - Chart + - Chart-diagrams + + "Juri ChomĂ© @2mol": + - msgpack + - msgpack-rpc + - msgpack-idl + - msgpack-aeson + - int-cast + + "Akihito Kirisaki @kirisaki": + - caster + + "Felix Paulusma @Vlix": + - safe-json + + "Olle Fredriksson @ollef": + - rope-utf16-splay + + "Venkateswara Rao Mandela @vmandela": + - pandoc-csv2table + + "Elben Shira @elben": + - pencil + + "Ivan Malison @IvanMalison": + - ConfigFile + - dbus-hslogger + - gi-cairo-connector + - gi-cairo-render + - gtk-sni-tray + - gtk-strut + - rate-limit + - status-notifier-item + - taffybar + - time-units + - xml-helpers + - xdg-desktop-entry + + "ARATA Mizuki @minoki": + - unboxing-vector + + "Brandon Chinn @brandon-leapyear": + - aeson-schemas + - github-rest + - graphql-client + - hpc-lcov + - th-test-utils + + "Brandon Chinn @brandonchinn178": + - persistent-mtl + - fourmolu + + "Akshay Mankar @akshaymankar": + - jsonpath + + "James Brock @jamesdbrock": + - replace-megaparsec + - replace-attoparsec + + "Robbie McMichael @robbiemcmichael": + - http-client-overrides + + "Ian Graves @igraves": + - monad-resumption + + "Marius Ghita @mhitza": + - minimal-configuration + + "Davit Nalchevanidze @nalchevanidze": + - morpheus-graphql + - morpheus-graphql-core + - morpheus-graphql-client + - morpheus-graphql-subscriptions + - morpheus-graphql-app + + "Satoshi Egi @egisatoshi": + - backtracking + - egison + - mini-egison + - sweet-egison + - egison-pattern-src + - egison-pattern-src-th-mode + + "Travis Cardwell @TravisCardwell": + - literatex + - ttc + + "Jasper Woudenberg @jwoudenberg": + - bugsnag-hs + - junit-xml + - wai-feature-flags + - tasty-test-reporter + - pretty-diff + + "Eric Conlon @ejconlon": + - blanks + - climb + - linenoise + - little-rio + - little-logger + # Maintainership with @23Skidoo + - ekg + - ekg-core + - ekg-json + - ekg-statsd + + "Jorah Gao @gqk007": + - aeson-default + - vformat + - vformat-time + - vformat-aeson + - hkd-default + + "Shintaro Sakata @chemirea": + - utf8-conversions + + "Alessandro Marrella @amarrella": + - kubernetes-webhook-haskell + + "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": + - hpc-codecov + + "Hiromi Ishii @konn": + - equational-reasoning + - ghc-typelits-presburger + - singletons-presburger + - type-natural + - subcategories + - sized + + "Frank Doepper @woffs": + - amqp-utils + - magic + + "Ziyang Liu @zliu41": + - apply-refact + - hadoop-streaming + - indexed-containers + - math-extras + - min-max-pqueue + - multi-containers + + "Vaclav Svejcar @vaclavsvejcar": + - headroom < 0 # https://github.com/commercialhaskell/stackage/issues/6342 + - vcs-ignore + + "Adrian Sieber @ad-si": + - ulid + + "Rickey Visinski @rickeyski": + - slack-api + + "Dobromir Nikolov @dnikolovv": + - it-has + + "Gabriele Sales @gbrsales": + - cabal-appimage + + "Dominik Schrempf @dschrempf": + - circular + - covariance + - dirichlet + - elynx + - elynx-markov + - elynx-nexus + - elynx-seq + - elynx-tools + - elynx-tree + - glasso + - mcmc + - pava + - slynx + - tlynx + + "Eric Rochester @erochest": + - text-regex-replace + + "Masahiro Honma @hiratara": + - string-random + + "Michael B. Gale @mbg": + - c14n + - katip-logstash + - logstash + - monad-logger-logstash + - moss + - wai-rate-limit + - wai-rate-limit-redis + - wai-saml2 + + "Jun Narumi @narumij": + - matrix-as-xyz + - hall-symbols + - symmetry-operations-symbols + + "Hideaki Kawai @kayhide": + - wakame + + "Michael Williams @mlcfp": + - zenacy-html + - zenacy-unicode + + "Maxim Koltsov @maksbotan": + - openapi3 + - servant-openapi3 + + "Song Zhang @HaskellZhangSong": + - derive-topdown + + "NoRedInk ": + - nri-env-parser + - nri-http + - nri-kafka + - nri-observability + - nri-prelude + - nri-postgresql + - nri-redis + - nri-test-encoding + + "Behrang Norouzinia @behrang": + - jalaali + + "Alexander Batischev @Minoru": + - hakyll-convert + + "Edward Nerd @nerded1337": + - zydiskell + + "Alejandro Peralta Bazas @aleperaltabazas": + - hocon + + "Joshua Booth @jnbooth": + - bitwise-enum + + "Shlomo Shuck @sjshuck": + - pcre2 + + "Emil Axelsson <78emil@gmail.com> @emax": + - tree-view + + "Samuel GĂ©lineau @gelisam": + - haskell-awk + - hint + - recursion-schemes + + "Kyriakos Papachrysanthou @3kyro": + - keep-alive + + "Brooklyn Zelenka @expede": + - rescue + + "Artem Pelenitsyn @ulysses4ever": + - alex-meta + - happy-meta + - BNFC-meta + + "Tomasz Maciosowski @t4ccer": + - wai-session-redis + + "Rory Tyler Hayford @ngua": + - ipa + + "Andreas Herrmann @aherrmann": + - capability + + "Dustin Sallings @dustin": + - net-mqtt < 0 # compile fail attoparsec 0.14 + - net-mqtt-lens + + "David A Roberts @davidar": + - streamt + + "Martin Sosic @Martinsos": + - strong-path + + "Arnaud Spiwack @aspiwack": + - linear-base + + "Ollie Charles @ocharles": + - rel8 + + "Grzegorz Milka @gregorias": + - trimdent + + "xmonad ": + - X11 + - xmonad + - xmonad-contrib + + "Marcellus Siegburg @marcellussiegburg": + - call-alloy + + "Rickard Andersson @GoNZooo": + - gotyno-hs + - reddit-scrape + + "James Cranch @jcranch": + - tophat + + "Jan Synacek @jsynacek": + - hpqtypes + - hpqtypes-extras + - fields-json + - log-base + - unjson + + "Daan Leijen @daanx": + - isocline + + "Chase @TotallyNotChase": + - valida + - valida-base + + "Andrew Miller @A1kmm": + - polysemy-webserver + + "Simon Shine @sshine": + - evm-opcodes + + "Francesco Ariis @ffaf1": + - ansi-terminal-game + - lentil + - linebreak + - timers-tick + - unidecode + + "Chris Smith ": + - HMock + - explainable-predicates + + "Tim Emiola @adetokunbo": + - hspec-tmp-proc + - tmp-proc + - wai-middleware-delegate + + "Francisco Vallarino @fjvallarino": + - monomer + - nanovg + + "Grandfathered dependencies": + - snappy + - quicklz + - Boolean + - Decimal + - Diff + - FloatingHex + - GenericPretty + - Glob + - HDBC + - HDBC-session + - HTTP + - HasBigDecimal + - HsOpenSSL + - HsYAML + - JuicyPixels-scale-dct + - MemoTrie + - NumInstances + - Only + - ParsecTools + - QuickCheck + - RSA + - Stream + - aeson-compat + - aeson-extra + - aeson-optics + - alsa-mixer + - ansi-terminal + - appar + - arrows + - asn1-encoding + - asn1-parse + - asn1-types + - assoc + - attoparsec + - auto-update + - base-noprelude + - base64-bytestring + - base64-bytestring-type + - base64-string + - bimap + - bin # req'd by boring + - binary-orphans + - binary-parser + - binary-tagged + - bindings-DSL + - bitarray + - blaze-builder + - blaze-svg + - blaze-textual + - boring + - brick + - buffer-builder + - byte-order + - byteable + - bytestring-builder + - bzlib + - c2hs + - ca-province-codes + - cabal-doctest + - call-stack + - casing + - cassava-megaparsec + - cborg + - cereal + - cereal-text + - cereal-vector + - chunked-data + - cipher-aes128 + - cipher-camellia + - cipher-des + - classy-prelude + - classy-prelude-conduit + - clientsession + - cmark-gfm + - colour + - concurrent-extra + - conduit + - config-ini + - configurator + - constraints-extras + - contravariant-extras + - control-monad-free + - control-monad-omega + - convertible + - cookie + - cpphs + - crypt-sha512 + - crypto-api + - crypto-api-tests + - crypto-cipher-tests + - crypto-cipher-types + - crypto-numbers + - crypto-pubkey + - crypto-random + - cryptohash-cryptoapi + - cryptohash-sha256 + - cryptohash-sha512 + - css-text + - csv + - cubicbezier + - data-binary-ieee754 + - data-bword + - data-checked + - data-clist + - data-default + - data-default-class + - data-default-instances-containers + - data-default-instances-dlist + - data-default-instances-old-locale + - data-dword + - data-endian + - data-inttrie + - data-lens-light + - data-memocombinators + - data-msgpack-types + - data-serializer + - data-textual + - dec + - deepseq-generics + - deferred-folds + - dense-linear-algebra + - deque + - dictionary-sharing + - direct-sqlite + - discount + - dlist + - dlist-instances + - dlist-nonempty + - double-conversion + - dual-tree + - easy-file + - easytest + - ed25519 + - edit-distance + - elm-bridge + - enclosed-exceptions + - entropy + - erf + - errors + - expiring-cache-map + - extensible-exceptions + - fail + - fast-logger + - fast-math + - fib + - file-embed + - file-embed-lzma + - filemanip + - fin + - fingertree + - fmlist + - friendly-time + - functor-classes-compat + - functor-combinators + - generic-arbitrary + - generics-sop-lens + - ghc-byteorder + - ghc-compact + - ghc-paths + - ghc-prof + - github + - groom + - groups + - hackage-security + - hashable + - haskell-gi-overloading + - haskell-lexer + - haskell-lsp-types + - haskell-src-exts + - haxl + - heap + - hex + - hmatrix + - hmatrix-gsl + - hostname + - hourglass + - hsc2hs + - hscolour + - hslogger + - hsp + - hspec-attoparsec + - hspec-contrib + - hspec-expectations + - hspec-expectations-lifted + - hspec-meta + - hspec-smallcheck + - html + - html-entities + - http-client-tls + - http-date + - http-reverse-proxy + - http-types + - http2 + - httpd-shed + - hw-json-simd + - hw-string-parse + - hxt + - hxt-charproperties + - hxt-http + - hxt-regex-xmlschema + - hxt-unicode + - iconv + - ieee754 + - indexed + - infer-license + - insert-ordered-containers + - inspection-testing + - integer-logarithms + - io-streams-haproxy + - ixset-typed + - json + - json-alt + - kleene + - language-haskell-extract + - largeword + - lattices + - lazy-csv + - lazysmallcheck + - libBF + - libyaml + - lifted-async + - lifted-base + - loch-th + - lockfree-queue + - log-base + - logging-facade + - lrucache + - lsp + - lsp-types + - lukko + - lz4 + - lzma + - lzma-clib + - managed + - math-functions + - mersenne-random + - mersenne-random-pure64 + - mfsolve + - microstache + - mmap + - mmorph + - mockery + - monad-control + - monad-logger + - monad-loops + - monad-time + - monads-tf + - mono-traversable-instances + - mono-traversable-keys + - multiset + - mwc-random + - names-th + - nanospec + - nettle + - network + - network-bsd + - network-byte-order + - network-info + - network-ip + - network-run + - network-uri < 2.7.0.0 || > 2.7.0.0 # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. + - newtype + - nicify-lib + - old-locale + - old-time + - one-liner + - operational + - optional-args + - options + - optparse-applicative + - parallel + - path-pieces + - pcg-random + - pipes-bytestring + - pipes-group + - placeholders + - poll + - polyparse + - postgresql-libpq + - postgresql-simple + - postgresql-simple-url + - pretty-hex + - pretty-show + - prettyprinter-convert-ansi-wl-pprint + - primes + - primitive + - primitive-unaligned + - process-extras + - product-isomorphic + - project-template + - protobuf + - pureMD5 + - quickcheck-instances + - quickcheck-io + - quickcheck-simple + - quickcheck-unicode + - ral # req'd by boring + - random + - random-shuffle + - range-set-list + - raw-strings-qq + - readable + - regex-applicative-text + - regex-pcre-builtin + - regex-tdfa-text + - relapse + - relational-schemas + - resolv + - resource-pool + - resourcet + - rfc5051 + - rio + - rio-orphans + - safecopy + - scientific + - securemem + - selective + - semialign + - semialign-indexed + - semialign-optics + - serialise + - servant-client-core + - servant-multipart-client + - servant-swagger-ui + - servant-swagger-ui-core + - servant-swagger-ui-redoc + - servant-yaml + - setenv + - shakespeare + - shell-escape + - silently + - simple-reflect + - simple-sendfile + - singleton-bool + - size-based + - skein + - snap-core + - some + - special-values + - splice + - split + - splitmix + - sql-words + - stateref + - statistics + - step-function + - stm-delay + - storable-complex + - streaming-cassava + - strict + - strict-list + - string-qq + - stringbuilder + - structured + - sundown + - syb + - system-fileio + - system-filepath + - tabular + - tar + - tasty-lua + - tasty-th + - tdigest + - template-haskell-compat-v0208 + - temporary + - temporary-rc + - temporary-resourcet + - test-framework + - test-framework-hunit + - test-framework-quickcheck2 + - test-framework-smallcheck + - test-framework-th + - testing-feat + - testing-type-modifiers + - text-icu + - text-latin1 + - text-postgresql + - text-printer + - text-short + - text-zipper + - tf-random + - th-extras + - th-lift-instances + - th-utilities + - these + - these-lens < 1.0.1 || > 1.0.1 + - these-optics < 1.0.1 || > 1.0.1 + - threads + - thyme + - time-locale-compat + - time-parsers + - timeit + - tls-session-manager + - token-bucket + - tonatona + - transformers-base + - tree-diff + - trivial-constraint + - true-name + - tuple-th + - type-fun + - type-hint + - uglymemo + - unbounded-delays + - unicode-collation + - universe + - universe-base + - universe-dependent-sum + - universe-instances-base + - universe-instances-extended + - universe-instances-trans + - universe-reverse-instances + - universe-some + - unix-time + - url + - utf8-light + - utf8-string + - uuid-types + - vault + - vec + - vector + - vector-algorithms + - vector-binary-instances + - vector-space + - vector-th-unbox + - vty + - wai + - wai-app-static + - wai-conduit + - wai-eventsource + - wai-handler-launch + - wai-logger + - wai-session + - warp + - wcwidth + - with-location + - wizards + - word-wrap + - word8 + - x509 + - x509-store + - x509-system + - x509-validation + - xml + - xml-conduit + - xml-conduit-writer + - xml-hamlet + - xml-types + - xss-sanitize + - yeshql-core + - yeshql-hdbc + - yesod-core + - yesod-form + - yesod-persistent + - zlib + - zlib-bindings + + # If you stop maintaining a package (either just on stackage, or + # completely),you can move it here. It will be disabled if it + # starts causing problems. + # + # See #1056/closed + # + # When disabling one of these packages, move it to "Removed packages". + "Abandoned packages": + - Earley + - bower-json + - boxes + - cassava + - coercible-utils # 6271 + - curl + - first-class-patterns # #5965/closed + - hashing # 6271 + - hnix-store-core # 6271 + - ilist # #5965/closed + - monadlist # 6271 + - non-empty-sequence + - path # 6271 + - pattern-arrows + - relude # #5965/closed + - shellmet # #5965/closed + - slist # #5965/closed + - type-errors-pretty # #5965/closed + - typerep-map # #5965/closed + - validation-selective # #5965/closed + + # moved from ethercrow (#6326) + - charsetdetect-ae + - compiler-warnings + - docopt + - dynamic-state + - io-storage + - oo-prototypes + - opentelemetry + - opentelemetry-extra + - opentelemetry-wai + - opentelemetry-lightstep + - planb-token-introspection + - pointedlist + - unordered-intmap + - word-trie + - xdg-basedir + - yi-rope + # needed for opentelemetry + - ghc-trace-events # @maoe + - numeric-limits # Lennart Augustsson + + # Packages without maintainers that cause issues, + # this is to prevent us from including them by accident. They can + # be removed from this list if they are fixed. + "Unmaintained packages with compilation failures": [] + + # If you want to make sure a package is removed from stackage, + # place it here with a `< 0` constraint and send a pull + # request. This will tell us if other packages would be + # affected. Packages will be kept in this list indefinitely so + # that new packages depending on it will be flagged as well. + "Removed packages": + - PSQueue < 0 # build failure with GHC 8.4 (nowhere to report, it's ancient just let it die) + - Unique < 0 # GHC 8.4 via base-4.11.0.0 + - cli < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - co-log-core < 0 # #5965/closed + - co-log-polysemy < 0 # #5965/closed + - fingertree-psqueue < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - hastache < 0 # GHC 8.4 via base-4.11.0.0 + - heart-core < 0 # deprecated + - hnix < 0 # 6271 + - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 + - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - membrain < 0 # #5965/closed + - preprocessor-tools < 0 # build failure with GHC 8.4 + - present < 0 # 6271 + - prim-array < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - shortcut-links < 0 # #5965/closed + - snap-server < 0 # 6271 + - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 + - tinytemplate < 0 # build failure with GHC 8.4 + - tomland < 0 # #5965/closed + - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 + - wai-route < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - xxhash < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - universe-instances-base < 0 # deprecated + - universe-instances-trans < 0 # deprecated + + "GHC upper bounds": + # Need to always match the version shipped with GHC + - Win32 == 2.10.0.0 + + # Section for packages that have been mass-disabled due to + # compilation failures, e.g. after we upgrade GHC. Every package + # should have a `< 0` constraint. + # + # These constraints can (should?) be moved under the maintainers + # name, but please add a "compile fail" comment to them there so + # it's clear that they must be built if we want to confirm that + # they are working. + "Compilation failures": + - Fin < 0 # `@' not in scope + - HDBC-mysql < 0 + - Spock-core < 0 + - Workflow < 0 + - accuerr < 0 + - aeson-lens < 0 # 0.5.0.0 + - arrow-list < 0 # 0.7.1 + - auto < 0 + - aws-xray-client < 0 + - backprop < 0 + - bencoding < 0 + - binary-ext < 0 + - bins < 0 + - bitcoin-script < 0 + - btrfs < 0 + - bv-little < 0 + - cabal-debian < 0 + - cabal-toolkit < 0 + - chaselev-deque < 0 + - compdata < 0 + - courier < 0 + - cql < 0 + - crypto-numbers < 0 + - cuckoo-filter < 0 # 0.2.0.2 benchmarks are an exe + - derive-topdown < 0 # 0.0.2.2 + - distributed-closure < 0 # 0.4.2.0 + - djinn-ghc < 0 # 0.0.2.3 + - drinkery < 0 # 0.4 + - elm-bridge < 0 # 0.6.1 + - elynx-seq < 0 + - elynx-tools < 0 + - enum-subset-generate < 0 + - essence-of-live-coding-quickcheck < 0 + - etcd < 0 # 1.0.5 + - farmhash < 0 # 0.1.0.5 + - eve < 0 # 0.1.9.0 + - eventsource-store-specs < 0 + - exinst < 0 + - ftp-client-conduit < 0 # 0.5.0.5 + - ginger < 0 # 0.10.2.0 + - giphy-api < 0 # https://github.com/passy/giphy-api/pull/19 + - groundhog-th < 0 # 0.11 + - gluturtle < 0 # 0.0.58.1 + - haskell-import-graph < 0 + - haskell-spacegoo < 0 + - haskoin-node < 0 + - haxl < 0 + - hbeanstalk < 0 + - heterocephalus < 0 + - hexml-lens < 0 + - hexstring < 0 + - hs-functors < 0 + - hschema < 0 + - hstatsd < 0 + - inline-r < 0 + - interpolator < 0 + - io-choice < 0 + - katydid < 0 # 0.4.0.2 MonadFail + - kdt < 0 # 0.2.4 https://github.com/giogadi/kdt/issues/5 + - lens-typelevel < 0 + - llvm-hs < 0 + - llvm-hs-pretty < 0 + - machines-binary < 0 + - machines-io < 0 + - marvin-interpolate < 0 + - mixed-types-num < 0 + - mltool < 0 + - moesocks < 0 + - monad-recorder < 0 + - monad-unlift < 0 + - morpheus-graphql < 0 + - morpheus-graphql-app < 0 + - morpheus-graphql-client < 0 + - morpheus-graphql-core < 0 + - morpheus-graphql-subscriptions < 0 + - murmur < 0 + - n2o-protocols < 0 + - nonempty-containers < 0 + - nvim-hs-contrib < 0 # 2.0.0.0 + - odbc < 0 + - open-witness < 0 + - operational < 0 + - pandoc-markdown-ghci-filter < 0 + - partial-isomorphisms < 0 + - pencil < 0 + - pipes-aeson < 0 + - pipes-binary < 0 + - pipes-network < 0 + - pipes-text < 0 + - pkcs10 < 0 + - planb-token-introspection < 0 + - postgresql-transactional < 0 + - raaz < 0 + - regex-compat-tdfa < 0 + - rhine < 0 + - rose-trees < 0 # compilation seems to hang? + - safe-money < 0 + - sdl2-gfx < 0 + - sdl2-image < 0 + - sdl2-mixer < 0 + - sequence-formats < 0 + - sessiontypes < 0 + - simplistic-generics < 0 + - slack-api < 0 + - squeal-postgresql < 0 + - stm-stats < 0 + - strive < 0 + - sydtest-persistent-sqlite < 0 + - text-region < 0 + - th-data-compat < 0 + - throttle-io-stream < 0 + - throwable-exceptions < 0 + - thyme < 0 + - time-qq < 0 + - timemap < 0 # https://github.com/athanclark/timemap/issues/1 + - tintin < 0 + - tracing-control < 0 + - traverse-with-class < 0 + - turtle-options < 0 + - type-assertions < 0 + - type-map < 0 + - typecheck-plugin-nat-simple < 0 + - ulid < 0 + - uncertain < 0 + - unordered-intmap < 0 + - users-persistent < 0 + - wai-middleware-auth < 0 + - wai-predicates < 0 + - webdriver < 0 + - webex-teams-pipes < 0 + - websockets-rpc < 0 + - word24 < 0 + - xls < 0 + - xml-conduit-parse < 0 + - xml-lens < 0 + - xturtle < 0 + - yeshql-hdbc < 0 + - yesod-auth < 0 # 1.6.10.3 + + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. + # + # This section is meant for libraries and executables that have + # bene disabled due to bounds issues, there is a separate section + # for compilation failures as we need to build those packages to + # verify if they have been fixeq. + "Library and exe bounds failures": + - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* does not support: network-3.1.2.5 + - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* does not support: network-3.1.2.5 + - Chart < 0 # tried Chart-1.9.3, but its *library* requires the disabled package: operational + - Chart-cairo < 0 # tried Chart-cairo-1.9.3, but its *library* requires the disabled package: operational + - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* does not support: SVGFonts-1.8.0.1 + - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* requires the disabled package: operational + - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: biocore + - FPretty < 0 # tried FPretty-1.1, but its *library* does not support: base-4.15.0.0 + - GPipe < 0 # tried GPipe-2.2.5, but its *library* does not support: linear-1.21.8 + - Genbank < 0 # tried Genbank-1.0.3, but its *library* requires the disabled package: biocore + - H < 0 # tried H-0.9.0.1, but its *executable* requires the disabled package: inline-r + - HaskellNet < 0 # tried HaskellNet-0.6, but its *library* does not support: base-4.15.0.0 + - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.3.4.4, but its *library* requires the disabled package: HaskellNet + - Hoed < 0 # tried Hoed-0.5.1, but its *library* requires the disabled package: regex-tdfa-text + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: optparse-applicative-0.16.1.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: IPv6Addr-2.0.3 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: aeson-1.5.6.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: attoparsec-0.14.1 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: hedis-0.15.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: unordered-containers-0.2.15.0 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: attoparsec-0.14.1 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: text-show-3.9.3 + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: Workflow + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: monadloc + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: pwstore-fast + - MapWith < 0 # tried MapWith-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - Network-NineP < 0 # tried Network-NineP-0.4.7.1, but its *library* requires the disabled package: mstate + - NoTrace < 0 # tried NoTrace-0.3.0.4, but its *library* does not support: base-4.15.0.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseBlast-0.3.3.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseFasta-0.4.0.1 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseHTTP-1.2.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseTypes-0.2.1.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: aeson-1.5.6.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: network-3.1.2.5 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: hierarchical-clustering + - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core + - Spock-api-server < 0 # tried Spock-api-server-0.14.0.0, but its *library* requires the disabled package: Spock-core + - Spock-lucid < 0 # tried Spock-lucid-0.4.0.1, but its *library* requires the disabled package: Spock + - Spock-worker < 0 # tried Spock-worker-0.3.1.0, but its *library* requires the disabled package: Spock + - Strafunski-StrategyLib < 0 # tried Strafunski-StrategyLib-5.0.1.0, but its *library* does not support: base-4.15.0.0 + - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: base-4.15.0.0 + - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: lens-5.0.1 + - YampaSynth < 0 # tried YampaSynth-0.2, but its *executable* requires the disabled package: Yampa + - accelerate < 0 # tried accelerate-1.3.0.0, but its *library* does not support: base-4.15.0.0 + - accelerate-arithmetic < 0 # tried accelerate-arithmetic-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-bmp + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-repa + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-vector + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: normaldistribution + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: lens-accelerate + - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* does not support: accelerate-io-1.3.0.0 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* does not support: accelerate-1.3.0.0 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* does not support: containers-0.6.4.1 + - accelerate-io < 0 # tried accelerate-io-1.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-llvm < 0 # tried accelerate-llvm-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-llvm-native < 0 # tried accelerate-llvm-native-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-llvm-ptx < 0 # tried accelerate-llvm-ptx-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-utility < 0 # tried accelerate-utility-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - aern2-mp < 0 # tried aern2-mp-0.2.8.0, but its *library* requires the disabled package: mixed-types-num + - aern2-real < 0 # tried aern2-real-0.2.8.0, but its *library* requires the disabled package: mixed-types-num + - aeson-diff < 0 # tried aeson-diff-1.1.0.9, but its *library* does not support: base-4.15.0.0 + - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: lens-5.0.1 + - aeson-picker < 0 # tried aeson-picker-0.1.0.5, but its *library* does not support: lens-5.0.1 + - aeson-utils < 0 # tried aeson-utils-0.3.0.2, but its *library* does not support: aeson-1.5.6.0 + - aeson-utils < 0 # tried aeson-utils-0.3.0.2, but its *library* does not support: attoparsec-0.14.1 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: base64-bytestring-1.2.1.0 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: bytestring-trie-0.2.6 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: semigroups-0.19.2 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-3.2.3 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-extra-3.1.7 + - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: http-client-0.7.9 + - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: unliftio-core-0.2.0.1 + - amazonka-apigateway < 0 # tried amazonka-apigateway-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-application-autoscaling < 0 # tried amazonka-application-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-appstream < 0 # tried amazonka-appstream-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-athena < 0 # tried amazonka-athena-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-autoscaling < 0 # tried amazonka-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-budgets < 0 # tried amazonka-budgets-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-certificatemanager < 0 # tried amazonka-certificatemanager-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudformation < 0 # tried amazonka-cloudformation-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudfront < 0 # tried amazonka-cloudfront-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudhsm < 0 # tried amazonka-cloudhsm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudsearch < 0 # tried amazonka-cloudsearch-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudsearch-domains < 0 # tried amazonka-cloudsearch-domains-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudtrail < 0 # tried amazonka-cloudtrail-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudwatch < 0 # tried amazonka-cloudwatch-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudwatch-events < 0 # tried amazonka-cloudwatch-events-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cloudwatch-logs < 0 # tried amazonka-cloudwatch-logs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codebuild < 0 # tried amazonka-codebuild-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codecommit < 0 # tried amazonka-codecommit-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codedeploy < 0 # tried amazonka-codedeploy-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-codepipeline < 0 # tried amazonka-codepipeline-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cognito-identity < 0 # tried amazonka-cognito-identity-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cognito-idp < 0 # tried amazonka-cognito-idp-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-cognito-sync < 0 # tried amazonka-cognito-sync-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-config < 0 # tried amazonka-config-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-core < 0 # tried amazonka-core-1.6.1, but its *library* does not support: http-client-0.7.9 + - amazonka-datapipeline < 0 # tried amazonka-datapipeline-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-devicefarm < 0 # tried amazonka-devicefarm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-directconnect < 0 # tried amazonka-directconnect-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-discovery < 0 # tried amazonka-discovery-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-dms < 0 # tried amazonka-dms-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ds < 0 # tried amazonka-ds-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-dynamodb < 0 # tried amazonka-dynamodb-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ecr < 0 # tried amazonka-ecr-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ecs < 0 # tried amazonka-ecs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-efs < 0 # tried amazonka-efs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elasticache < 0 # tried amazonka-elasticache-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elasticbeanstalk < 0 # tried amazonka-elasticbeanstalk-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elasticsearch < 0 # tried amazonka-elasticsearch-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elastictranscoder < 0 # tried amazonka-elastictranscoder-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elb < 0 # tried amazonka-elb-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-elbv2 < 0 # tried amazonka-elbv2-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-emr < 0 # tried amazonka-emr-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-gamelift < 0 # tried amazonka-gamelift-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-glacier < 0 # tried amazonka-glacier-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-glue < 0 # tried amazonka-glue-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-health < 0 # tried amazonka-health-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-iam < 0 # tried amazonka-iam-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-importexport < 0 # tried amazonka-importexport-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-inspector < 0 # tried amazonka-inspector-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-iot < 0 # tried amazonka-iot-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-iot-dataplane < 0 # tried amazonka-iot-dataplane-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kinesis < 0 # tried amazonka-kinesis-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kinesis-analytics < 0 # tried amazonka-kinesis-analytics-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kinesis-firehose < 0 # tried amazonka-kinesis-firehose-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-kms < 0 # tried amazonka-kms-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-lambda < 0 # tried amazonka-lambda-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-lightsail < 0 # tried amazonka-lightsail-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-marketplace-analytics < 0 # tried amazonka-marketplace-analytics-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-marketplace-metering < 0 # tried amazonka-marketplace-metering-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ml < 0 # tried amazonka-ml-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-opsworks < 0 # tried amazonka-opsworks-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-opsworks-cm < 0 # tried amazonka-opsworks-cm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-pinpoint < 0 # tried amazonka-pinpoint-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-polly < 0 # tried amazonka-polly-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-rds < 0 # tried amazonka-rds-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-redshift < 0 # tried amazonka-redshift-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-rekognition < 0 # tried amazonka-rekognition-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-route53 < 0 # tried amazonka-route53-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-route53-domains < 0 # tried amazonka-route53-domains-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-s3 < 0 # tried amazonka-s3-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sdb < 0 # tried amazonka-sdb-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-servicecatalog < 0 # tried amazonka-servicecatalog-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ses < 0 # tried amazonka-ses-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-shield < 0 # tried amazonka-shield-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sms < 0 # tried amazonka-sms-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-snowball < 0 # tried amazonka-snowball-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sns < 0 # tried amazonka-sns-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sqs < 0 # tried amazonka-sqs-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-ssm < 0 # tried amazonka-ssm-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-stepfunctions < 0 # tried amazonka-stepfunctions-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-storagegateway < 0 # tried amazonka-storagegateway-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-sts < 0 # tried amazonka-sts-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-support < 0 # tried amazonka-support-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-swf < 0 # tried amazonka-swf-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-test < 0 # tried amazonka-test-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-waf < 0 # tried amazonka-waf-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-workspaces < 0 # tried amazonka-workspaces-1.6.1, but its *library* requires the disabled package: amazonka-core + - amazonka-xray < 0 # tried amazonka-xray-1.6.1, but its *library* requires the disabled package: amazonka-core + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: ansi-terminal-0.11.1 + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: base-4.15.0.0 + - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-messages < 0 # tried antiope-messages-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-messages < 0 # tried antiope-messages-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka-core + - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka + - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka-core + - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: protolude + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: lens-5.0.1 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: optparse-applicative-0.16.1.0 + - asif < 0 # tried asif-6.0.4, but its *library* requires the disabled package: thyme + - async-timer < 0 # tried async-timer-0.2.0.0, but its *library* does not support: unliftio-core-0.2.0.1 + - atom-conduit < 0 # tried atom-conduit-0.9.0.1, but its *library* requires the disabled package: refined + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: attoparsec-0.14.1 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: base-4.15.0.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: cryptonite-0.29 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: memory-0.16.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: template-haskell-2.17.0.0 + - avers-api < 0 # tried avers-api-0.1.0, but its *library* requires the disabled package: avers + - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: avers + - avwx < 0 # tried avwx-0.3.0.3, but its *library* does not support: lens-5.0.1 + - aws-xray-client-wai < 0 # tried aws-xray-client-wai-0.1.0.1, but its *library* requires the disabled package: aws-xray-client + - axel < 0 # tried axel-0.0.12, but its *library* does not support: base-4.15.0.0 + - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient-universe + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: aeson-1.5.6.0 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: hspec-2.8.5 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: lens-5.0.1 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: shake-0.19.6 + - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: posix-pty + - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: template + - base-noprelude < 0 # tried base-noprelude-4.13.0.0, but its *library* does not support: base-4.15.0.0 + - bcp47 < 0 # tried bcp47-0.2.0.4, but its *library* requires the disabled package: country + - bcp47-orphans < 0 # tried bcp47-orphans-0.1.0.4, but its *library* requires the disabled package: bcp47 + - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: dlist-1.0 + - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: ghc-prim-0.7.0 + - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: vector-sized-1.5.0 + - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: ghc-prim-0.7.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: aeson-1.5.6.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: beam-core-0.9.1.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: hashable-1.3.5.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: mysql-0.2.1 + - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: attoparsec-0.14.1 + - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: attoparsec-0.14.1 + - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: dlist-1.0 + - bench-show < 0 # tried bench-show-0.3.1, but its *library* requires the disabled package: Chart + - bench-show < 0 # tried bench-show-0.3.1, but its *library* requires the disabled package: Chart-diagrams + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: brick-0.65 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: bytestring-0.10.12.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: directory-1.3.6.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: filepath-1.4.2.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: lens-5.0.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: process-1.6.11.0 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: protolude-0.3.0 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: text-1.2.4.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: time-1.9.3 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: typed-process-0.2.8.0 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vector-0.12.3.1 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vty-5.33 + - binary-bits < 0 # tried binary-bits-0.5, but its *library* does not support: base-4.15.0.0 + - bioace < 0 # tried bioace-0.0.1, but its *library* requires the disabled package: biocore + - bioalign < 0 # tried bioalign-0.0.5, but its *library* requires the disabled package: biocore + - biocore < 0 # tried biocore-0.3.1, but its *library* does not support: base-4.15.0.0 + - biocore < 0 # tried biocore-0.3.1, but its *library* requires the disabled package: stringable + - biofasta < 0 # tried biofasta-0.0.3, but its *library* requires the disabled package: biocore + - biofastq < 0 # tried biofastq-0.1, but its *library* requires the disabled package: biocore + - biopsl < 0 # tried biopsl-0.4, but its *library* requires the disabled package: biocore + - bitcoin-api < 0 # tried bitcoin-api-0.12.1, but its *library* requires the disabled package: bitcoin-script + - bitcoin-api < 0 # tried bitcoin-api-0.12.1, but its *library* requires the disabled package: hexstring + - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-api + - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-block + - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-tx + - bitcoin-block < 0 # tried bitcoin-block-0.13.1, but its *library* requires the disabled package: hexstring + - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: bitcoin-script + - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: hexstring + - bitcoin-types < 0 # tried bitcoin-types-0.9.2, but its *library* requires the disabled package: hexstring + - blastxml < 0 # tried blastxml-0.3.2, but its *library* requires the disabled package: biocore + - blosum < 0 # tried blosum-0.1.1.4, but its *executable* requires the disabled package: pipes-text + - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* does not support: base-4.15.0.0 + - boundingboxes < 0 # tried boundingboxes-0.2.3, but its *library* does not support: lens-5.0.1 + - brittany < 0 # tried brittany-0.14.0.0, but its *library* does not support: aeson-1.5.6.0 + - brittany < 0 # tried brittany-0.14.0.0, but its *library* does not support: text-1.2.4.1 + - broadcast-chan < 0 # tried broadcast-chan-0.2.1.1, but its *library* does not support: base-4.15.0.0 + - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: regex-tdfa-text + - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: elliptic-curve + - butcher < 0 # tried butcher-1.3.3.2, but its *library* does not support: base-4.15.0.0 + - cabal-file < 0 # tried cabal-file-0.1.1, but its *library* requires the disabled package: hackage-security + - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: Cabal-3.4.0.0 + - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: base-4.15.0.0 + - cairo < 0 # tried cairo-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - cereal-time < 0 # tried cereal-time-0.1.0.0, but its *library* does not support: time-1.9.3 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: aeson-1.5.6.0 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: aeson-casing-0.2.0.0 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: connection-0.3.1 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-api-data-0.4.3 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-client-0.7.9 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: req-3.9.2 + - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytebuild + - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: byteslice + - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytesmith + - chronos-bench < 0 # tried chronos-bench-0.2.0.2, but its *library* requires the disabled package: chronos + - clang-compilation-database < 0 # tried clang-compilation-database-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: base-4.15.0.0 + - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: template-haskell-2.17.0.0 + - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* does not support: clock-0.8.2 + - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* does not support: cmark-0.6 + - co-log-concurrent < 0 # tried co-log-concurrent-0.5.1.0, but its *library* requires the disabled package: co-log-core + - code-builder < 0 # tried code-builder-0.1.3, but its *library* does not support: containers-0.6.4.1 + - codec < 0 # tried codec-0.2.1, but its *library* requires the disabled package: binary-bits + - colour-accelerate < 0 # tried colour-accelerate-0.4.0.0, but its *library* requires the disabled package: accelerate + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: generic-deriving-1.14.1 + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: profunctors-5.6.2 + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: template-haskell-2.17.0.0 + - composite-aeson-path < 0 # tried composite-aeson-path-0.7.5.0, but its *library* does not support: path-0.9.1 + - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: composite-aeson + - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: refined + - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: composite-aeson + - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: profunctors-5.6.2 + - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: template-haskell-2.17.0.0 + - composite-binary < 0 # tried composite-binary-0.7.5.0, but its *library* requires the disabled package: composite-base + - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* requires the disabled package: composite-base + - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* requires the disabled package: ekg-core + - composite-hashable < 0 # tried composite-hashable-0.7.5.0, but its *library* requires the disabled package: composite-base + - composite-tuple < 0 # tried composite-tuple-0.1.2.0, but its *library* requires the disabled package: composite-base + - composite-xstep < 0 # tried composite-xstep-0.1.0.0, but its *library* requires the disabled package: composite-base + - compressed < 0 # tried compressed-3.11, but its *library* does not support: containers-0.6.4.1 + - compressed < 0 # tried compressed-3.11, but its *library* does not support: hashable-1.3.5.0 + - conduit-throttle < 0 # tried conduit-throttle-0.3.1.0, but its *library* requires the disabled package: throttle-io-stream + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* does not support: optparse-applicative-0.16.1.0 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires the disabled package: crypto-pubkey-openssh + - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* does not support: hspec-core-2.8.5 + - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* does not support: conferer-1.1.0.0 + - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* requires the disabled package: snap-server + - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: base-4.15.0.0 + - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: megaparsec-9.2.0 + - country < 0 # tried country-0.2.1, but its *library* does not support: attoparsec-0.14.1 + - country < 0 # tried country-0.2.1, but its *library* does not support: base-4.15.0.0 + - cql-io < 0 # tried cql-io-1.1.1, but its *library* requires the disabled package: cql + - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-numbers + - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-blowfish + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: QuickCheck-2.14.2 + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: attoparsec-0.14.1 + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: simple-vec3-0.6.0.1 + - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: strict-0.4.0.1 + - css-syntax < 0 # tried css-syntax-0.1.0.0, but its *library* does not support: base-4.15.0.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: Cabal-3.4.0.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: attoparsec-0.14.1 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: base-4.15.0.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: constraints-0.13.2 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: cryptonite-0.29 + - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: memory-0.16.0 + - darcs < 0 # tried darcs-2.16.4, but its *library* requires the disabled package: regex-compat-tdfa + - data-accessor-template < 0 # tried data-accessor-template-0.2.1.16, but its *library* does not support: template-haskell-2.17.0.0 + - data-compat < 0 # tried data-compat-0.1.0.3, but its *library* does not support: base-4.15.0.0 + - data-tree-print < 0 # tried data-tree-print-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - decidable < 0 # tried decidable-0.3.0.0, but its *library* requires the disabled package: functor-products + - deepseq-instances < 0 # tried deepseq-instances-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - dependent-map < 0 # tried dependent-map-0.4.0.0, but its *library* requires the disabled package: dependent-sum + - dependent-sum < 0 # tried dependent-sum-0.7.1.0, but its *library* does not support: some-1.0.3 + - dependent-sum-template < 0 # tried dependent-sum-template-0.1.1.1, but its *library* requires the disabled package: dependent-sum + - detour-via-sci < 0 # tried detour-via-sci-1.0.0, but its *library* requires the disabled package: newtype + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.0.17, but its *library* requires the disabled package: haskell-lsp + - dhall-nix < 0 # tried dhall-nix-1.1.23, but its *library* requires the disabled package: hnix + - diagrams-builder < 0 # tried diagrams-builder-0.8.0.5, but its *library* requires the disabled package: haskell-src-exts-simple + - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* requires the disabled package: statestack + - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: blank-canvas + - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: statestack + - diagrams-gtk < 0 # tried diagrams-gtk-1.4, but its *library* requires the disabled package: gtk + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: base-4.15.0.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: containers-0.6.4.1 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: diagrams-core-1.5.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: lens-5.0.1 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: optparse-applicative-0.16.1.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: statestack + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: static-canvas + - diagrams-postscript < 0 # tried diagrams-postscript-1.5, but its *library* requires the disabled package: statestack + - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* does not support: base-4.15.0.0 + - dice < 0 # tried dice-0.1.0.1, but its *library* requires the disabled package: random-fu + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* does not support: criterion-1.5.11.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: attoparsec-0.14.1 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: base-4.15.0.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: containers-0.6.4.1 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: exceptions-0.10.4 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: time-1.9.3 + - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* does not support: Cabal-3.4.0.0 + - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires the disabled package: cabal-toolkit + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: containers-0.6.4.1 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: hashable-1.3.5.0 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: random-1.2.1 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: stm-2.5.0.0 + - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires the disabled package: distributed-process + - distributed-process-monad-control < 0 # tried distributed-process-monad-control-0.5.1.3, but its *library* requires the disabled package: distributed-process + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: containers-0.6.4.1 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-3.1.2.5 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-transport-tcp-0.8.0 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* requires the disabled package: network-multicast + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: network-3.1.2.5 + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: random-1.2.1 + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* requires the disabled package: rematch + - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: containers-0.6.4.1 + - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: random-1.2.1 + - diversity < 0 # tried diversity-0.8.1.0, but its *library* requires the disabled package: fasta + - docker < 0 # tried docker-0.6.0.6, but its *library* does not support: unliftio-core-0.2.0.1 + - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* does not support: language-docker-10.4.0 + - dom-parser < 0 # tried dom-parser-3.1.0, but its *library* requires the disabled package: xml-lens + - drawille < 0 # tried drawille-0.1.2.0, but its *library* does not support: containers-0.6.4.1 + - earcut < 0 # tried earcut-0.1.0.4, but its *library* does not support: base-4.15.0.0 + - easytest < 0 # tried easytest-0.3, but its *library* does not support: hedgehog-1.0.5 + - ed25519 < 0 # tried ed25519-0.0.5.0, but its *library* does not support: ghc-prim-0.7.0 + - edit < 0 # tried edit-1.0.1.0, but its *library* does not support: QuickCheck-2.14.2 + - edit < 0 # tried edit-1.0.1.0, but its *library* does not support: base-4.15.0.0 + - effect-handlers < 0 # tried effect-handlers-0.1.0.8, but its *library* does not support: free-5.1.7 + - egison < 0 # tried egison-4.1.2, but its *library* requires the disabled package: sweet-egison + - egison-pattern-src < 0 # tried egison-pattern-src-0.2.1.2, but its *library* does not support: parser-combinators-1.3.0 + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* does not support: template-haskell-2.17.0.0 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* does not support: base-4.15.0.0 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires the disabled package: snap-server + - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: amazonka + - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: amazonka-core + - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: ekg-core + - ekg-core < 0 # tried ekg-core-0.1.1.7, but its *library* does not support: base-4.15.0.0 + - ekg-core < 0 # tried ekg-core-0.1.1.7, but its *library* does not support: ghc-prim-0.7.0 + - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* does not support: base-4.15.0.0 + - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* does not support: base-4.15.0.0 + - ekg-wai < 0 # tried ekg-wai-0.1.0.3, but its *library* does not support: time-1.9.3 + - elm-street < 0 # tried elm-street-0.1.0.4, but its *library* does not support: base-4.15.0.0 + - elynx < 0 # tried elynx-0.6.1.0, but its *executable* requires the disabled package: elynx-tools + - elynx-markov < 0 # tried elynx-markov-0.6.1.0, but its *library* requires the disabled package: elynx-seq + - emd < 0 # tried emd-0.2.0.0, but its *library* requires the disabled package: typelits-witnesses + - epub-metadata < 0 # tried epub-metadata-4.5, but its *library* requires the disabled package: regex-compat-tdfa + - euler-tour-tree < 0 # tried euler-tour-tree-0.1.1.0, but its *library* requires the disabled package: Unique + - event < 0 # tried event-0.1.4, but its *library* does not support: containers-0.6.4.1 + - event < 0 # tried event-0.1.4, but its *library* does not support: semigroups-0.19.2 + - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: amazonka + - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-sql-common + - eventful-sql-common < 0 # tried eventful-sql-common-0.2.0, but its *library* does not support: persistent-template-2.12.0.0 + - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-sql-common + - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-store-specs + - exception-hierarchy < 0 # tried exception-hierarchy-0.1.0.4, but its *library* does not support: template-haskell-2.17.0.0 + - fasta < 0 # tried fasta-0.10.4.2, but its *library* requires the disabled package: pipes-text + - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude + - filecache < 0 # tried filecache-0.4.1, but its *library* requires the disabled package: strict-base-types + - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: BiobaseNewick + - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: hierarchical-clustering + - freer-simple < 0 # tried freer-simple-1.2.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - friday < 0 # tried friday-0.2.3.1, but its *library* does not support: containers-0.6.4.1 + - friday < 0 # tried friday-0.2.3.1, but its *library* requires the disabled package: ratio-int + - friday-juicypixels < 0 # tried friday-juicypixels-0.1.2.4, but its *library* requires the disabled package: friday + - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: base-4.15.0.0 + - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: haskeline-0.8.2 + - ftp-client < 0 # tried ftp-client-0.5.1.4, but its *library* does not support: attoparsec-0.14.1 + - functor-combinators < 0 # tried functor-combinators-0.4.1.0, but its *library* requires the disabled package: nonempty-containers + - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: poly-0.5.0.0 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: protolude-0.3.0 + - gdax < 0 # tried gdax-0.6.0.0, but its *library* requires the disabled package: regex-tdfa-text + - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: base-4.15.0.0 + - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: generic-deriving-1.14.1 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: dhall-1.40.2 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: ghc-9.0.1 + - ghc-syb-utils < 0 # tried ghc-syb-utils-0.3.0.0, but its *library* does not support: ghc-9.0.1 + - ghcjs-dom < 0 # tried ghcjs-dom-0.9.4.0, but its *library* requires the disabled package: ghcjs-dom-jsaddle + - gi-gsk < 0 # tried gi-gsk-4.0.4, but its *library* does not support: gi-gdk-3.0.25 + - gi-webkit2 < 0 # tried gi-webkit2-4.0.28, but its *library* requires the disabled package: gi-soup + - gingersnap < 0 # tried gingersnap-0.3.1.0, but its *library* requires the disabled package: snap-core + - gio < 0 # tried gio-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: IfElse + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: aws + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: bloomfilter + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: fdo-notify + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: git-lfs + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: http-client-restricted + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: network-multicast + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: sandi + - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: torrent + - git-vogue < 0 # tried git-vogue-0.3.0.2, but its *executable* requires the disabled package: stylish-haskell + - github-webhook-handler < 0 # tried github-webhook-handler-0.0.8, but its *library* does not support: base-4.15.0.0 + - github-webhook-handler-snap < 0 # tried github-webhook-handler-snap-0.0.7, but its *library* does not support: base-4.15.0.0 + - gitlib-libgit2 < 0 # tried gitlib-libgit2-3.1.2.1, but its *library* requires the disabled package: gitlib + - glaze < 0 # tried glaze-0.3.0.1, but its *library* does not support: lens-5.0.1 + - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: glazier + - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: glazier + - glib < 0 # tried glib-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate + - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: linear-accelerate + - gloss-examples < 0 # tried gloss-examples-1.13.0.3, but its *executable* does not support: random-1.2.1 + - gloss-raster-accelerate < 0 # tried gloss-raster-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate + - google-cloud < 0 # tried google-cloud-0.0.4, but its *library* does not support: base-4.15.0.0 + - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* does not support: base64-bytestring-1.2.1.0 + - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-api-data-0.4.3 + - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-client-0.7.9 + - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: path-0.9.1 + - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires the disabled package: groundhog-th + - groundhog-mysql < 0 # tried groundhog-mysql-0.11, but its *library* does not support: mysql-0.2.1 + - grouped-list < 0 # tried grouped-list-0.2.2.1, but its *library* does not support: base-4.15.0.0 + - gtk3 < 0 # tried gtk3-0.15.6, but its *library* does not support: Cabal-3.4.0.0 + - hOpenPGP < 0 # tried hOpenPGP-2.9.7, but its *library* requires the disabled package: ixset-typed + - hackage-security < 0 # tried hackage-security-0.6.0.1, but its *library* does not support: template-haskell-2.17.0.0 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: http-client-0.7.9 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-0.18.3 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-client-0.18.3 + - hadolint < 0 # tried hadolint-2.8.0, but its *library* does not support: deepseq-1.4.5.0 + - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: colourista + - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: spdx + - hamilton < 0 # tried hamilton-0.1.0.3, but its *library* requires the disabled package: typelits-witnesses + - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *library* does not support: path-0.9.1 + - happstack-hsp < 0 # tried happstack-hsp-7.3.7.5, but its *library* requires the disabled package: harp + - haskell-lsp < 0 # tried haskell-lsp-0.24.0.0, but its *executable* does not support: base-4.15.0.0 + - haskell-lsp-client < 0 # tried haskell-lsp-client-1.0.0.1, but its *library* requires the disabled package: haskell-lsp + - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires the disabled package: traverse-with-class + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: ghc-boot-th-9.0.1 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: Glob-0.10.2 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: optparse-applicative-0.16.1.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: strict-0.4.0.1 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: Cabal-3.4.0.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: Diff-0.4.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: network-3.1.2.5 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: optparse-applicative-0.16.1.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: strict-0.4.0.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: warp-3.3.18 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: Cabal-3.4.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* does not support: base-4.15.0.0 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires the disabled package: references + - haskey < 0 # tried haskey-0.3.1.0, but its *library* does not support: stm-containers-1.2 + - haskey-mtl < 0 # tried haskey-mtl-0.3.1.0, but its *library* does not support: monad-control-1.0.3.1 + - haskoin-store < 0 # tried haskoin-store-0.61.0, but its *library* requires the disabled package: haskoin-node + - haskoin-store < 0 # tried haskoin-store-0.61.0, but its *library* requires the disabled package: haskoin-store-data + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* does not support: optparse-applicative-0.16.1.0 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* does not support: attoparsec-0.14.1 + - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: haxl + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: aeson-1.5.6.0 + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: attoparsec-0.14.1 + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: base-4.15.0.0 + - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: dlist-1.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: ansi-terminal-0.11.1 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: brick-0.65 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: optparse-applicative-0.16.1.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: semigroups-0.19.2 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: vty-5.33 + - hgeometry < 0 # tried hgeometry-0.13, but its *library* requires the disabled package: vector-circular + - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.13, but its *library* requires the disabled package: vector-circular + - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: base-4.15.0.0 + - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: template-haskell-2.17.0.0 + - hidden-char < 0 # tried hidden-char-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* does not support: base-4.15.0.0 + - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: swagger2 + - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: swagger2 + - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart + - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart-diagrams + - hit < 0 # tried hit-0.7.0, but its *executable* requires the disabled package: git + - hmatrix-backprop < 0 # tried hmatrix-backprop-0.1.3.0, but its *library* requires the disabled package: backprop + - hmpfr < 0 # tried hmpfr-0.4.4, but its *library* does not support: integer-gmp-1.1 + - holy-project < 0 # tried holy-project-0.2.0.1, but its *library* requires the disabled package: hastache + - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.6, but its *executable* requires the disabled package: ixset-typed + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: aeson-1.5.6.0 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: containers-0.6.4.1 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: retry-0.9.0.0 + - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: path-0.9.1 + - hpio < 0 # tried hpio-0.9.0.7, but its *executable* does not support: optparse-applicative-0.16.1.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: QuickCheck-2.14.2 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: protolude-0.3.0 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: containers-0.6.4.1 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: hmatrix-0.20.2 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: statistics-0.15.2.0 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: time-1.9.3 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: vector-algorithms-0.8.0.4 + - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* requires the disabled package: hmatrix-special + - hquantlib-time < 0 # tried hquantlib-time-0.0.4.1, but its *library* does not support: time-1.9.3 + - hsb2hs < 0 # tried hsb2hs-0.3.1, but its *executable* requires the disabled package: preprocessor-tools + - hschema-aeson < 0 # tried hschema-aeson-0.0.1.1, but its *library* requires the disabled package: hschema + - hschema-prettyprinter < 0 # tried hschema-prettyprinter-0.0.1.1, but its *library* requires the disabled package: hschema + - hschema-quickcheck < 0 # tried hschema-quickcheck-0.0.1.1, but its *library* requires the disabled package: hschema + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: attoparsec-0.14.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-boot-9.0.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-lib-parser-9.0.1.20210324 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: hlint-3.3.4 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: http-client-0.7.9 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: lens-5.0.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: optparse-applicative-0.16.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: template-haskell-2.17.0.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires the disabled package: text-region + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: base-4.15.0.0 + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: hspec-core-2.8.5 + - hspec-wai-json < 0 # tried hspec-wai-json-0.11.0, but its *library* does not support: hspec-wai-0.11.1 + - hspec-webdriver < 0 # tried hspec-webdriver-1.2.0, but its *library* requires the disabled package: webdriver + - hsx2hs < 0 # tried hsx2hs-0.14.1.8, but its *library* does not support: template-haskell-2.17.0.0 + - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.0, but its *library* does not support: hspec-2.8.5 + - hxt-pickle-utils < 0 # tried hxt-pickle-utils-0.1.0.3, but its *library* does not support: base-4.15.0.0 + - hyraxAbif < 0 # tried hyraxAbif-0.2.3.27, but its *library* requires the disabled package: protolude + - idris < 0 # tried idris-1.3.4, but its *library* does not support: Cabal-3.4.0.0 + - idris < 0 # tried idris-1.3.4, but its *library* does not support: network-3.1.2.5 + - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: hse-cpp + - indentation-core < 0 # tried indentation-core-0.0.0.2, but its *library* does not support: base-4.15.0.0 + - indentation-parsec < 0 # tried indentation-parsec-0.0.0.2, but its *library* does not support: base-4.15.0.0 + - inline-java < 0 # tried inline-java-0.10.0, but its *library* does not support: ghc-9.0.1 + - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires the disabled package: jni + - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - invertible < 0 # tried invertible-0.2.0.7, but its *library* requires the disabled package: partial-isomorphisms + - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: attoparsec-0.14.1 + - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: base-4.15.0.0 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: attoparsec-0.14.1 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: network-3.1.2.5 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: path-0.9.1 + - it-has < 0 # tried it-has-0.2.0.0, but its *library* does not support: generic-lens-2.2.0.0 + - ixset < 0 # tried ixset-1.1.1.1, but its *library* requires the disabled package: syb-with-class + - ixset-typed < 0 # tried ixset-typed-0.5, but its *library* does not support: template-haskell-2.17.0.0 + - ixset-typed-binary-instance < 0 # tried ixset-typed-binary-instance-0.1.0.2, but its *library* requires the disabled package: ixset-typed + - ixset-typed-conversions < 0 # tried ixset-typed-conversions-0.1.2.0, but its *library* requires the disabled package: ixset-typed + - ixset-typed-hashable-instance < 0 # tried ixset-typed-hashable-instance-0.1.0.2, but its *library* requires the disabled package: ixset-typed + - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: snap-core + - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: attoparsec-0.14.1 + - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: ref-tf-0.5.0.1 + - json-alt < 0 # tried json-alt-1.0.0, but its *library* does not support: aeson-1.5.6.0 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: aeson-1.5.6.0 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: lens-5.0.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: smallcheck-1.2.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires the disabled package: run-haskell-module + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* does not support: aeson-1.5.6.0 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* does not support: base-4.15.0.0 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* does not support: base-4.15.0.0 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: aeson-1.5.6.0 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: base-compat-batteries-0.11.2 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: containers-0.6.4.1 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: generic-deriving-1.14.1 + - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: time-1.9.3 + - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: distributed-closure + - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: jni + - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: distributed-closure + - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: jni + - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: distributed-closure + - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: jni + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: aeson-1.5.6.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: async-2.2.4 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: katip-0.8.7.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: rollbar-hs-0.3.1.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: time-1.9.3 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: aeson-1.5.6.0 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: katip-0.8.7.0 + - ki < 0 # tried ki-0.2.0.1, but its *library* does not support: base-4.15.0.0 + - kleene < 0 # tried kleene-0.1, but its *library* does not support: base-4.15.0.0 + - kraken < 0 # tried kraken-0.1.0, but its *library* does not support: base-4.15.0.0 + - lambdabot-core < 0 # tried lambdabot-core-5.3.0.2, but its *library* requires the disabled package: dependent-sum + - lambdabot-irc-plugins < 0 # tried lambdabot-irc-plugins-5.3.0.2, but its *library* requires the disabled package: lambdabot-core + - language-ecmascript < 0 # tried language-ecmascript-0.19.1.0, but its *library* does not support: base-4.15.0.0 + - language-haskell-extract < 0 # tried language-haskell-extract-0.2.4, but its *library* does not support: template-haskell-2.17.0.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: base16-bytestring-1.0.2.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: formatting-7.1.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: lens-5.0.1 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: megaparsec-9.2.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: memory-0.16.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-0.18.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-client-0.18.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* requires the disabled package: operational + - large-hashable < 0 # tried large-hashable-0.1.0.4, but its *library* does not support: template-haskell-2.17.0.0 + - lens-accelerate < 0 # tried lens-accelerate-0.3.0.0, but its *library* does not support: lens-5.0.1 + - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* does not support: lens-5.0.1 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* does not support: lens-family-2.1.1 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* does not support: lens-family-core-2.1.0 + - lenz < 0 # tried lenz-0.4.2.0, but its *library* requires the disabled package: hs-functors + - libinfluxdb < 0 # tried libinfluxdb-0.0.4, but its *library* does not support: base-4.15.0.0 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* does not support: base-4.15.0.0 + - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg + - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg-core + - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: protolude + - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: Cabal-3.4.0.0 + - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: base-4.15.0.0 + - linear-accelerate < 0 # tried linear-accelerate-0.7.0.0, but its *library* does not support: lens-5.0.1 + - linked-list-with-iterator < 0 # tried linked-list-with-iterator-0.1.1.0, but its *library* does not support: containers-0.6.4.1 + - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* does not support: megaparsec-9.2.0 + - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires the disabled package: rest-rewrite + - list-witnesses < 0 # tried list-witnesses-0.1.3.2, but its *library* requires the disabled package: functor-products + - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log + - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log-core + - loc < 0 # tried loc-0.1.3.10, but its *library* does not support: base-4.15.0.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: aeson-1.5.6.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: o-clock-1.2.1 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: universum-1.7.2 + - logger-thread < 0 # tried logger-thread-0.1.0.2, but its *library* requires the disabled package: protolude + - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: base-4.15.0.0 + - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: prettyprinter-1.7.1 + - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* requires the disabled package: logging-effect + - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* does not support: base-4.15.0.0 + - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* does not support: prettyprinter-1.7.1 + - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* requires the disabled package: logging-effect + - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: base-4.15.0.0 + - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: prettyprinter-1.7.1 + - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* requires the disabled package: logging-effect + - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* does not support: ghc-9.0.1 + - lsp < 0 # tried lsp-1.2.0.1, but its *library* requires the disabled package: dependent-map + - lsp < 0 # tried lsp-1.2.0.1, but its *library* requires the disabled package: lsp-types + - lsp-test < 0 # tried lsp-test-0.14.0.1, but its *library* requires the disabled package: lsp-types + - lsp-types < 0 # tried lsp-types-1.3.0.1, but its *library* requires the disabled package: dependent-sum + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: network-3.1.2.5 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-0.18.3 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-client-0.18.3 + - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires the disabled package: machines-io + - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-core + - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-wai + - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: refined + - makefile < 0 # tried makefile-1.1.0.0, but its *library* does not support: attoparsec-0.14.1 + - mallard < 0 # tried mallard-0.6.1.1, but its *library* does not support: megaparsec-9.2.0 + - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires the disabled package: Interpolation + - map-syntax < 0 # tried map-syntax-0.3, but its *library* does not support: base-4.15.0.0 + - markup < 0 # tried markup-4.2.0, but its *library* requires the disabled package: attoparsec-uri + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: aeson-1.5.6.0 + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: http-client-0.7.9 + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: lens-5.0.1 + - marvin < 0 # tried marvin-0.2.5, but its *library* requires the disabled package: marvin-interpolate + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: extra-1.7.10 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: formatting-7.1.3 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: http-client-0.7.9 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: optparse-applicative-0.16.1.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: scalpel-core-0.6.2 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: time-1.9.3 + - medea < 0 # tried medea-1.2.0, but its *library* requires the disabled package: nonempty-containers + - mega-sdist < 0 # tried mega-sdist-0.4.1.0, but its *executable* requires the disabled package: pantry + - menshen < 0 # tried menshen-0.0.3, but its *library* does not support: regex-tdfa-1.3.1.1 + - merkle-tree < 0 # tried merkle-tree-0.1.1, but its *library* requires the disabled package: protolude + - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* does not support: containers-0.6.4.1 + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime-wai + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *library* requires the disabled package: xml-lens + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-client-0.7.9 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-media-0.8.0.0 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-0.18.3 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-client-0.18.3 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: time-1.9.3 + - midi-music-box < 0 # tried midi-music-box-0.0.1.2, but its *executable* requires the disabled package: diagrams-postscript + - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src + - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src-th-mode + - minio-hs < 0 # tried minio-hs-1.5.3, but its *library* requires the disabled package: protolude + - misfortune < 0 # tried misfortune-0.1.1.2, but its *library* requires the disabled package: knob + - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *executable* requires the disabled package: pipes-text + - mole < 0 # tried mole-0.0.7, but its *executable* does not support: base-4.15.0.0 + - mole < 0 # tried mole-0.0.7, but its *executable* requires the disabled package: snap-server + - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: base-4.15.0.0 + - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: mwc-random-0.15.0.2 + - monad-metrics < 0 # tried monad-metrics-0.2.2.0, but its *library* requires the disabled package: ekg-core + - monad-mock < 0 # tried monad-mock-0.2.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - monad-unlift-ref < 0 # tried monad-unlift-ref-0.2.1, but its *library* requires the disabled package: monad-unlift + - monoidal-containers < 0 # tried monoidal-containers-0.6.1.0, but its *library* requires the disabled package: newtype + - msgpack < 0 # tried msgpack-1.0.1.0, but its *library* does not support: base-4.15.0.0 + - msgpack-aeson < 0 # tried msgpack-aeson-0.1.0.0, but its *library* requires the disabled package: msgpack + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: blaze-builder-0.4.2.2 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: filepath-1.4.2.1 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: msgpack-1.0.1.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: template-haskell-2.17.0.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires the disabled package: peggy + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires the disabled package: shakespeare-text + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: base-4.15.0.0 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: binary-conduit-1.3.1 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-1.3.4.2 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-extra-1.3.5 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: network-3.1.2.5 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: random-1.2.1 + - multistate < 0 # tried multistate-0.8.0.3, but its *library* does not support: base-4.15.0.0 + - mwc-random-accelerate < 0 # tried mwc-random-accelerate-0.2.0.0, but its *library* requires the disabled package: accelerate + - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* does not support: memory-0.16.0 + - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* requires the disabled package: word24 + - mysql-haskell-nem < 0 # tried mysql-haskell-nem-0.1.0.0, but its *library* requires the disabled package: mysql-haskell + - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: mysql-haskell + - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: tcp-streams-openssl + - n-tuple < 0 # tried n-tuple-0.0.2.0, but its *library* does not support: base-4.15.0.0 + - n-tuple < 0 # tried n-tuple-0.0.2.0, but its *library* does not support: singletons-3.0.1 + - n2o-web < 0 # tried n2o-web-0.11.2, but its *library* requires the disabled package: n2o-protocols + - nakadi-client < 0 # tried nakadi-client-0.7.0.0, but its *library* requires the disabled package: async-timer + - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* does not support: base-4.15.0.0 + - net-mqtt-lens < 0 # tried net-mqtt-lens-0.1.1.0, but its *library* requires the disabled package: net-mqtt + - netrc < 0 # tried netrc-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: hexstring + - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: network-attoparsec + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* does not support: network-3.1.2.5 + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires the disabled package: data-default-instances-base + - network-transport-inmemory < 0 # tried network-transport-inmemory-0.5.2, but its *library* does not support: containers-0.6.4.1 + - newtype < 0 # tried newtype-0.2.2.0, but its *library* does not support: base-4.15.0.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.1, but its *library* requires the disabled package: servant-auth-server + - numhask-prelude < 0 # tried numhask-prelude-0.5.0, but its *library* does not support: numhask-0.8.1.0 + - nvim-hs-ghcid < 0 # tried nvim-hs-ghcid-2.0.0.0, but its *library* requires the disabled package: nvim-hs-contrib + - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: protolude + - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: Cabal-3.4.0.0 + - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: base-4.15.0.0 + - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - operational-class < 0 # tried operational-class-0.3.0.0, but its *library* requires the disabled package: operational + - opml-conduit < 0 # tried opml-conduit-0.9.0.0, but its *library* requires the disabled package: refined + - oset < 0 # tried oset-0.4.0.1, but its *library* does not support: base-4.15.0.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* does not support: Cabal-3.4.0.0 + - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: groups-0.5.3 + - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: protolude-0.3.0 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires the disabled package: elliptic-curve + - pango < 0 # tried pango-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 + - pantry < 0 # tried pantry-0.5.3, but its *library* requires the disabled package: hackage-security + - papillon < 0 # tried papillon-0.1.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* does not support: parser-combinators-1.3.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.1.8, but its *library* does not support: path-0.9.1 + - pcf-font-embed < 0 # tried pcf-font-embed-0.1.2.0, but its *library* requires the disabled package: pcf-font + - pedersen-commitment < 0 # tried pedersen-commitment-0.2.0, but its *library* requires the disabled package: protolude + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* does not support: base-4.15.0.0 + - persistable-record < 0 # tried persistable-record-0.6.0.5, but its *library* requires the disabled package: th-data-compat + - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: persistable-record + - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: relational-query-HDBC + - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* does not support: tls-1.5.5 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: random-1.2.1 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: scotty-0.12 + - picedit < 0 # tried picedit-0.2.3.0, but its *executable* requires the disabled package: cli + - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: JuicyPixels-3.3.6 + - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: hmatrix-0.20.2 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: Cabal-3.4.0.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: aeson-1.5.6.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: base-4.15.0.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: binary-orphans-1.0.2 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: containers-0.6.4.1 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: hashable-1.3.5.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: shake-0.19.6 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: yaml-0.11.7.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: Cabal-3.4.0.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: containers-0.6.4.1 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: hashable-1.3.5.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: http-client-0.7.9 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: shake-0.19.6 + - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: http-client-0.7.9 + - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* does not support: lens-5.0.1 + - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires the disabled package: pipes-category + - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: pipes-network + - pixelated-avatar-generator < 0 # tried pixelated-avatar-generator-0.1.3, but its *executable* requires the disabled package: cli + - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: cairo + - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: pango + - pointful < 0 # tried pointful-1.1.0.0, but its *library* does not support: base-4.15.0.0 + - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires the disabled package: haskell-src-exts-simple + - polysemy-zoo < 0 # tried polysemy-zoo-0.7.0.2, but its *library* does not support: constraints-0.13.2 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: base-4.15.0.0 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: ghc-prim-0.7.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: base-4.15.0.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: retry-0.9.0.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: swagger2-2.7 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* requires the disabled package: hasql-dynamic-statements + - prairie < 0 # tried prairie-0.0.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - pred-set < 0 # tried pred-set-0.0.1, but its *library* requires the disabled package: HSet + - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: pred-set + - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: tries + - prim-uniq < 0 # tried prim-uniq-0.2, but its *library* requires the disabled package: dependent-sum + - product-isomorphic < 0 # tried product-isomorphic-0.0.3.3, but its *library* requires the disabled package: th-data-compat + - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: base-4.15.0.0 + - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: ghc-prim-0.7.0 + - publicsuffix < 0 # tried publicsuffix-0.20200526, but its *library* does not support: base-4.15.0.0 + - pure-io < 0 # tried pure-io-0.2.1, but its *library* does not support: base-4.15.0.0 + - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - questioner < 0 # tried questioner-0.1.1.0, but its *library* does not support: ansi-terminal-0.11.1 + - questioner < 0 # tried questioner-0.1.1.0, but its *library* requires the disabled package: readline + - quickcheck-arbitrary-template < 0 # tried quickcheck-arbitrary-template-0.2.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.5, but its *library* requires the disabled package: unfoldable-restricted + - quickcheck-state-machine < 0 # tried quickcheck-state-machine-0.7.1, but its *library* requires the disabled package: markov-chain-usage-model + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: aeson-1.5.6.0 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: connection-0.3.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: constraints-0.13.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-api-data-0.4.3 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-client-0.7.9 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: lens-5.0.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: req-3.9.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires the disabled package: extensible + - ranged-list < 0 # tried ranged-list-0.1.0.0, but its *library* requires the disabled package: typecheck-plugin-nat-simple + - rank-product < 0 # tried rank-product-0.2.2.0, but its *library* requires the disabled package: random-fu + - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry + - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry-combinatorial + - redis-io < 0 # tried redis-io-1.1.0, but its *library* requires the disabled package: operational + - redis-resp < 0 # tried redis-resp-1.0.0, but its *library* requires the disabled package: operational + - refined < 0 # tried refined-0.6.2, but its *library* does not support: base-4.15.0.0 + - refined < 0 # tried refined-0.6.2, but its *library* does not support: template-haskell-2.17.0.0 + - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsx2hs + - regex-applicative-text < 0 # tried regex-applicative-text-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-base-0.94.0.2 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-pcre-builtin-0.95.2.3.8.44 + - regex-tdfa-text < 0 # tried regex-tdfa-text-1.0.0.3, but its *library* does not support: regex-base-0.94.0.2 + - registry < 0 # tried registry-0.2.1.0, but its *library* requires the disabled package: protolude + - relapse < 0 # tried relapse-1.0.0.0, but its *library* does not support: attoparsec-0.14.1 + - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: persistable-record + - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: product-isomorphic + - relational-query-HDBC < 0 # tried relational-query-HDBC-0.7.2.0, but its *library* requires the disabled package: th-data-compat + - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: persistable-record + - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: product-isomorphic + - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: relational-query-HDBC + - relational-schemas < 0 # tried relational-schemas-0.1.8.0, but its *library* requires the disabled package: relational-query + - repa-algorithms < 0 # tried repa-algorithms-3.4.1.3, but its *library* does not support: base-4.15.0.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* does not support: aeson-1.5.6.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: base-4.15.0.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: req-3.9.2 + - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: http-client-0.7.9 + - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: http-types-0.12.3 + - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: resourcet-1.2.4.3 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: aeson-1.5.6.0 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: base-4.15.0.0 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: base-compat-0.11.2 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: errors-2.3.0 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: multipart-0.2.1 + - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: random-1.2.1 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: Cabal-3.4.0.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: aeson-1.5.6.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: base-4.15.0.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: base-compat-0.11.2 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: hashable-1.3.5.0 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: haskell-src-exts-1.23.1 + - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: semigroups-0.19.2 + - rest-happstack < 0 # tried rest-happstack-0.3.1.1, but its *library* does not support: containers-0.6.4.1 + - rest-happstack < 0 # tried rest-happstack-0.3.1.1, but its *library* does not support: happstack-server-7.7.1.1 + - rest-snap < 0 # tried rest-snap-0.3.0.0, but its *library* does not support: base-compat-0.11.2 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: aeson-1.5.6.0 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: base-4.15.0.0 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: containers-0.6.4.1 + - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: hashable-1.3.5.0 + - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: aeson-1.5.6.0 + - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: base-4.15.0.0 + - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: base-compat-0.11.2 + - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: base-compat-0.11.2 + - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: containers-0.6.4.1 + - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: http-types-0.12.3 + - rethinkdb-client-driver < 0 # tried rethinkdb-client-driver-0.0.25, but its *library* does not support: base-4.15.0.0 + - rhine-gloss < 0 # tried rhine-gloss-0.7.0, but its *library* requires the disabled package: rhine + - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: attoparsec-0.14.1 + - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: network-3.1.2.5 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: aeson-1.5.6.0 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: http-client-0.7.9 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: network-3.1.2.5 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: time-1.9.3 + - rss-conduit < 0 # tried rss-conduit-0.6.0.1, but its *library* requires the disabled package: atom-conduit + - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* does not support: singletons-3.0.1 + - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires the disabled package: tomland + - sandwich-webdriver < 0 # tried sandwich-webdriver-0.1.0.6, but its *library* requires the disabled package: webdriver + - scalendar < 0 # tried scalendar-1.2.0, but its *library* does not support: containers-0.6.4.1 + - schematic < 0 # tried schematic-0.5.1.0, but its *library* does not support: aeson-1.5.6.0 + - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: hjsonschema + - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: validationt + - sendgrid-v3 < 0 # tried sendgrid-v3-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: aeson-1.5.6.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: base-4.15.0.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: http-client-0.7.9 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: lens-5.0.1 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - seqloc < 0 # tried seqloc-0.6.1.1, but its *library* requires the disabled package: biocore + - sequenceTools < 0 # tried sequenceTools-1.5.0, but its *library* requires the disabled package: sequence-formats + - serf < 0 # tried serf-0.1.1.0, but its *library* requires the disabled package: operational + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: blaze-builder-0.4.2.2 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: cryptonite-0.29 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: exceptions-0.10.4 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-api-data-0.4.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-types-0.12.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: memory-0.16.0 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-0.18.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-server-0.18.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: time-1.9.3 + - servant-auth-docs < 0 # tried servant-auth-docs-0.2.10.0, but its *library* does not support: base-4.15.0.0 + - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.10.1, but its *library* does not support: swagger2-2.7 + - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *library* requires the disabled package: functor-combinators + - servant-elm < 0 # tried servant-elm-0.7.2, but its *library* requires the disabled package: elm-bridge + - servant-errors < 0 # tried servant-errors-0.1.6.0, but its *library* does not support: base-4.15.0.0 + - servant-js < 0 # tried servant-js-0.9.4.2, but its *executable* does not support: aeson-1.5.6.0 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: containers-0.6.4.1 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: formatting-7.1.3 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: lens-5.0.1 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: servant-0.18.3 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: time-1.9.3 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: QuickCheck-2.14.2 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: base-4.15.0.0 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: http-media-0.8.0.0 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: lens-5.0.1 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: pandoc-types-1.22.1 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: base-4.15.0.0 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: hspec-2.8.5 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: servant-0.18.3 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-0.18.3 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-client-core-0.18.3 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: base-4.15.0.0 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: servant-server-0.18.3 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires the disabled package: streaming-wai + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: Cabal-3.4.0.0 + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: base-4.15.0.0 + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: lens-5.0.1 + - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: swagger2-2.7 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: servant-0.18.3 + - serverless-haskell < 0 # tried serverless-haskell-0.12.6, but its *library* requires the disabled package: amazonka-core + - serversession-backend-persistent < 0 # tried serversession-backend-persistent-1.0.5, but its *library* does not support: base64-bytestring-1.2.1.0 + - serversession-backend-redis < 0 # tried serversession-backend-redis-1.0.4, but its *library* does not support: hedis-0.15.0 + - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* does not support: exceptions-0.10.4 + - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires the disabled package: sessiontypes + - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: megaparsec-9.2.0 + - shake-plus-extended < 0 # tried shake-plus-extended-0.4.1.0, but its *library* requires the disabled package: ixset-typed + - show-prettyprint < 0 # tried show-prettyprint-0.3.0.1, but its *library* does not support: trifecta-2.1.2 + - shower < 0 # tried shower-0.2.0.2, but its *library* does not support: base-4.15.0.0 + - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* does not support: template-haskell-2.17.0.0 + - size-based < 0 # tried size-based-0.1.2.0, but its *library* does not support: template-haskell-2.17.0.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: aeson-1.5.6.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: base-4.15.0.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: constraints-0.13.2 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: lens-5.0.1 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: random-1.2.1 + - skeletons < 0 # tried skeletons-0.4.0, but its *executable* requires the disabled package: tinytemplate + - slack-web < 0 # tried slack-web-0.3.0.1, but its *library* does not support: base-4.15.0.0 + - slack-web < 0 # tried slack-web-0.3.0.1, but its *library* does not support: http-client-0.7.9 + - slynx < 0 # tried slynx-0.6.1.0, but its *library* requires the disabled package: elynx-seq + - slynx < 0 # tried slynx-0.6.1.0, but its *library* requires the disabled package: elynx-tools + - smallcheck-series < 0 # tried smallcheck-series-0.7.1.0, but its *library* does not support: base-4.15.0.0 + - smash-lens < 0 # tried smash-lens-0.1.0.1, but its *library* does not support: lens-5.0.1 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: aeson-1.5.6.0 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: attoparsec-0.14.1 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: base-4.15.0.0 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: dlist-1.0 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: lens-5.0.1 + - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: mwc-random-0.15.0.2 + - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: pwstore-fast + - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: snap-server + - snap-blaze < 0 # tried snap-blaze-0.2.1.5, but its *library* requires the disabled package: snap-core + - snap-core < 0 # tried snap-core-1.0.4.2, but its *library* does not support: attoparsec-0.14.1 + - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* does not support: network-3.1.2.5 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: inline-java-0.10.0 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: jvm-0.6.0 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: distributed-closure + - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: jni + - speculation < 0 # tried speculation-1.5.0.3, but its *library* does not support: stm-2.5.0.0 + - sqlite-simple-errors < 0 # tried sqlite-simple-errors-0.6.1.0, but its *library* does not support: text-1.2.4.1 + - stack < 0 # tried stack-2.7.3, but its *library* requires the disabled package: hackage-security + - stack < 0 # tried stack-2.7.3, but its *library* requires the disabled package: regex-applicative-text + - streamproc < 0 # tried streamproc-1.6.2, but its *library* does not support: base-4.15.0.0 + - strict-base-types < 0 # tried strict-base-types-0.7, but its *library* requires the disabled package: strict-lens + - strict-tuple < 0 # tried strict-tuple-0.1.4, but its *library* does not support: base-4.15.0.0 + - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* requires the disabled package: strict-tuple + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-2.8.5 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-core-2.8.5 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: random-1.2.1 + - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* does not support: haskell-src-exts-1.23.1 + - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: Cabal-3.4.0.0 + - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: ghc-lib-parser-9.0.1.20210324 + - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: attoparsec-0.14.1 + - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: base-4.15.0.0 + - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* does not support: attoparsec-0.14.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: attoparsec-0.14.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: base-4.15.0.0 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: lens-5.0.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: profunctors-5.6.2 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: containers-0.6.4.1 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-api-data-0.4.3 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-client-0.7.9 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-media-0.8.0.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: katip-0.8.7.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: network-3.1.2.5 + - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: aeson-1.5.6.0 + - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src + - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src-th-mode + - taffybar < 0 # tried taffybar-3.3.0, but its *library* requires the disabled package: broadcast-chan + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: containers-0.6.4.1 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: tasty-1.4.2.1 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: time-1.9.3 + - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* does not support: network-3.1.2.5 + - termbox < 0 # tried termbox-0.3.0, but its *library* does not support: base-4.15.0.0 + - termcolor < 0 # tried termcolor-0.2.0.0, but its *executable* requires the disabled package: cli + - termonad < 0 # tried termonad-4.2.0.0, but its *library* requires the disabled package: xml-html-qq + - test-fixture < 0 # tried test-fixture-0.5.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - test-framework-th < 0 # tried test-framework-th-0.2.4, but its *library* requires the disabled package: language-haskell-extract + - testing-feat < 0 # tried testing-feat-1.1.0.0, but its *library* requires the disabled package: size-based + - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-1.2.4.1 + - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-format-0.3.2 + - text-format < 0 # tried text-format-0.3.2, but its *library* does not support: base-4.15.0.0 + - text-generic-pretty < 0 # tried text-generic-pretty-1.2.1, but its *library* does not support: wl-pprint-text-1.2.0.1 + - th-to-exp < 0 # tried th-to-exp-0.0.1.1, but its *library* does not support: template-haskell-2.17.0.0 + - these-skinny < 0 # tried these-skinny-0.7.4, but its *library* does not support: base-4.15.0.0 + - threepenny-gui < 0 # tried threepenny-gui-0.9.1.0, but its *library* requires the disabled package: snap-server + - threepenny-gui-flexbox < 0 # tried threepenny-gui-flexbox-0.4.2, but its *library* requires the disabled package: threepenny-gui + - tlynx < 0 # tried tlynx-0.6.1.0, but its *library* requires the disabled package: elynx-tools + - token-bucket < 0 # tried token-bucket-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - tonalude < 0 # tried tonalude-0.1.1.1, but its *library* does not support: base-4.15.0.0 + - tonaparser < 0 # tried tonaparser-0.1.0.1, but its *library* does not support: base-4.15.0.0 + - tonatona < 0 # tried tonatona-0.1.2.1, but its *library* does not support: base-4.15.0.0 + - tonatona-logger < 0 # tried tonatona-logger-0.2.0.2, but its *library* does not support: base-4.15.0.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-postgresql-2.13.2.1 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: base-4.15.0.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-sqlite-2.13.0.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: base-4.15.0.0 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-0.18.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-server-0.18.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: wai-extra-3.1.7 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: base-4.15.0.0 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: writer-cps-transformers-0.5.6.1 + - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* does not support: network-3.1.2.5 + - tries < 0 # tried tries-0.0.6.1, but its *library* requires the disabled package: rose-trees + - true-name < 0 # tried true-name-0.1.0.3, but its *library* does not support: template-haskell-2.17.0.0 + - type-combinators-singletons < 0 # tried type-combinators-singletons-0.2.1.0, but its *library* requires the disabled package: type-combinators + - typelits-witnesses < 0 # tried typelits-witnesses-0.4.0.0, but its *library* requires the disabled package: dependent-sum + - tz < 0 # tried tz-0.1.3.5, but its *library* does not support: template-haskell-2.17.0.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: aeson-1.5.6.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: attoparsec-0.14.1 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: base-4.15.0.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: cryptonite-0.29 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: parser-combinators-1.3.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: aeson-1.5.6.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: base-4.15.0.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - unfoldable-restricted < 0 # tried unfoldable-restricted-0.0.3, but its *library* requires the disabled package: unfoldable + - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* does not support: attoparsec-0.14.1 + - uri-templater < 0 # tried uri-templater-0.3.1.0, but its *library* does not support: trifecta-2.1.2 + - urlpath < 0 # tried urlpath-9.0.1, but its *library* requires the disabled package: attoparsec-uri + - userid < 0 # tried userid-0.1.3.6, but its *library* does not support: base-4.15.0.0 + - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* does not support: text-short-0.1.4 + - vado < 0 # tried vado-0.0.13, but its *library* does not support: attoparsec-0.14.1 + - vado < 0 # tried vado-0.0.13, but its *library* does not support: base-4.15.0.0 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: base-4.15.0.0 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: containers-0.6.4.1 + - vector-circular < 0 # tried vector-circular-0.1.3, but its *library* does not support: template-haskell-2.17.0.0 + - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* does not support: base-4.15.0.0 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: base-4.15.0.0 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: brick-0.65 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: lens-5.0.1 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: vty-5.33 + - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* does not support: optparse-applicative-0.16.1.0 + - wai-middleware-metrics < 0 # tried wai-middleware-metrics-0.2.4, but its *library* requires the disabled package: ekg-core + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: aeson-1.5.6.0 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: http-client-0.7.9 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: time-1.9.3 + - wai-middleware-throttle < 0 # tried wai-middleware-throttle-0.3.0.1, but its *library* requires the disabled package: token-bucket + - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-predicates + - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-route + - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: attoparsec-0.14.1 + - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: base-4.15.0.0 + - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: dlist-1.0 + - web-routes-th < 0 # tried web-routes-th-0.22.6.6, but its *library* does not support: template-haskell-2.17.0.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: OneTuple-0.3.1 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: aeson-1.5.6.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: attoparsec-0.14.1 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: base-4.15.0.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: cryptonite-0.29 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: hspec-2.8.5 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: http-client-0.7.9 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: memory-0.16.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-0.18.3 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-client-0.18.3 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: vinyl-0.13.3 + - webby < 0 # tried webby-1.0.1, but its *library* does not support: formatting-7.1.3 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* does not support: language-javascript-0.7.1.0 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires the disabled package: webdriver + - websockets-snap < 0 # tried websockets-snap-0.10.3.1, but its *library* requires the disabled package: snap-server + - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* does not support: containers-0.6.4.1 + - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* does not support: containers-0.6.4.1 + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: next-ref + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: threads-extras + - writer-cps-full < 0 # tried writer-cps-full-0.1.0.0, but its *library* requires the disabled package: writer-cps-morph + - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* does not support: lens-5.0.1 + - ws < 0 # tried ws-0.0.5, but its *library* requires the disabled package: attoparsec-uri + - xml-html-qq < 0 # tried xml-html-qq-0.1.0.1, but its *library* requires the disabled package: heterocephalus + - xml-isogen < 0 # tried xml-isogen-0.3.0, but its *library* requires the disabled package: dom-parser + - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* does not support: yeshql-core-4.2.0.0 + - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires the disabled package: yeshql-hdbc + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: persistent-2.13.2.1 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-core-1.6.21.0 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-form-1.7.0 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires the disabled package: yesod-auth + - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: yesod-auth + - yesod-auth-hashdb < 0 # tried yesod-auth-hashdb-1.7.1.7, but its *library* requires the disabled package: yesod-auth + - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.6.3.4, but its *library* requires the disabled package: yesod-auth + - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-core-1.6.21.0 + - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-form-1.7.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* does not support: yesod-1.6.1.2 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: language-javascript-0.7.1.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-core-1.6.21.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-static-1.6.1.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires the disabled package: hamlet + - zasni-gerna < 0 # tried zasni-gerna-0.0.7.1, but its *library* requires the disabled package: papillon + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: base-compat-0.11.2 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-0.18.3 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-client-0.18.3 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: aeson-1.5.6.0 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: base-compat-0.11.2 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: http-api-data-0.4.3 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: servant-0.18.3 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: storable-record-0.0.6 + # End of Library and exe bounds failures + + "Stackage upper bounds": + + # https://github.com/commercialhaskell/stackage/issues/6122 + - mmorph < 1.2 + + # https://github.com/commercialhaskell/stackage/issues/6184 + - base-compat < 0.12 + + # https://github.com/commercialhaskell/stackage/issues/6185 + - base-compat-batteries < 0.12 + + # https://github.com/commercialhaskell/stackage/issues/6195 + - miso < 1.8 + + # aeson-2 + # https://github.com/commercialhaskell/stackage/issues/6217 + - aeson < 2.0.0.0 + - aura < 3.2.6 + - cabal-flatpak < 0.1.0.3 + - core-data < 0.3.0.0 + - faktory < 1.1.2.1 + - forma < 1.2.0 + - hruby < 0.4.0.0 + - hspec-expectations-json < 1.0.0.5 + - microlens-aeson < 2.4 + - mmark-cli < 0.0.5.1 + - postgresql-binary < 0.12.4.2 + - stache < 2.3.1 + - stripe-scotty < 1.1.0.1 + - stripe-wreq < 1.0.1.12 + - kanji < 3.5 + + # https://github.com/commercialhaskell/stackage/issues/6237 + - lucid < 2.9.13 + - mmark < 0.0.7.4 + + # happy-1.21.0 is deprecated an unbuildable + # https://github.com/commercialhaskell/stackage/issues/6294 + # see also https://github.com/commercialhaskell/stackage/issues/6242 + - happy < 1.21 + + # https://github.com/commercialhaskell/stackage/issues/6243 + - jose < 0.9 + + # https://github.com/commercialhaskell/stackage/issues/6264 + # Requires GHC 9.2 + # Any new package-version that must use GHC 9.2 should be added here. + # We'll Remove this section along with the nightly upgrade to GHC 9.2. + - ghc-lib < 9.2.1.20211030 + - ghc-lib-parser < 9.2.1.20211030 + - ghc-lib-parser-ex < 9.2.0.0 + - singletons-base < 3.1 + - singletons-th < 3.1 + - th-desugar < 1.13 + - eliminators < 0.9 + - ghc-syntax-highlighter < 0.0.8 # requires ghc-lib-parser >= 9.2 + - ormolu < 0.4.0.0 + + # https://github.com/commercialhaskell/stackage/issues/6265 + - attoparsec < 0.14.2 + + # https://github.com/commercialhaskell/stackage/issues/6268 + - hashable < 1.4.0.0 + + # https://github.com/commercialhaskell/stackage/issues/6273 + - freckle-app < 1.0.1 + + # https://github.com/commercialhaskell/stackage/issues/6278 + - ad < 4.5 + + # https://github.com/commercialhaskell/stackage/issues/6288 + - mmark-ext < 0.2.1.4 + + # https://github.com/commercialhaskell/stackage/issues/6292 + - doctest < 0.19 + + # https://github.com/commercialhaskell/stackage/issues/6297 + - hspec-discover < 2.9 + + # https://github.com/commercialhaskell/stackage/issues/6298 + - hspec-core < 2.9 + - hspec-meta < 2.9 + + # https://github.com/commercialhaskell/stackage/issues/6299 + - hspec < 2.9 + + # https://github.com/commercialhaskell/stackage/issues/6308 + - semigroups < 0.20 + + # https://github.com/commercialhaskell/stackage/issues/6309 + - polysemy < 1.7 + - polysemy-plugin < 0.4.2 + + # https://github.com/commercialhaskell/stackage/issues/6310 + - lens < 5.1 + + # https://github.com/commercialhaskell/stackage/issues/6312 + - sydtest < 0.6 + + # https://github.com/commercialhaskell/stackage/issues/6313 + - unicode-data < 0.2 + + # https://github.com/Gabriel439/Haskell-Pipes-Concurrency-Library/issues/60 + - pipes-concurrency < 2.0.13 + + # https://github.com/commercialhaskell/stackage/issues/6322 + - hashtables < 1.3 + + # https://github.com/commercialhaskell/stackage/issues/6348 + - selective < 0.5 +# end of packages + +# Package flags are applied to individual packages, and override the values of +# global-flags +package-flags: + QuickCheck: + old-random: false + pathtype: + old-time: false + + brick: + demos: true + + bz2: + with-bzlib: false # Exclude bzlib from benchmarks to avoid unnecessary dependencies. + + mersenne-random-pure64: + small_base: false + + cloud-haskell: + tcp: true + simplelocalnet: true + p2p: true + + curl: + new-base: true + + hpio: + test-hlint: false + + idris: + ffi: true + + hxt: + network-uri: true + hxt-http: + network-uri: true + hxt-relaxng: + network-uri: true + + text: + integer-simple: false + + tar: + old-time: false + + time-locale-compat: + old-locale: false + + HsOpenSSL: + fast-bignum: false + + cabal-rpm: + old-locale: false + + NineP: + bytestring-in-base: false + + nix-paths: + allow-relative-paths: true + + fay: + test: true + + reedsolomon: + llvm: false + + # https://github.com/ghcjs/jsaddle/issues/9 + jsaddle: + gtk3: true + + ghc-heap-view: + ghc_7_7: false + ghc_8_0: true + + functor-classes-compat: + containers: true + + # 2021-11-14 + # Since we are shipping Win32-2.10 (thus not 2.13.1), this flag needs to be set to 'false'. + # https://github.com/RyanGlScott/mintty/issues/4#issuecomment-968329124 + # TODO: revisit when Win32 is bumped + mintty: + win32-2-13-1: false + + cassava: + bytestring--lt-0_10_4: false + + alerta: + servant-client-core: false + + cabal-install: + # https://github.com/haskell/cabal/issues/4883 + native-dns: false + + # https://github.com/fpco/stackage/issues/3619 + transformers-compat: + five-three: true + + greskell: + hint-test: false + + windns: + allow-non-windows: true + + hsdev: + docs: false + + bson: + _old-network: false + + mongoDB: + _old-network: false + + +# end of package-flags + +# Special configure options for individual packages + +# This used to be used for extra-include-dirs and extra-lib-dirs +# Instead, we set this in the Docker image itself +configure-args: {} +# end of configure-args + + +# Used for packages that cannot be built on Linux +skipped-builds: + - hfsevents + - lzma-clib + - Win32 + - Win32-notify + - windns + +# end of skipped-builds + + +# By skipping a test suite, we do not pull in the build dependencies +# Packages should only be added here if required by `stackage-curator check' +# or if Setup fails because of missing foreign libraries. +# Otherwise place them in expected-test-failures. +skipped-tests: + # aeson-2 + - jsonifier + - req + + # Missing foreign libraries + - symengine + + # Timeouts + # These tests sometimes take too long and hit the stackage build + # servers time limit so these shouldn't be removed from + # skipped-tests unless we know a fix has been released. + - accelerate-fourier + - cabal-helper + - graphviz + - network-attoparsec + - punycode + - unagi-chan + - zeromq4-patterns + - port-utils + - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 + - binary-search # Never finishes https://github.com/nushio3/binary-search/issues/2 + - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 + - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 + + # Wontfix. The maintainer doesn't want to keep test dependencies + # up to date or be notified about it, or doesn't want stackage to + # run the tests. + # Only re-enable if requested. + ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 + - cassava + - cryptohash-md5 + - cryptohash-sha1 + - cryptohash-sha256 + - cryptohash-sha512 + - HsYAML + - lzma + - resolv + - token-bucket + - uuid + - uuid-types + # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 + - base-prelude + - bytestring-strict-builder + - bytestring-tree-builder + - cases + - focus + - hasql + - hasql-pool + - list-t + - mtl-prelude + - neat-interpolation + - partial-handler + - postgresql-binary + - refined + - slave-thread + - stm-containers + - text-builder + # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 + - fgl + - fgl-arbitrary + - graphviz + - wl-pprint-text + # @phadej + - aeson-compat + - aeson-extra + - base64-bytestring-type + - binary-orphans + - edit-distance + - fin + - http-api-data + - integer-logarithms + - postgresql-simple-url + - range-set-list + - time-parsers + - time-parsers + - universe-base + - vec + # @jsynacek + - hpqtypes # needs a running postgres database + - hpqtypes-extras # needs a running postgres database + # norfairking + - autodocodec # runs doctest + + # Uses Cabal's "library internal" stanza feature + - s3-signer + + # Due to cycles, which are actually just limitations in Stack right now. + - HUnit + - attoparsec + - base-orphans # via hspec + - bifunctors # via hspec + - call-stack + - case-insensitive + - clock + - criterion + - distributive # via hspec + - doctest # via hspec + - foundation + - hspec + - hspec-discover # via logging-facade/mockery + - js-flot + - js-jquery + - nanospec + - optparse-applicative # via QuickCheck + - primitive + - random + - scientific + - split + - splitmix + - tasty-expected-failure # via tasty-hedgehog + - vector # doctest + - vector-binary-instances + + # TODO + - rpmbuild-order + + # Revision to package caused it to require bounds and break + - htoml # https://github.com/commercialhaskell/stackage/issues/6239 + + # was in expected test failures, but seems we may have to skip + # entirely for unknown reasons, previously: + # https://github.com/clash-lang/clash-compiler/issues/1622 + - clash-prelude + + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. + # + # Test bounds issues + - ENIG # tried ENIG-0.0.1.0, but its *test-suite* requires the disabled package: test-framework-th + - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: hspec-2.8.5 + - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: http-client-0.7.9 + - MissingH # tried MissingH-1.4.3.0, but its *test-suite* requires the disabled package: errorcall-eq-instance + - aeson # tried aeson-1.5.6.0, but its *test-suite* does not support: hashable-time-0.3 + - airship # tried airship-0.9.4, but its *test-suite* does not support: tasty-1.4.2.1 + - algebraic-graphs # tried algebraic-graphs-0.5, but its *test-suite* does not support: QuickCheck-2.14.2 + - antiope-core # tried antiope-core-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-core # tried antiope-core-7.5.3, but its *test-suite* requires the disabled package: aeson-lens + - antiope-messages # tried antiope-messages-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-sns # tried antiope-sns-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-sqs # tried antiope-sqs-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* does not support: hspec-2.8.5 + - asif # tried asif-6.0.4, but its *test-suite* does not support: doctest-0.18.2 + - avro # tried avro-0.5.2.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - barrier # tried barrier-0.1.1, but its *test-suite* does not support: lens-family-core-2.1.0 + - barrier # tried barrier-0.1.1, but its *test-suite* does not support: tasty-1.4.2.1 + - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: hspec-2.8.5 + - blaze-html # tried blaze-html-0.9.1.2, but its *test-suite* does not support: QuickCheck-2.14.2 + - bloodhound # tried bloodhound-0.18.0.0, but its *test-suite* requires the disabled package: quickcheck-properties + - boolean-normal-forms # tried boolean-normal-forms-0.0.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - cassava-conduit # tried cassava-conduit-0.6.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: hspec-2.8.5 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: servant-server-0.18.3 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: warp-3.3.18 + - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-2.8.5 + - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-discover-2.8.5 + - colour # tried colour-2.3.6, but its *test-suite* does not support: random-1.2.1 + - conduit-algorithms # tried conduit-algorithms-0.0.11.0, but its *test-suite* requires the disabled package: test-framework-th + - csg # tried csg-0.1.0.6, but its *test-suite* does not support: doctest-0.18.2 + - csg # tried csg-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 + - darcs # tried darcs-2.16.4, but its *test-suite* does not support: QuickCheck-2.14.2 + - dhall-lsp-server # tried dhall-lsp-server-1.0.17, but its *test-suite* does not support: lsp-test-0.14.0.1 + - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 + - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch + - doldol # tried doldol-0.4.1.2, but its *test-suite* requires the disabled package: test-framework-th + - drawille # tried drawille-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - dual-tree # tried dual-tree-0.2.3.0, but its *test-suite* requires the disabled package: testing-feat + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: directory-1.3.6.1 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: doctest-0.18.2 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: hlint-3.3.4 + - edit # tried edit-1.0.1.0, but its *test-suite* does not support: doctest-0.18.2 + - edit # tried edit-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - elm-street # tried elm-street-0.1.0.4, but its *test-suite* does not support: hspec-2.8.5 + - elynx-markov # tried elynx-markov-0.6.1.0, but its *test-suite* requires the disabled package: elynx-tools + - elynx-tree # tried elynx-tree-0.6.1.0, but its *test-suite* requires the disabled package: elynx-tools + - errors-ext # tried errors-ext-0.4.2, but its *test-suite* requires the disabled package: binary-ext + - euler-tour-tree # tried euler-tour-tree-0.1.1.0, but its *test-suite* requires the disabled package: sequence + - eventsource-stub-store # tried eventsource-stub-store-1.1.1, but its *test-suite* requires the disabled package: eventsource-store-specs + - extensible-effects # tried extensible-effects-5.0.0.1, but its *test-suite* requires the disabled package: test-framework-th + - filtrable # tried filtrable-0.1.6.0, but its *test-suite* does not support: tasty-1.4.2.1 + - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-1.4.2.1 + - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-hspec-1.2 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: QuickCheck-2.14.2 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: bitvec-1.1.1.0 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: groups-0.5.3 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: integer-gmp-1.1 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: semirings-0.6 + - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: tasty-1.4.2.1 + - generic-xmlpickler # tried generic-xmlpickler-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 + - ghc-prof # tried ghc-prof-1.4.1.9, but its *test-suite* does not support: attoparsec-0.14.1 + - gitlib-libgit2 # tried gitlib-libgit2-3.1.2.1, but its *test-suite* requires the disabled package: gitlib-test + - hackage-security # tried hackage-security-0.6.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-2.8.5 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: optparse-applicative-0.16.1.0 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: tree-diff-0.2.1 + - haskell-names # tried haskell-names-0.9.9, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires the disabled package: knob + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: Glob-0.10.2 + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: network-3.1.2.5 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: polyparse-1.13 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: time-1.9.3 + - haskell-tools-rewrite # tried haskell-tools-rewrite-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* does not support: lens-5.0.1 + - hasmin # tried hasmin-1.0.3, but its *test-suite* does not support: doctest-0.18.2 + - heist # tried heist-1.1.0.1, but its *test-suite* does not support: lens-5.0.1 + - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 + - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* does not support: hspec-2.8.5 + - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: base-4.15.0.0 + - http-streams # tried http-streams-0.8.9.4, but its *test-suite* requires the disabled package: snap-server + - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-bits # tried hw-bits-0.7.2.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-conduit # tried hw-conduit-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-dsv # tried hw-dsv-0.4.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-json # tried hw-json-1.3.2.2, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: hspec-2.8.5 + - hw-xml # tried hw-xml-0.5.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 + - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-hspec-1.2 + - json-rpc-client # tried json-rpc-client-0.2.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - json-schema # tried json-schema-0.7.4.2, but its *test-suite* does not support: attoparsec-0.14.1 + - json-schema # tried json-schema-0.7.4.2, but its *test-suite* does not support: tasty-1.4.2.1 + - lapack # tried lapack-0.4, but its *test-suite* does not support: random-1.2.1 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-2.8.5 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-core-2.8.5 + - libraft # tried libraft-0.5.0.0, but its *test-suite* requires the disabled package: quickcheck-state-machine + - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* does not support: doctest-0.18.2 + - lrucaching # tried lrucaching-0.3.3, but its *test-suite* does not support: hspec-2.8.5 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: Glob-0.10.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: base-4.15.0.0 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: doctest-0.18.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-1.4.2.1 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-hunit-0.10.0.3 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-quickcheck-0.10.2 + - map-syntax # tried map-syntax-0.3, but its *test-suite* does not support: hspec-2.8.5 + - menshen # tried menshen-0.0.3, but its *test-suite* does not support: QuickCheck-2.14.2 + - messagepack # tried messagepack-0.5.4, but its *test-suite* requires the disabled package: test-framework-th + - monad-par # tried monad-par-0.3.5, but its *test-suite* requires the disabled package: test-framework-th + - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 + - multistate # tried multistate-0.8.0.3, but its *test-suite* does not support: hspec-2.8.5 + - nakadi-client # tried nakadi-client-0.7.0.0, but its *test-suite* does not support: classy-prelude-1.5.0.1 + - netrc # tried netrc-0.2.0.0, but its *test-suite* does not support: tasty-1.4.2.1 + - network-transport-inmemory # tried network-transport-inmemory-0.5.2, but its *test-suite* does not support: network-transport-tests-0.3.0 + - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* does not support: doctest-0.18.2 + - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell + - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell-quickcheck + - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-2.8.5 + - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-discover-2.8.5 + - partial-semigroup # tried partial-semigroup-0.5.1.12, but its *test-suite* does not support: doctest-0.18.2 + - pipes-fluid # tried pipes-fluid-0.6.0.1, but its *test-suite* requires the disabled package: pipes-misc + - postgrest # tried postgrest-8.0.0, but its *test-suite* does not support: hspec-2.8.5 + - proto3-wire # tried proto3-wire-1.2.2, but its *test-suite* does not support: doctest-0.18.2 + - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* does not support: hspec-2.8.5 + - quickcheck-state-machine # tried quickcheck-state-machine-0.7.1, but its *test-suite* requires the disabled package: hs-rqlite + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: hspec-2.8.5 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: servant-server-0.18.3 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: warp-3.3.18 + - records-sop # tried records-sop-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 + - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 + - safeio # tried safeio-0.0.5.0, but its *test-suite* requires the disabled package: test-framework-th + - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* does not support: QuickCheck-2.14.2 + - scalendar # tried scalendar-1.2.0, but its *test-suite* requires the disabled package: SCalendar + - schematic # tried schematic-0.5.1.0, but its *test-suite* does not support: base-4.15.0.0 + - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-2.8.5 + - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-docs # tried servant-docs-0.11.9, but its *test-suite* does not support: tasty-1.4.2.1 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-2.8.5 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: aeson-1.5.6.0 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: hspec-2.8.5 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: http-api-data-0.4.3 + - servant-mock # tried servant-mock-0.8.7, but its *test-suite* does not support: hspec-wai-0.11.1 + - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* does not support: hspec-core-2.8.5 + - servant-streaming # tried servant-streaming-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - servant-streaming-client # tried servant-streaming-client-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: streaming-bytestring-0.2.1 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: warp-3.3.18 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: doctest-0.18.2 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-2.8.5 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: aeson-1.5.6.0 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: servant-server-0.18.3 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: hspec-2.8.5 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 + - sexpr-parser # tried sexpr-parser-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 + - simple-log # tried simple-log-0.9.12, but its *test-suite* does not support: hspec-2.8.5 + - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* does not support: ansi-terminal-0.11.1 + - snap # tried snap-1.1.3.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - stb-image-redux # tried stb-image-redux-0.2.1.3, but its *test-suite* does not support: hspec-2.8.5 + - stm-supply # tried stm-supply-0.2.0.0, but its *test-suite* requires the disabled package: Unique + - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 + - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* does not support: hspec-2.8.5 + - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: HTF-0.14.0.6 + - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: lens-5.0.1 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-hedgehog-1.1.0.0 + - sv-core # tried sv-core-0.5, but its *test-suite* does not support: tasty-1.4.2.1 + - sydtest-yesod # tried sydtest-yesod-0.3.0.0, but its *test-suite* requires the disabled package: sydtest-persistent-sqlite + - system-fileio # tried system-fileio-0.3.16.4, but its *test-suite* requires the disabled package: chell + - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell + - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell-quickcheck + - tar # tried tar-0.5.1.1, but its *test-suite* requires the disabled package: bytestring-handle + - temporary-resourcet # tried temporary-resourcet-0.1.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - test-framework # tried test-framework-0.8.2.0, but its *test-suite* requires the disabled package: libxml + - transient # tried transient-0.7.0.0, but its *test-suite* does not support: random-1.2.1 + - tzdata # tried tzdata-0.2.20201021.0, but its *test-suite* requires the disabled package: test-framework-th + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: generic-random-1.5.0.1 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires the disabled package: time-qq + - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: QuickCheck-2.14.2 + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - validation # tried validation-1.1.2, but its *test-suite* does not support: lens-5.0.1 + - validation-selective # tried validation-selective-0.1.0.1, but its *test-suite* does not support: hspec-2.8.5 + - web-routes-th # tried web-routes-th-0.22.6.6, but its *test-suite* does not support: hspec-2.8.5 + - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: random-1.2.1 + - wreq # tried wreq-0.5.3.3, but its *test-suite* requires the disabled package: snap-server + - xmlhtml # tried xmlhtml-0.2.5.2, but its *test-suite* does not support: hspec-2.8.5 + - yesod-static-angular # tried yesod-static-angular-0.1.8, but its *test-suite* does not support: yesod-test-1.6.12 + # End of Test bounds issues + +# end of skipped-tests + +# Tests listed in expected-test-failures configure correctly but may fail to run +# or even build correctly. A Stackage build should not fail based on a test build +# or test run failure for these packages. +# (Testsuites which can't configure should be placed under skipped-tests.) +# +# We need to build and run test suites to verify if tests listed here +# can be re-enabled, so we usually wait for the maintainer to file a +# PR to re-enable them. +expected-test-failures: + + # Intermittent failures or unreliable. These tests may pass when + # re-enabled, but will eventually fail again. + # + - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 + - base64 # https://github.com/emilypi/base64/issues/31 + - binary-instances # https://github.com/haskellari/binary-instances/issues/7 + - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 + - capataz # https://github.com/roman/Haskell-capataz/issues/6 + - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 + - crypto-numbers + - css-text # 0.1.2.2 https://github.com/yesodweb/css-text/issues/10 + - distributed-process + - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 + - distributed-process-task + - fft # test-fft: exited with: ExitFailure (-11) + - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 + - fsnotify # Often runs out of inotify handles + - hastache + - idris # https://github.com/fpco/stackage/issues/1382 + - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 + - math-functions # https://github.com/bos/math-functions/issues/25 + - matplotlib # https://github.com/fpco/stackage/issues/2365 + - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 + - network # Unfortunately network failures seem to happen haphazardly + - nsis # Intermittent on non-Windows systems + - statistics # https://github.com/bos/statistics/issues/42 + + # Requires running servers, accounts, or a specific environment. + # + # If a maintainer wants us to run a partial tests suite with tests + # that do not require external dependencies, see + # https://github.com/commercialhaskell/stackage/issues/6172#issuecomment-902072030 + # + - GLFW-b # X + - HTF # Requires shell script and are incompatible with sandboxed package databases + - HaRe # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 + - IPv6DB + - accelerate-bignum # CUDA GPU + - alex + - amqp + - aws # AWS Credentials + - beam-postgres # requires Postgress instance + - bindings-GLFW # Expects running X server + - bitcoin-api + - bitcoin-api-extra + - bloodhound # ElasticSearch + - cabal-install + - cayley-client + - consul-haskell + - cql-io # Cassandra + - credential-store # requieres dbus sockets + - datadog # requires API keys in env vars https://github.com/fpco/stackage/pull/3308#issuecomment-369535040 + - dbcleaner # Requires running PostgreSQL server + - dbmigrations # PostgreSQL + - drifter-postgresql # PostgreSQL + - egison # executable not found https://github.com/egison/egison/issues/250 + - esqueleto # mysql and postgresql + - etcd # etcd https://github.com/fpco/stackage/issues/811 + - eventful-dynamodb + - eventful-postgresql + - eventsource-geteventstore-store + - eventstore # Event Store + - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 + - fb # Facebook app + - gdax # Needs environment variables set + - ghc-imported-from # depends on haddocks being generated first https://github.com/fpco/stackage/pull/1315 + - ghc-mod # https://github.com/DanielG/ghc-mod/issues/611 + - githash # Needs a git repo + - gitson # 0.5.2 error with git executable https://github.com/myfreeweb/gitson/issues/1 + - gitson # https://github.com/myfreeweb/gitson/issues/1 + - happy # Needs mtl in the user package DB + - haskell-neo4j-client # neo4j with auth disabled + - haskell-tools-cli # https://github.com/haskell-tools/haskell-tools/issues/230 + - haskell-tools-refactor # https://github.com/haskell-tools/haskell-tools/issues/231 + - hasql # PostgreSQL + - hasql-notifications # PostgreSQL + - hasql-queue + - hasql-transaction # PostgreSQL + - hedis + - hie-bios # cabal, stack, ghc; see https://github.com/commercialhaskell/stackage/issues/5025 + - hnix # #5469/closed + - hocilib # oracle + - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 + - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 + - http2 # executable not found https://github.com/kazu-yamamoto/http2/issues/22 + - hworker + - influxdb + - json-autotype # Requires filesystem access + - jvm + - katip-elasticsearch # elasticsearch + - log # ElasticSearch + - lsp-test + - lxd-client # Needs LXD, not available on debian + - lz4 # executable not found https://github.com/commercialhaskell/stackage/issues/6226 + - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 + - memcached-binary # memcached + - milena + - mongoDB # Requires local MongoDB server + - mysql # MySQL + - mysql-haskell # Requires local mysql server with a test account, and binlog enabled. + - mysql-simple # MySQL + - network-anonymous-i2p + - nri-kafka # requires kafka + - nri-postgresql # requires postgres + - nri-redis # requires redis + - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" + - opaleye # PostgreSQL + - optima # `demo` invoked with bad arguments https://github.com/commercialhaskell/stackage/pull/6102 + - pandoc-plot # requires matlab, etc and DISPLAY for tcltk + - pantry # https://github.com/commercialhaskell/stackage/issues/4628 + - peregrin # Requires running pg-harness-server + - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 + - pipes-mongodb + - postgresql-libpq-notify + - postgresql-query # PostgreSQL + - postgresql-simple # PostgreSQL + - postgresql-simple-migration + - postgresql-simple-queue + - postgresql-syntax # hedgehog-test executable not found https://github.com/commercialhaskell/stackage/pull/6102 + - postgresql-typed # PostgreSQL + - postgrest # PostgreSQL + - purescript # git 128 https://github.com/purescript/purescript/issues/2292 + - rattle # needs fsatrace + - redis-io + - rel8 + - rethinkdb + - rethinkdb-client-driver + - riak # needs riak server on localhost:8098 + - sdl2 # "Failed to connect to the Mir Server" + - sendgrid-v3 # Requires sendgrid API key in env #5951/closed + - serialport # "The tests need two serial ports as command line arguments" https://github.com/jputcu/serialport/issues/30 + - serversession-backend-redis # redis + - shake # Needs ghc on $PATH with some installed haskell packages + - slack-api # needs api key https://github.com/commercialhaskell/stackage/pull/5345 + - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account + - sourcemap # requires npm installed packages + - users-persistent # sqlite + - users-postgresql-simple # PostgreSQL + - wai-cors # PhantomJS + - wai-rate-limit-redis # Redis + - wai-session-postgresql # PostgreSQL + - wai-session-redis # https://github.com/commercialhaskell/stackage/pull/5980 + - web3 # requires running server + - webdriver-angular # webdriver server + - websockets + + # Missing test files in sdist + # + # The cause is that a test suite requires a file that is not + # present in the tarball that is uploaded to Hackage. It can be + # fixed by adding these files to `extra-source-files` in the + # .cabal file. + # + - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 + - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 + - doctest + - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 + - ghc-events # https://github.com/haskell/ghc-events/issues/70 + - hspec-core # https://github.com/commercialhaskell/stackage/issues/6291 + - hspec-junit-formatter # https://github.com/freckle/hspec-junit-formatter/issues/14 + - persistent # https://github.com/commercialhaskell/stackage/issues/6037 + - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 + + # Testcase assertion failures, or other runtime failures. + # These can be real testsuite bugs, or maybe limitations in test cases or the test setup. + # + - JuicyPixels-blurhash + - aeson-casing + - aeson-schemas # https://github.com/commercialhaskell/stackage/issues/6289 + - base32 + - blaze-colonnade + - bsb-http-chunked + - c2hs + - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 + - colonnade + - composable-associations-aeson + - control-dsl + - crypto-enigma + - curl-runnings + - debian + - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 + - dimensional + - download # https://github.com/fpco/stackage/issues/2811 + - duration + - ede + - error # https://github.com/commercialhaskell/stackage/issues/6300 + - fixed-vector-hetero + - freckle-app # https://github.com/commercialhaskell/stackage/issues/6197 + - genvalidity-persistent + - genvalidity-property + - ghc-prof + - gingersnap + - github-types + - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 + - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 + - haskoin-core + - hpack # https://github.com/commercialhaskell/stackage/issues/4512 + - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 + - hspec-golden-aeson + - incremental-parser # 0.5.0.2 + - jose + - justified-containers + - jwt + - katip + - lens-regex + - list-transformer + - lucid # https://github.com/chrisdone/lucid/issues/109 + - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 + - massiv-io + - megaparsec-tests + - mighty-metropolis # https://github.com/jtobin/mighty-metropolis/issues/6 + - mixpanel-client # https://github.com/domenkozar/mixpanel-client/issues/7 + - mmark # https://github.com/mmark-md/mmark/issues/80 + - mmark-ext # https://github.com/mmark-md/mmark/issues/80 + - mwc-random + - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 + - nri-observability # https://github.com/commercialhaskell/stackage/issues/6179 + - nri-prelude # https://github.com/commercialhaskell/stackage/issues/6179 + - numhask-array + - ochintin-daicho + - openapi3 + - pcre-heavy + - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 + - posix-paths + - prettyprinter + - prettyprinter-ansi-terminal + - rando # https://github.com/commercialhaskell/stackage/issues/4249 + - rank1dynamic + - rescue + - rose-trees + - safe-decimal + - simple-affine-space + - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + - sized + - spatial-math + - subcategories + - tasty-fail-fast + - triplesec + - turtle + - type-level-kv-list + - unicode-show + - universe-some + - universum + - utf8-conversions + - varying + - vivid-osc + - wakame + - world-peace + - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 + - xmlbf + + # Assertion failures due to module name ambiguity. + # These _should_ be fixed by using the `hide` section of this file + - reanimate # https://github.com/commercialhaskell/stackage/issues/5626 + + # Compilation failures + - aeson-commit + - base16 # #5948/closed + - blake2 + - blas-hs + - bound # https://github.com/commercialhaskell/stackage/issues/6274 + - butter + - cabal-file-th + - conduit-connection + - config-ini # https://github.com/aisamanra/config-ini/issues/22 + - construct # 0.3.0.2 + - data-diverse + - do-notation + - domain-optics # https://github.com/commercialhaskell/stackage/pull/6102 + - flat + - flay + - fmt + - focuslist + - generic-lens # https://github.com/commercialhaskell/stackage/issues/6290 + - geojson + - hsc2hs + - hsini + - htoml + - hweblib # https://github.com/aycanirican/hweblib/issues/3 + - LambdaHack # https://github.com/commercialhaskell/stackage/issues/6276 + - leveldb-haskell + - mono-traversable + - multiarg + - murmur3 + - parameterized # # https://github.com/commercialhaskell/stackage/issues/5746 + - protobuf + - record-wrangler + - relapse # #5948/closed + - require # compilation failure https://github.com/commercialhaskell/stackage/issues/6093 + - secp256k1-haskell # #5948/closed + - servant-static-th # Tasty issue: https://github.com/commercialhaskell/stackage/issues/6090 + - snap-core # random 1.2 + - snappy # Could not find module ‘Functions’ + - string-random # https://github.com/hiratara/hs-string-random/issues/16 + - text-icu # https://github.com/bos/text-icu/issues/32 + - thread-supervisor + - type-map + - type-of-html-static # https://github.com/commercialhaskell/stackage/issues/5728 + - typecheck-plugin-nat-simple + - uncertain + - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 + - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 + - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + - yesod-gitrev # https://github.com/commercialhaskell/stackage/issues/6132 + + # Recursive deps https://github.com/fpco/stackage/issues/1818 + - options + - text # 1.2.2.1 + + # Problem on the stackage build server, we need to dig deeper into + # these if we want them fixed + - skein # openfile: does not exist https://github.com/fpco/stackage/issues/1187 + - haskell-tools-daemon # openFile: permission denied https://github.com/fpco/stackage/issues/2502 + - rounded # segfault + - isocline # segfault https://github.com/daanx/isocline/issues/1 + - shake-language-c # Cannot reproduce locally, looks like it may be a bug in Stack or curator + + # doctests can be flaky on the build server, add packages here if + # they start causing issues. + - bookkeeping + - dhall + - doctest-driver-gen + - email-validate + - greskell + - greskell-core + - headroom + - hint + - hledger-lib + - iproute + - kawhi + - makefile # Doctests require hidden Glob package + - multiset # # Doctests require hidden Glob package + - perf + - prometheus-client + - xml-indexed-cursor + - yesod-paginator + + # Misc. Please check if there is a better section before adding more packages here. + - Diff # https://github.com/commercialhaskell/stackage/issues/4289 + - algebraic-graphs # Module not visible https://github.com/commercialhaskell/stackage/issues/4670 + - binary-parsers # runtime failure https://github.com/winterland1989/binary-parsers/issues/3 + - bugsnag-haskell # Module not visible https://github.com/commercialhaskell/stackage/issues/4759 + - cacophony # https://github.com/centromere/cacophony/issues/15 + - cfenv # https://github.com/tomphp/haskell-cfenv/issues/1 + - cryptohash # Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built + - dbus # https://github.com/commercialhaskell/stackage/issues/5587 + - dns # https://github.com/kazu-yamamoto/dns/issues/153 + - envelope # Module not visible https://github.com/commercialhaskell/stackage/issues/4669 + - exp-pairs # https://github.com/Bodigrim/exp-pairs/issues/16 + - fused-effects # https://github.com/fused-effects/fused-effects/issues/413 + - generic-optics # https://github.com/kcsongor/generic-lens/issues/133 + - ghc-exactprint # https://github.com/alanz/ghc-exactprint/issues/82 + - ghci-hexcalc # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 + - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 + - gitlab-haskell # https://github.com/commercialhaskell/stackage/issues/6088 + - heap # https://github.com/pruvisto/heap/issues/11 + - hjsmin # Test-runner expects a cabal-style 'dist-newstyle' directory + - hspec-expectations-pretty-diff # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 + - hw-kafka-client # missing exe https://github.com/commercialhaskell/stackage/pull/5542 + - invertible # https://github.com/dylex/invertible/issues/4 + - language-docker # https://github.com/commercialhaskell/stackage/issues/5407 + - lzma-conduit # https://github.com/alphaHeavy/lzma-conduit/issues/19 + - pandoc # https://github.com/jgm/pandoc/issues/5582 + - password # Module not visible https://github.com/cdepillabout/password/issues/2 + - password-instances # Module not visible https://github.com/commercialhaskell/stackage/issues/4653 + - pcg-random # https://github.com/cchalmers/pcg-random/pull/7 + - persistent-mongoDB # Requires a running server + - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/4764 + - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/4763 + - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 + - poly + - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both + - raaz # https://github.com/commercialhaskell/stackage/issues/4784 + - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 + - relude # doctest fails due to GHC bugs, will be fixed in the next `relude` release + - sbv + - servant-elm # https://github.com/haskell-servant/servant-elm/issues/62 + - servant-ruby # Module not visible https://github.com/commercialhaskell/stackage/issues/4650 + - skews # https://github.com/iij-ii/direct-hs/issues/100 + - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 + - tar-conduit # to get fixed in version after 0.3.2 https://github.com/snoyberg/tar-conduit/issues/28 + - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4722 + - threads # https://github.com/basvandijk/threads/issues/10 + - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 + - yesod-core # https://github.com/yesodweb/yesod/issues/1711 + + # Please review the sections above before adding packages to a new section or to Misc. + +# end of expected-test-failures + + +# Haddocks which are expected to fail. Same concept as expected test failures. +expected-haddock-failures: + + # Requires build before haddock, which doesn't always happen in incremental + # builds. Could consider special-casing this requirement. + - gtk3 + + # Intermittent failures or unreliable. These may pass when + # re-enabled, but will eventually fail again. Only remove these + # from expected-haddock-failures if we know a fix has been released. + - gi-gtk # Uses all memory + + # Problem on the stackage build server, we need to dig deeper into + # these if we want them fixed + + # internal error when calculating transitive package dependencies + - hw-balancedparens + - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 + - hw-json # https://github.com/commercialhaskell/stackage/issues/5014 + - hw-rankselect + +# end of expected-haddock-failures + +# For packages with haddock issues +skipped-haddocks: +- modular # Module uses compiler plugins https://github.com/haskell/haddock/issues/900 +# end of skipped-haddocks + +# Benchmarks which are known not to build. Note that, currently we do not run +# benchmarks, and therefore failures are only for building, not running. +expected-benchmark-failures: + # Compilation failures + - OrderedBits + - aeson-combinators + - cipher-blowfish # https://github.com/vincenthz/hs-crypto-cipher/issues/46 + - cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5 + - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 + - egison # https://github.com/egison/egison/issues/249 + - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 + - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 + - incremental-parser # 0.5.0.2 + - lz4 # https://github.com/fpco/stackage/issues/3510 + - raaz # https://github.com/commercialhaskell/stackage/issues/4766 + - serialise # https://github.com/commercialhaskell/stackage/issues/6340 + - thyme + - universum + - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 + + +# end of expected-benchmark-failures + + +# Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. +# By skipping a benchmark, we do not pull in the build dependencies +# Packages should only be added here if required by `stackage-curator check' +# or if Setup fails because of missing foreign libraries. +# Otherwise place them in expected-benchmark-failures. +skipped-benchmarks: + # aeson-2 + - jsonifier + + # Cyclic dependencies + - attoparsec + - case-insensitive + - cassava + - clock + - criterion + - foundation + - hashable # https://github.com/fpco/stackage/issues/1818 + - hspec + - nanospec + - scientific + - vector-binary-instances + + # Timeouts + - gogol-youtube + + # Very resource intensive + - OpenGLRaw + - pandoc + - git-annex + + # Maintainers who don't want to update benchmarks + # Only re-enable if requested. + ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 + - cassava + - cryptohash-md5 + - cryptohash-sha1 + - cryptohash-sha256 + - uuid + - uuid-types + # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 + - base-prelude + - bytestring-strict-builder + - bytestring-tree-builder + - cases + - focus + - hasql + - hasql-pool + - list-t + - mtl-prelude + - neat-interpolation + - partial-handler + - postgresql-binary + - refined + - slave-thread + - stm-containers + - vector-builder + # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 + - fgl + - fgl-arbitrary + - graphviz + - graphviz + - wl-pprint-text + # @phadej + - dlist-nonempty # criterion-1.3 + - splitmix # criterion-1.3 + # @sjakobi + - prettyprinter + - prettyprinter-ansi-terminal # https://github.com/commercialhaskell/stackage/issues/5560 + + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. + # + # Benchmark bounds issues + - IntervalMap # tried IntervalMap-0.6.1.2, but its *benchmarks* requires the disabled package: SegmentTree + - accelerate-bignum # tried accelerate-bignum-0.3.0.0, but its *benchmarks* requires the disabled package: accelerate-io-vector + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: accelerate-llvm-native-1.3.0.0 + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: criterion-1.5.11.0 + - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* does not support: criterion-1.5.11.0 + - buffer-builder # tried buffer-builder-0.2.4.7, but its *benchmarks* requires the disabled package: json-builder + - chronos # tried chronos-1.1.3, but its *benchmarks* requires the disabled package: thyme + - cipher-aes # tried cipher-aes-0.2.11, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - cipher-camellia # tried cipher-camellia-0.0.2, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - cipher-des # tried cipher-des-0.0.6, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - cipher-rc4 # tried cipher-rc4-0.1.4, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks + - distributed-process # tried distributed-process-0.7.4, but its *benchmarks* does not support: network-transport-tcp-0.8.0 + - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* does not support: criterion-1.5.11.0 + - elynx-tree # tried elynx-tree-0.6.1.0, but its *benchmarks* requires the disabled package: elynx-tools + - extensible-effects # tried extensible-effects-5.0.0.1, but its *benchmarks* requires the disabled package: test-framework-th + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: aeson-1.5.6.0 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: time-1.9.3 + - hip # tried hip-1.5.6.0, but its *benchmarks* requires the disabled package: repa-algorithms + - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *benchmarks* requires the disabled package: hw-hspec-hedgehog + - o-clock # tried o-clock-1.2.1, but its *benchmarks* requires the disabled package: tiempo + - polysemy # tried polysemy-1.6.0.0, but its *benchmarks* requires the disabled package: freer-simple + - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: PSQueue + - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: fingertree-psqueue + - regex-applicative # tried regex-applicative-0.3.4, but its *benchmarks* requires the disabled package: parsers-megaparsec + - sbv # tried sbv-8.17, but its *benchmarks* requires the disabled package: bench-show + - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* does not support: criterion-1.5.11.0 + - superbuffer # tried superbuffer-0.3.1.1, but its *benchmarks* does not support: criterion-1.5.11.0 + - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: criterion-plus + - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: stm-stats + - typerep-map # tried typerep-map-0.4.0.0, but its *benchmarks* requires the disabled package: dependent-sum + - tz # tried tz-0.1.3.5, but its *benchmarks* requires the disabled package: thyme + - unicode-transforms # tried unicode-transforms-0.3.8, but its *benchmarks* does not support: path-0.9.1 + - xxhash-ffi # tried xxhash-ffi-0.2.0.0, but its *benchmarks* requires the disabled package: xxhash + # End of Benchmark bounds issues + +# end of skipped-benchmarks + + +skipped-profiling: + # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 + - ghc-heap-view + + +# Mapping from Github account holding a package to the Github users who should +# be pinged on failure. If no value is specified here, then the owning account +# will be pinged. +github-users: + diagrams: + - byorgey + - fryguybob + - jeffreyrosenbluth + - bergey + yesodweb: + - snoyberg + fpco: + - snoyberg + faylang: + - bergmark + silkapp: + - bergmark + - hesselink + snapframework: + - mightybyte + haskell-ro: + - mihaimaruseac + elm-lang: + - JoeyEremondi + prowdsponsor: + - meteficha + analytics: + - ekmett + haskell-openal: + - svenpanne + haskell-opengl: + - ekmett + - svenpanne + lambdabot: + - DanBurton + - mokus0 + haskell-game: + - ocharles + Happstack: + - stepcut + clckwrks: + - stepcut + stackbuilders: + - jsl + - sestrella + - juanpaucar + - CristhianMotoche + scotty-web: + - RyanGlScott + - xich + ku-fpg: + - RyanGlScott + haskell-compat: + - RyanGlScott + vivid: + - vivid-synth + midair: + - vivid-synth + nano-erl: + - vivid-synth + telegram-api: + - klappvisor + fpinsight: + - thierry-b + arithmoi: + - Bodigrim + - cartazio + IxpertaSolutions: + - Siprj + - liskin + - trskop + - xkollar + ekmett: + - RyanGlScott + onrock-eng: + - donkeybonks + tweag: + - bazel-runfiles + network-multicast: + - audreyt + xmonad: + - byorgey + - dmwit + - geekosaur + - liskin + - psibi + - slotThe + +# end of github-users + +# begin build-tool-overrides +# +# Used to set a mapping from build tools to package names, ignoring the +# metadata on Hackage itself + +build-tool-overrides: + # Ignore the cabal-install-ghc72 and cabal-install-ghc74 packages + cabal: + - cabal-install + +# end build-tool-overrides + +# Useful for checking for strict upper bounds against new versions of core +# packages, e.g. when a new version of transformers is released +# +# treat-as-non-core: +# - transformers + +# Give an error if the latest package version doesn't match what's +# listed below, see: +# https://github.com/fpco/stackage-curator/issues/25 +# +# Example: +# If bindings-GLFW-3.1.2.1 is the current latest version write +# - bindings-GLFW-3.1.2.1 # Comment saying what should be done when the new version is released +tell-me-when-its-released: [] + +# Packages which should be hidden after registering, to avoid module name +# conflicts. This is intended for at least two use cases: +# +# * Making doctests pass (https://github.com/yesodweb/wai/issues/579) +# +# * Allowing tools like Stack to get a mapping from module name to package name +# for automatically installing dependencies +hide: +- HTF # conflicts with Test.Framework in test-framework +- async-dejafu # https://github.com/yesodweb/wai/issues/579 +- base-compat # conflicts with base-compat-batteries, see https://github.com/fpco/stackage/issues/3607 +- base-noprelude # By design, conflicts with base +- binary-ieee754 # conflicts with data-binary-ieee754 +- cipher-aes # Cryptonite deprecation +- cipher-blowfish # Cryptonite deprecation +- cipher-camellia # Cryptonite deprecation +- cipher-des # Cryptonite deprecation +- cipher-rc4 # Cryptonite deprecation +- constraint # conflicts with constraints +- control-monad-free # conflicts with Control.Monad.Free in free +- courier # conflicts with Network.Transport in network-transport +- crypto-api # `module Crypto.Random` conflicts with cryptonite +- crypto-cipher-types # Cryptonite deprecation +- crypto-numbers # Cryptonite deprecation +- crypto-pubkey # Cryptonite deprecation +- crypto-random # Cryptonite deprecation +- cryptohash # Cryptonite deprecation +- cryptohash-conduit # Cryptonite deprecation +- cryptohash-md5 # cryptohash fork +- cryptohash-sha1 # cryptohash fork +- cryptohash-sha256 # cryptohash fork +- fay-base # conflicts with many modules in base and others +- filemanip # conflicts with System.FilePath.Glob in Glob +- ghc-lib # per its own recommendation. conflicts with template-haskell +- ghc-lib-parser # also conflicts with template-haskell +- gl # conflicts with modules in OpenGLRaw +- gtk3 # conflicts with many modules in gtk +- hashmap # conflicts with Data.HashSet in unordered-containers +- hledger-web # conflicts with Foundation in foundation +- hs-functors # conflicts with profunctors, see #3609/closed +- hxt-unicode # conflicts with Data.String.UTF8 in utf8-string +- kawhi # conflicts with Control.Monad.Http in monad-http +- language-c # conflicts with modules in language-c-quote +- lenz # conflicts with lens, see https://github.com/fpco/stackage/issues/3600 +- log # conflicts with modules in its dependencies +- matrices # conflicts with matrix +- monad-extras # conflicts with Control.Monad.Extra in extra +- monads-tf # mtl is preferred +- nanospec # conflicts with Test.Hspec in hspec +- objective # conflicts with Control.Object in natural-transformation +- plot-gtk3 # conflicts with many modules in plot-gtk +- pretty-class # conflicts with pretty and prettyclass +- prettyclass # conflicts with pretty and pretty-class +- prompt # conflicts with Control.Monad.Prompt in MonadPrompt +- regex-compat-tdfa # conflicts with many modules in regex-compat +- regex-pcre-builtin # conflicts with many modules in regex-pcre +- rerebase # conflicts with base +- svg-tree # conflicts with Graphics.Svg in svg-builder +- temporary-rc # conflicts with temporary +- temporary-resourcet # conflicts with temporary +- zip # conflicts with Codec.Archive.Zip in zip-archive + + +# Experimental: packages where Hackage cabal file revisions should be ignored. +# +# This always use the cabal file shipped with the sdist tarball instead of the latest revision. +# +# This only supports pinning to the initial release (revision 0), not to an arbitrary revision. +no-revisions: +- hjsonpointer +- tls +- mime-mail +- basement +- cryptonite +- foundation +- gauge +- stack +- http-download +- pantry +- rio-prettyprint +- hi-file-parser + + +# Do not build these packages in parallel with others. Useful for high memory +# usage. +non-parallel-builds: +- pandoc +- gogol-dfareporting +- gogol-compute +- idris +- amazonka-ec2 +- massiv-persist +- massiv-serialise From 1b5dbbc9b2e4e98ccc4cc6ab7173dad95b378570 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 13 Dec 2021 00:09:08 +0100 Subject: [PATCH 04/14] generated lts-build-constraints.yaml --- lts-build-constraints.yaml | 7472 ++++++++++++++++++------------------ 1 file changed, 3736 insertions(+), 3736 deletions(-) diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml index 81161b6e2..4cd0d7938 100644 --- a/lts-build-constraints.yaml +++ b/lts-build-constraints.yaml @@ -11,1960 +11,1960 @@ cabal-format-version: "3.0" packages: "Lukas Epple @sternenseemann": - - socket - - spacecookie - - gopher-proxy - - filepath-bytestring < 1.4.2.1.10 # https://github.com/commercialhaskell/stackage/issues/6355 - - download-curl - - cabal2nix - - distribution-nixpkgs - - hackage-db - - language-nix - - jailbreak-cabal + - socket ^>= 0.8.3.0 + - spacecookie ^>= 1.0.0.1 + - gopher-proxy ^>= 0.1.1.3 + - filepath-bytestring ^>= 1.4.2.1.9 && <1.4.2.1.10 # https://github.com/commercialhaskell/stackage/issues/6355 + - download-curl ^>= 0.1.4 + - cabal2nix ^>= 2.18.0 + - distribution-nixpkgs ^>= 1.6.2 + - hackage-db ^>= 2.1.2 + - language-nix ^>= 2.2.0 + - jailbreak-cabal ^>= 1.3.5 "Profpatsch @Profpatsch": - - error - - yarn-lock + - error ^>= 0.2.1.2 + - yarn-lock ^>= 0.6.5 "James Sully @sullyj3": - - buttplug-hs-core + - buttplug-hs-core ^>= 0.1.0.1 "Manuel Schneckenreither @schnecki": - - experimenter - - api-maker - - easy-logger + - experimenter ^>= 0.1.0.12 + - api-maker ^>= 0.1.0.0 + - easy-logger ^>= 0.1.0.4 "Kamil Dworakowski @luntain": - - error-or - - error-or-utils - - inbox - - mock-time + - error-or ^>= 0.2.0.0 + - error-or-utils ^>= 0.2.0 + - inbox ^>= 0.2.0 + - mock-time ^>= 0.1.0 "Liang-Ting Chen @L-TChen": - - geniplate-mirror + - geniplate-mirror ^>= 0.7.8 "Andreas Abel @andreasabel": - - BNFC - - Sit - - STMonadTrans - - Agda - - agda2lagda - - cabal-clean - - ListLike - - haskell-src - - fix-whitespace - - hs-tags - - goldplate - - hasktags - - regex-base - - regex-compat - - regex-pcre - - regex-posix - - regex-posix-clib - - regex-tdfa - - java-adt - - tasty-silver + - BNFC ^>= 2.9.3 + - Sit ^>= 0.2021.1.18 + - STMonadTrans ^>= 0.4.6 + - Agda ^>= 2.6.2.1 + - agda2lagda ^>= 0.2021.6.1 + - cabal-clean ^>= 0.1.20210924 + - ListLike ^>= 4.7.6 + - haskell-src ^>= 1.0.3.1 + - fix-whitespace ^>= 0.0.7 + - hs-tags ^>= 0.1.5.2 + - goldplate ^>= 0.2.0 + - hasktags ^>= 0.72.0 + - regex-base ^>= 0.94.0.2 + - regex-compat ^>= 0.95.2.1 + - regex-pcre ^>= 0.95.0.0 + - regex-posix ^>= 0.96.0.1 + - regex-posix-clib ^>= 2.7 + - regex-tdfa ^>= 1.3.1.1 + - java-adt ^>= 0.2018.11.4 + - tasty-silver ^>= 3.3.1 "Diogo Biazus ": - - hasql-notifications + - hasql-notifications ^>= 0.2.0.0 "David James @davjam": - - MapWith + - MapWith < 0 "Bernie Pope @bjpop": - - language-python + - language-python ^>= 0.5.8 "Nils Alex @nilsalex": - - safe-tensor + - safe-tensor < 0 "Artur Gajowy @ArturGajowy": - - ghc-clippy-plugin + - ghc-clippy-plugin < 0 "Daniel Rolls @danielrolls": - - byte-count-reader + - byte-count-reader ^>= 0.10.1.7 "Allan Lukwago @epicallan": - - servant-errors + - servant-errors < 0 "Christian Charukiewicz @charukiewicz": - - isbn + - isbn ^>= 1.1.0.2 "Koz Ross @kozross": - - medea + - medea < 0 "Marcin RzeĆșnicki @marcin-rzeznicki": - - hspec-tables - - stackcollapse-ghc - - libjwt-typed + - hspec-tables < 0 + - stackcollapse-ghc ^>= 0.0.1.4 + - libjwt-typed < 0 "Mauricio Fierro @mauriciofierrom": - - dialogflow-fulfillment + - dialogflow-fulfillment < 0 "Mihai Giurgeanu @mihaigiurgeanu": - - sqlcli - - sqlcli-odbc + - sqlcli ^>= 0.2.2.0 + - sqlcli-odbc ^>= 0.2.0.1 # not a maintainer - - logging + - logging ^>= 3.0.5 "Sasha Bogicevic @v0d1ch": - - plaid + - plaid ^>= 0.1.0.4 "Geoffrey Mainland @mainland": - - exception-mtl - - exception-transformers - - mainland-pretty - - ref-fd - - ref-tf - - srcloc - - symbol + - exception-mtl ^>= 0.4.0.1 + - exception-transformers ^>= 0.4.0.11 + - mainland-pretty ^>= 0.7.1 + - ref-fd ^>= 0.5 + - ref-tf ^>= 0.5.0.1 + - srcloc ^>= 0.6 + - symbol ^>= 0.2.4 "Patrick Bahr ": - - equivalence - - compdata - - Rattus + - equivalence ^>= 0.3.5 + - compdata < 0 + - Rattus ^>= 0.5.0.1 "Rob Stewart @robstewart57": - - gitlab-haskell + - gitlab-haskell ^>= 0.3.2.0 "Callan McGill @callanmcgill": - - perfect-vector-shuffle + - perfect-vector-shuffle < 0 "Luke Clifton @luke-clifton": - - generic-monoid + - generic-monoid ^>= 0.1.0.1 "Tobias Reinhart @TobiReinhart": - - sparse-tensor + - sparse-tensor ^>= 0.2.1.5 "Stephan Schiffels @stschiff": - - sequence-formats - - pipes-ordered-zip - - sequenceTools + - sequence-formats < 0 + - pipes-ordered-zip ^>= 1.2.1 + - sequenceTools < 0 "YongJoon Joe @QuietJoon": - - doldol - - ENIG + - doldol ^>= 0.4.1.2 + - ENIG ^>= 0.0.1.0 "Chris Penner @ChrisPenner": - - eve - - lens-regex-pcre - - lens-csv - - selections - - slick - - unipatterns + - eve < 0 + - lens-regex-pcre ^>= 1.1.0.0 + - lens-csv ^>= 0.1.1.0 + - selections ^>= 0.3.0.0 + - slick ^>= 1.1.2.2 + - unipatterns ^>= 0.0.0.0 "Emily Pillmore @topos": - - base16 - - base16-lens - - base32 - - base32-lens - - base64 - - base64-lens - - lens-process - - microlens-process - - nonempty-vector - - smash - - smash-aeson - - smash-microlens - - smash-lens - - strict-tuple - - strict-tuple-lens + - base16 ^>= 0.3.0.2 + - base16-lens ^>= 0.1.3.2 + - base32 ^>= 0.2.1.0 + - base32-lens ^>= 0.1.1.1 + - base64 ^>= 0.4.2.3 + - base64-lens ^>= 0.3.1 + - lens-process ^>= 0.4.0.0 + - microlens-process ^>= 0.2.0.2 + - nonempty-vector ^>= 0.2.1.0 + - smash ^>= 0.1.2 + - smash-aeson ^>= 0.1.0.0 + - smash-microlens ^>= 0.1.0.0 + - smash-lens < 0 + - strict-tuple < 0 + - strict-tuple-lens < 0 "Matthieu Monsch @mtth": - - flags-applicative - - more-containers - - tracing + - flags-applicative ^>= 0.1.0.3 + - more-containers ^>= 0.2.2.2 + - tracing ^>= 0.0.7.2 "Robert Vollmert @robx": - - configurator-pg - - postgrest + - configurator-pg < 0 + - postgrest < 0 "Sandy Maguire @isovector": - - ecstasy - - interpolatedstring-qq2 - - prospect - - do-notation - - unagi-chan - - type-errors + - ecstasy ^>= 0.2.1.0 + - interpolatedstring-qq2 < 0 + - prospect ^>= 0.1.0.0 + - do-notation ^>= 0.1.0.2 + - unagi-chan ^>= 0.4.1.4 + - type-errors ^>= 0.2.0.0 "Matej Niznik @TheMatten": - - polysemy - - polysemy-plugin - - polysemy-zoo - - loopbreaker + - polysemy ^>= 1.6.0.0 + - polysemy-plugin ^>= 0.4.1.1 + - polysemy-zoo < 0 + - loopbreaker < 0 "William Yao @williamyaoh": - - string-interpolate + - string-interpolate ^>= 0.3.1.1 "Roel van Dijk @roelvandijk": - - terminal-progress-bar + - terminal-progress-bar ^>= 0.4.1 "Marek Fajkus @turboMaCk": - - wai-enforce-https - - aeson-combinators + - wai-enforce-https ^>= 1.0.0.0 + - aeson-combinators ^>= 0.0.5.0 "Fernando Freire @dogonthehorizon": [] # - hal # #4288/closed "Nathan Fairhurst @iamfromspace": - - hal + - hal ^>= 0.4.8 "Daniel Taskoff @dtaskoff": - - hlibcpuid - - skip-var - - system-info + - hlibcpuid ^>= 0.2.0 + - skip-var ^>= 0.1.1.0 + - system-info ^>= 0.5.2 "Dzianis Kabanau @kobargh": - - template-toolkit + - template-toolkit ^>= 0.1.1.0 "Christopher Davenport @ChristopherDavenport": - - nonemptymap - - hinfo + - nonemptymap ^>= 0.0.6.0 + - hinfo ^>= 0.0.3.0 "Joerg Winter @clojj": - - rosezipper + - rosezipper ^>= 0.2 "Edward Wastell @edwardwas": - - TotalMap - - sized-grid + - TotalMap < 0 + - sized-grid < 0 "Antonio Alonso Dominguez @alonsodomin": - - hschema - - hschema-aeson - - hschema-prettyprinter - - hschema-quickcheck + - hschema < 0 + - hschema-aeson < 0 + - hschema-prettyprinter < 0 + - hschema-quickcheck < 0 "Preetham Gujjula @pgujjula": - - modular - - list-predicate + - modular ^>= 0.1.0.8 + - list-predicate ^>= 0.1.0.1 "Guillaume Bouchard @guibou": - - krank - - pretty-terminal - - PyF + - krank ^>= 0.2.3 + - pretty-terminal ^>= 0.1.0.0 + - PyF ^>= 0.10.1.0 "Erik Schnetter @eschnett": - - mpi-hs - - mpi-hs-binary - - mpi-hs-cereal + - mpi-hs ^>= 0.7.2.0 + - mpi-hs-binary ^>= 0.1.1.0 + - mpi-hs-cereal ^>= 0.1.0.0 "Yang Bo @Atry": - - control-dsl + - control-dsl ^>= 0.2.1.3 "Laurent P. RenĂ© de Cotret @LaurentRDC": - - pandoc-plot + - pandoc-plot ^>= 1.3.0 "Andrew Newman @andrewfnewman": - - geojson + - geojson ^>= 4.0.2 "Mateusz Karbowy @obszczymucha": - - parsec-numbers + - parsec-numbers ^>= 0.1.0 "Joshua Grosso @jgrosso": - - axel + - axel < 0 "Varun Gandhi @theindigamer": - - edit + - edit < 0 "Luka HadĆŸiegrić @reygoch": - - valor + - valor ^>= 1.0.0.0 "Scott N. Walck @walck": - - cyclotomic - - learn-physics - - TypeCompose + - cyclotomic ^>= 1.1.1 + - learn-physics ^>= 0.6.5 + - TypeCompose ^>= 0.9.14 # @ghorn - - not-gloss - - spatial-math + - not-gloss ^>= 0.7.7.0 + - spatial-math ^>= 0.5.0.1 "Phil de Joux @philderbeast": - - siggy-chardust - - detour-via-sci - - hpack-dhall + - siggy-chardust ^>= 1.0.0 + - detour-via-sci < 0 + - hpack-dhall ^>= 0.5.3 "Matthew Ahrens @mpahrens": - - forkable-monad - - butter + - forkable-monad ^>= 0.2.0.3 + - butter ^>= 0.1.0.6 "Iris Ward @AdituV": - - typenums + - typenums ^>= 0.1.4 "Jude Taylor @pikajude": - - th-printf + - th-printf ^>= 0.7 "Christian Marie @christian-marie": - - git-vogue + - git-vogue < 0 "Manuel BĂ€renz @turion": - - dunai - - rhine - - rhine-gloss - - finite-typelits - - essence-of-live-coding - - essence-of-live-coding-gloss - - essence-of-live-coding-pulse - - essence-of-live-coding-quickcheck - - pulse-simple - - simple-affine-space + - dunai ^>= 0.8.1 + - rhine < 0 + - rhine-gloss < 0 + - finite-typelits ^>= 0.1.4.2 + - essence-of-live-coding ^>= 0.2.5 + - essence-of-live-coding-gloss ^>= 0.2.5 + - essence-of-live-coding-pulse ^>= 0.2.5 + - essence-of-live-coding-quickcheck < 0 + - pulse-simple ^>= 0.1.14 + - simple-affine-space ^>= 0.1.1 "Paul Johnson @PaulJohnson": - - geodetics - - Ranged-sets + - geodetics ^>= 0.1.2 + - Ranged-sets ^>= 0.4.0 "Travis Athougies @tathougies": - - beam-core - - beam-migrate - - beam-mysql - - beam-postgres - - beam-sqlite + - beam-core < 0 + - beam-migrate < 0 + - beam-mysql < 0 + - beam-postgres < 0 + - beam-sqlite < 0 "Fraser Murray = 0.6.0.0 "Yusent Chig @yusent": - - yesod-auth-bcryptdb + - yesod-auth-bcryptdb < 0 "Johannes Gerer ": - - buchhaltung + - buchhaltung < 0 "Tom McLaughlin @thomasjm": - - aeson-typescript - - fsnotify - - sandwich - - sandwich-quickcheck - - sandwich-slack - - sandwich-webdriver - - slack-progressbar + - aeson-typescript ^>= 0.3.0.1 + - fsnotify ^>= 0.3.0.1 + - sandwich ^>= 0.1.0.9 + - sandwich-quickcheck ^>= 0.1.0.6 + - sandwich-slack ^>= 0.1.0.6 + - sandwich-webdriver < 0 + - slack-progressbar ^>= 0.1.0.1 "Paulo Tanaka @paulot": # on behalf of Bryan O'Sullivan @bos: - - zstd + - zstd ^>= 0.1.3.0 "Jacek Galowicz @tfc": - - hamtsolo + - hamtsolo ^>= 1.0.3 "Ferdinand van Walree @Ferdinand-vW": - - tuple-sop - - sessiontypes - - sessiontypes-distributed + - tuple-sop ^>= 0.3.1.0 + - sessiontypes < 0 + - sessiontypes-distributed < 0 "Jacob Thomas Errington @tsani": - - servant-github-webhook - - pushbullet-types + - servant-github-webhook ^>= 0.4.2.0 + - pushbullet-types ^>= 0.4.1.0 "Theodore Lief Gannon @tejon": - - aeson-yak - - safe-foldable + - aeson-yak ^>= 0.1.1.3 + - safe-foldable ^>= 0.1.0.0 "Jaro Reinders @Noughtmare": - - haskell-lsp-client + - haskell-lsp-client < 0 "Florian Knupfer @knupfer": - - type-of-html - - type-of-html-static - - chronos-bench + - type-of-html ^>= 1.6.2.0 + - type-of-html-static ^>= 0.1.0.2 + - chronos-bench < 0 "Mikolaj Konarski @Mikolaj": - - sdl2-ttf - - enummapset - - assert-failure - - minimorph - - miniutter - - LambdaHack - - Allure + - sdl2-ttf ^>= 2.1.2 + - enummapset ^>= 0.6.0.3 + - assert-failure ^>= 0.1.2.5 + - minimorph ^>= 0.3.0.0 + - miniutter ^>= 0.5.1.1 + - LambdaHack ^>= 0.10.3.0 + - Allure ^>= 0.10.3.0 "JĂŒrgen Keck @j-keck": - - wreq-stringless + - wreq-stringless ^>= 0.5.9.1 "Olaf Chitil @OlafChitil": - - FPretty + - FPretty < 0 "Maarten Faddegon @MaartenFaddegon": - - libgraph - - Hoed + - libgraph ^>= 1.14 + - Hoed < 0 "Agustin Camino @acamino": - - state-codes + - state-codes ^>= 0.1.3 "Sebastian Mihai Ardelean @ardeleanasm": - - qchas + - qchas ^>= 1.1.0.1 "Patrick Pelletier @ppelleti": - - mercury-api - - normalization-insensitive + - mercury-api ^>= 0.1.0.2 + - normalization-insensitive ^>= 2.0.2 "Jacob Stanley @jacobstanley": - - hedgehog - - hedgehog-quickcheck - - transformers-bifunctors - - unix-compat + - hedgehog ^>= 1.0.5 + - hedgehog-quickcheck ^>= 0.1.1 + - transformers-bifunctors ^>= 0.1 + - unix-compat ^>= 0.5.3 "Walter Schulze @awalterschulze": - - katydid + - katydid < 0 "Nobutada Matsubara @matsubara0507": - - chatwork - - rakuten - - servant-kotlin + - chatwork < 0 + - rakuten < 0 + - servant-kotlin < 0 "Pavol Klacansky @pavolzetor": - - openexr-write + - openexr-write ^>= 0.1.0.2 "Pasqualino Assini @tittoassini": # - zm - - flat - - model + - flat ^>= 0.4.4 + - model ^>= 0.5 "Jose Iborra @pepeiborra": # - arrowp-qq # build failure https://github.com/pepeiborra/arrowp/issues/8 - - haskell-src-exts-util - - hexml-lens - - hp2pretty - - floatshow - - ghc-check + - haskell-src-exts-util ^>= 0.2.5 + - hexml-lens < 0 + - hp2pretty ^>= 0.10 + - floatshow ^>= 0.2.4 + - ghc-check ^>= 0.5.0.6 "Roman Gonzalez @roman": - - componentm - - componentm-devel - - teardown - - etc - - capataz + - componentm ^>= 0.0.0.2 + - componentm-devel ^>= 0.0.0.2 + - teardown ^>= 0.5.0.1 + - etc ^>= 0.4.1.0 + - capataz ^>= 0.2.1.0 "Richard Cook @rcook": - - hidden-char - - oset - - req-url-extra - - sexpr-parser + - hidden-char < 0 + - oset < 0 + - req-url-extra < 0 + - sexpr-parser < 0 "Vanessa McHale @vmchale": - - bz2 + - bz2 ^>= 1.0.1.0 "Henning Thielemann @thielema": - - accelerate-arithmetic - - accelerate-fftw - - accelerate-fourier - - accelerate-utility - - align-audio - - alsa-core - - alsa-pcm - - alsa-seq - - apportionment - - audacity - - battleship-combinatorics - - bibtex - - board-games - - buffer-pipe - - cabal-flatpak - - calendar-recycling - - checksum - - combinatorial - - comfort-graph - - comfort-array - - comfort-array-shape - - comfort-fftw - - concurrent-split - - cutter - - data-accessor - - data-accessor-mtl - - data-accessor-template - - data-accessor-transformers - - data-ref - - doctest-exitcode-stdio - - doctest-extract - - doctest-lib - - dsp - - enumset - - equal-files - - event-list - - explicit-exception - - fixed-length - - fftw-ffi - - gnuplot - - group-by-date - - guarded-allocation - - iff - - interpolation - - jack - - latex - - lazyio - - markov-chain - - midi - - midi-alsa - - midi-music-box - - mbox-utility - - med-module - - monoid-transformer - - non-empty - - non-negative - - numeric-prelude - - numeric-quest - - pathtype - - pooled-io - - probability - - quickcheck-transformer - - sample-frame - - sample-frame-np - - set-cover - - shell-utility - - sound-collage - - sox - - soxlib - - split-record - - spreadsheet - - stm-split - - storable-record - - storable-tuple - - storablevector - - synthesizer-core - - synthesizer-dimensional - - synthesizer-alsa - - synthesizer-midi - - tagchup - - tfp - - unicode - - unique-logic - - unique-logic-tf - - unsafe - - utility-ht - - xml-basic - - youtube - - prelude-compat - - fft - - carray - - lapack-ffi-tools - - netlib-ffi - - blas-ffi - - lapack-ffi - - netlib-carray - - blas-carray - - lapack-carray - - netlib-comfort-array - - blas-comfort-array - - lapack-comfort-array - - lapack - - lapack-hmatrix - - hmm-lapack - - magico - - resistor-cube - - linear-circuit + - accelerate-arithmetic < 0 + - accelerate-fftw < 0 + - accelerate-fourier < 0 + - accelerate-utility < 0 + - align-audio ^>= 0.0 + - alsa-core ^>= 0.5.0.1 + - alsa-pcm ^>= 0.6.1.1 + - alsa-seq ^>= 0.6.0.8 + - apportionment ^>= 0.0.0.3 + - audacity ^>= 0.0.2 + - battleship-combinatorics ^>= 0.0.1 + - bibtex ^>= 0.1.0.6 + - board-games ^>= 0.3 + - buffer-pipe ^>= 0.0 + - cabal-flatpak ^>= 0.1.0.2 + - calendar-recycling ^>= 0.0.0.1 + - checksum ^>= 0.0 + - combinatorial ^>= 0.1.0.1 + - comfort-graph ^>= 0.0.3.1 + - comfort-array ^>= 0.5.1 + - comfort-array-shape ^>= 0.0 + - comfort-fftw ^>= 0.0 + - concurrent-split ^>= 0.0.1.1 + - cutter ^>= 0.0 + - data-accessor ^>= 0.2.3 + - data-accessor-mtl ^>= 0.2.0.4 + - data-accessor-template < 0 + - data-accessor-transformers ^>= 0.2.1.7 + - data-ref ^>= 0.0.2 + - doctest-exitcode-stdio ^>= 0.0 + - doctest-extract ^>= 0.1 + - doctest-lib ^>= 0.1 + - dsp ^>= 0.2.5.1 + - enumset ^>= 0.1 + - equal-files ^>= 0.0.5.3 + - event-list ^>= 0.1.2 + - explicit-exception ^>= 0.1.10 + - fixed-length ^>= 0.2.3 + - fftw-ffi ^>= 0.1 + - gnuplot ^>= 0.5.6.1 + - group-by-date ^>= 0.1.0.4 + - guarded-allocation ^>= 0.0.1 + - iff ^>= 0.0.6 + - interpolation ^>= 0.1.1.2 + - jack ^>= 0.7.2 + - latex ^>= 0.1.0.4 + - lazyio ^>= 0.1.0.4 + - markov-chain ^>= 0.0.3.4 + - midi ^>= 0.2.2.2 + - midi-alsa ^>= 0.2.1 + - midi-music-box < 0 + - mbox-utility ^>= 0.0.3.1 + - med-module ^>= 0.1.2.1 + - monoid-transformer ^>= 0.0.4 + - non-empty ^>= 0.3.3 + - non-negative ^>= 0.1.2 + - numeric-prelude ^>= 0.4.3.3 + - numeric-quest ^>= 0.2.0.2 + - pathtype ^>= 0.8.1.1 + - pooled-io ^>= 0.0.2.2 + - probability ^>= 0.2.7 + - quickcheck-transformer ^>= 0.3.1.1 + - sample-frame ^>= 0.0.3 + - sample-frame-np ^>= 0.0.4.1 + - set-cover ^>= 0.1.1 + - shell-utility ^>= 0.1 + - sound-collage ^>= 0.2.1 + - sox ^>= 0.2.3.1 + - soxlib ^>= 0.0.3.1 + - split-record ^>= 0.1.1.4 + - spreadsheet ^>= 0.1.3.8 + - stm-split ^>= 0.0.2.1 + - storable-record ^>= 0.0.6 + - storable-tuple ^>= 0.0.3.3 + - storablevector ^>= 0.2.13.1 + - synthesizer-core ^>= 0.8.2.1 + - synthesizer-dimensional ^>= 0.8.1 + - synthesizer-alsa ^>= 0.5.0.6 + - synthesizer-midi ^>= 0.6.1.1 + - tagchup ^>= 0.4.1.1 + - tfp ^>= 1.0.2 + - unicode ^>= 0.0.1.1 + - unique-logic ^>= 0.4 + - unique-logic-tf ^>= 0.5.1 + - unsafe ^>= 0.0 + - utility-ht ^>= 0.0.16 + - xml-basic ^>= 0.1.3.1 + - youtube ^>= 0.2.1.1 + - prelude-compat ^>= 0.0.0.2 + - fft ^>= 0.1.8.7 + - carray ^>= 0.1.6.8 + - lapack-ffi-tools ^>= 0.1.2.1 + - netlib-ffi ^>= 0.1.1 + - blas-ffi ^>= 0.1 + - lapack-ffi ^>= 0.0.3 + - netlib-carray ^>= 0.1 + - blas-carray ^>= 0.1.0.1 + - lapack-carray ^>= 0.0.3 + - netlib-comfort-array ^>= 0.0.0.2 + - blas-comfort-array ^>= 0.0.0.3 + - lapack-comfort-array ^>= 0.0.1 + - lapack ^>= 0.5 + - lapack-hmatrix ^>= 0.0.0.1 + - hmm-lapack ^>= 0.5 + - magico ^>= 0.0.2.3 + - resistor-cube ^>= 0.0.1.4 + - linear-circuit ^>= 0.1.0.4 # Not a maintainer - - cabal-plan - - topograph - - ix-shapable - - hsshellscript - - hyper - - storable-endian + - cabal-plan ^>= 0.7.2.1 + - topograph ^>= 1.0.0.1 + - ix-shapable ^>= 0.1.0 + - hsshellscript ^>= 3.5.0 + - hyper ^>= 0.2.1.1 + - storable-endian ^>= 0.2.6 "Jeremy Barisch-Rooney @barischrooneyj": - - threepenny-gui-flexbox + - threepenny-gui-flexbox < 0 "Romain Edelmann @redelmann": - - distribution + - distribution < 0 "Nikita Tchayka @nickseagull": - - ramus - - require - - tintin + - ramus ^>= 0.1.2 + - require ^>= 0.4.11 + - tintin < 0 # - aws-lambda-haskell-runtime # https://github.com/commercialhaskell/stackage/pull/4299 "Simon Jakobi @sjakobi": - - threepenny-gui - - newtype-generics - - bsb-http-chunked - - hspec-parsec - - checkers - - unordered-containers - - prettyprinter - - prettyprinter-ansi-terminal - - prettyprinter-compat-wl-pprint - - prettyprinter-compat-ansi-wl-pprint - - prettyprinter-compat-annotated-wl-pprint - - prettyprinter-convert-ansi-wl-pprint + - threepenny-gui < 0 + - newtype-generics ^>= 0.6.1 + - bsb-http-chunked ^>= 0.0.0.4 + - hspec-parsec ^>= 0 + - checkers ^>= 0.5.6 + - unordered-containers ^>= 0.2.16.0 + - prettyprinter ^>= 1.7.1 + - prettyprinter-ansi-terminal ^>= 1.1.3 + - prettyprinter-compat-wl-pprint ^>= 1.0.1 + - prettyprinter-compat-ansi-wl-pprint ^>= 1.0.2 + - prettyprinter-compat-annotated-wl-pprint ^>= 1.1 + - prettyprinter-convert-ansi-wl-pprint ^>= 1.1.2 "Joe M @joe9": - - logger-thread - - text-generic-pretty + - logger-thread < 0 + - text-generic-pretty < 0 "Li-yao Xia @Lysxia": - - ap-normalize - - boltzmann-samplers - - first-class-families - - generic-data - - generic-data-surgery - - generic-functor - - generic-random - - scanf - - show-combinators - - type-map - - quickcheck-higherorder - - test-fun + - ap-normalize ^>= 0.1.0.1 + - boltzmann-samplers ^>= 0.1.1.0 + - first-class-families ^>= 0.8.0.1 + - generic-data ^>= 0.9.2.1 + - generic-data-surgery ^>= 0.3.0.0 + - generic-functor ^>= 0.2.0.0 + - generic-random ^>= 1.5.0.1 + - scanf ^>= 0.1.0.0 + - show-combinators ^>= 0.2.0.0 + - type-map < 0 + - quickcheck-higherorder ^>= 0.1.0.0 + - test-fun ^>= 0.1.0.0 "Tobias Dammers @tdammers": - - ginger - - yeshql + - ginger < 0 + - yeshql < 0 "Yair Chuchem @yairchu": - - generic-constraints - - List - - ListTree + - generic-constraints ^>= 1.1.1.1 + - List ^>= 0.6.2 + - ListTree ^>= 0.2.3 "Marco Zocca @ocramz": - - ad-delcont - - sparse-linear-algebra - - depq - - matrix-market-attoparsec - - splitmix-distributions - - rp-tree - - xeno - - bytestring-mmap # required by xeno - - datasets - - lucid-extras - - mnist-idx-conduit - - rigel-viz + - ad-delcont ^>= 0.3.0.0 + - sparse-linear-algebra ^>= 0.3.1 + - depq ^>= 0.4.2 + - matrix-market-attoparsec ^>= 0.1.1.3 + - splitmix-distributions ^>= 0.9.0.0 + - rp-tree ^>= 0.7.1 + - xeno ^>= 0.4.3 + - bytestring-mmap ^>= 0.2.2 # required by xeno + - datasets ^>= 0.4.0 + - lucid-extras ^>= 0.2.2 + - mnist-idx-conduit ^>= 0.4.0.0 + - rigel-viz ^>= 0.2.0.0 "Joseph Canero @caneroj1": - - sqlite-simple-errors - - median-stream - - stm-supply - - filter-logger - - tile - - mbtiles + - sqlite-simple-errors < 0 + - median-stream ^>= 0.7.0.0 + - stm-supply ^>= 0.2.0.0 + - filter-logger ^>= 0.6.0.0 + - tile ^>= 0.3.0.0 + - mbtiles ^>= 0.6.0.0 "James M.C. Haver II @mchaver": - - quickcheck-arbitrary-adt - - hspec-golden-aeson - - quickcheck-arbitrary-template + - quickcheck-arbitrary-adt ^>= 0.3.1.0 + - hspec-golden-aeson ^>= 0.9.0.0 + - quickcheck-arbitrary-template < 0 "Winter Han @winterland1989": - - if - - tcp-streams - - tcp-streams-openssl - - wire-streams - - binary-parsers - - binary-ieee754 - - word24 - - mysql-haskell - - mysql-haskell-openssl - - data-has - - unboxed-ref + - if ^>= 0.1.0.0 + - tcp-streams ^>= 1.0.1.1 + - tcp-streams-openssl < 0 + - wire-streams ^>= 0.1.1.0 + - binary-parsers ^>= 0.2.4.0 + - binary-ieee754 ^>= 0.1.0.0 + - word24 < 0 + - mysql-haskell < 0 + - mysql-haskell-openssl < 0 + - data-has ^>= 0.4.0.0 + - unboxed-ref ^>= 0.4.0.0 "Harendra Kumar @harendra-kumar": - - bench-show - - monad-recorder - - packcheck - - streamly - - unicode-transforms < 0.4 # https://github.com/commercialhaskell/stackage/issues/6337 - - xls + - bench-show < 0 + - monad-recorder < 0 + - packcheck ^>= 0.6.0 + - streamly ^>= 0.8.1.1 + - unicode-transforms ^>= 0.3.8 && <0.4 # https://github.com/commercialhaskell/stackage/issues/6337 + - xls < 0 "Pranay Sashank @pranaysashank": - - fusion-plugin-types - - fusion-plugin + - fusion-plugin-types ^>= 0.1.0 + - fusion-plugin ^>= 0.2.3 "Adithya Kumar @adithyaov": - - unicode-data + - unicode-data ^>= 0.1.0.1 "Aleksey Uimanov @s9gf4ult": # - postgresql-query # build errors - - hreader - - hset - - base58-bytestring + - hreader ^>= 1.1.0 + - hset ^>= 2.2.0 + - base58-bytestring ^>= 0.1.0 "Aaron Taylor @hamsterdam": - - kawhi + - kawhi ^>= 0.3.0 "Schell Scivally @schell": - - renderable - - varying + - renderable ^>= 0.2.0.1 + - varying ^>= 0.8.1.0 "Nicolas Mattia @nmattia": - - makefile + - makefile < 0 "Siddharth Bhat @bollu": - - symengine + - symengine ^>= 0.1.2.0 "alpheccar @alpheccar": - - HPDF + - HPDF ^>= 1.5.3 "Dmitry Bogatov @iu-guest": - - once - - mbug + - once ^>= 0.4 + - mbug < 0 "David Johnson @dmjio": - - miso - - envy - - s3-signer - - google-translate - - hackernews - - ses-html - - stripe-haskell - - stripe-http-client - - stripe-core - - stripe-tests + - miso ^>= 1.7.1.0 + - envy ^>= 2.1.0.0 + - s3-signer ^>= 0.5.0.0 + - google-translate < 0 + - hackernews < 0 + - ses-html ^>= 0.4.0.0 + - stripe-haskell ^>= 2.6.2 + - stripe-http-client ^>= 2.6.2 + - stripe-core ^>= 2.6.2 + - stripe-tests < 0 "Piotr Mlodawski @pmlodawski": - error-util < 0 # MonadFail - - signal + - signal ^>= 0.1.0.4 "Michael Snoyman michael@snoyman.com @snoyberg": - - bzlib-conduit - - case-insensitive - - classy-prelude-yesod - - conduit-combinators - - conduit-extra - - hebrew-time - - markdown - - mime-mail - - mime-mail-ses - - mime-types - - network-conduit-tls - - persistent - - persistent-mysql - - persistent-postgresql - - persistent-sqlite - - persistent-template - - persistent-test - - store - - wai-extra - - wai-websockets - - warp-tls - - yesod - - authenticate - - html-conduit - - yesod-auth - - authenticate-oauth - - yesod-bin - - yesod-eventsource - - yesod-gitrepo - - yesod-newsfeed - - yesod-sitemap - - yesod-static - - yesod-test - - yesod-websockets - - cereal-conduit - - binary-conduit - - lzma-conduit - - mutable-containers - - hpc-coveralls - - monad-unlift - - monad-unlift-ref - - yaml - - servius - - cryptonite-conduit - - streaming-commons - - - alex - - async - - base16-bytestring - - csv-conduit - - executable-hash - - executable-path - - foreign-store - - formatting - - gtk2hs-buildtools - - happy - - hybrid-vectors - - indents - - language-c - - persistent-mongoDB - - pretty-class - - th-expand-syns - - th-lift - - quickcheck-assertions - - - wai-middleware-crowd - - monad-logger-json - - safe-exceptions - - fsnotify-conduit - - pid1 - - typed-process - - say - - unliftio-core - - unliftio - - - hinotify - - hfsevents - - Win32-notify - - windns - - - mono-traversable - - http-client - - http-conduit - - githash - - - time-manager - - pantry - - mega-sdist - - http-download - - hi-file-parser - - rio-prettyprint - - packdeps + - bzlib-conduit ^>= 0.3.0.2 + - case-insensitive ^>= 1.2.1.0 + - classy-prelude-yesod ^>= 1.5.0 + - conduit-combinators ^>= 1.3.0 + - conduit-extra ^>= 1.3.5 + - hebrew-time ^>= 0.1.2 + - markdown ^>= 0.1.17.5 + - mime-mail ^>= 0.5.1 + - mime-mail-ses ^>= 0.4.3 + - mime-types ^>= 0.1.0.9 + - network-conduit-tls ^>= 1.3.2 + - persistent ^>= 2.13.2.1 + - persistent-mysql ^>= 2.13.0.2 + - persistent-postgresql ^>= 2.13.2.1 + - persistent-sqlite ^>= 2.13.0.3 + - persistent-template ^>= 2.12.0.0 + - persistent-test ^>= 2.13.0.3 + - store ^>= 0.7.14 + - wai-extra ^>= 3.1.7 + - wai-websockets ^>= 3.0.1.2 + - warp-tls ^>= 3.3.2 + - yesod ^>= 1.6.1.2 + - authenticate ^>= 1.3.5 + - html-conduit ^>= 1.3.2.2 + - yesod-auth < 0 + - authenticate-oauth ^>= 1.7 + - yesod-bin ^>= 1.6.1 + - yesod-eventsource ^>= 1.6.0.1 + - yesod-gitrepo ^>= 0.3.0 + - yesod-newsfeed ^>= 1.7.0.0 + - yesod-sitemap ^>= 1.6.0 + - yesod-static ^>= 1.6.1.0 + - yesod-test ^>= 1.6.12 + - yesod-websockets ^>= 0.3.0.3 + - cereal-conduit ^>= 0.8.0 + - binary-conduit ^>= 1.3.1 + - lzma-conduit ^>= 1.2.2 + - mutable-containers ^>= 0.3.4 + - hpc-coveralls < 0 + - monad-unlift < 0 + - monad-unlift-ref < 0 + - yaml ^>= 0.11.7.0 + - servius ^>= 1.2.3.0 + - cryptonite-conduit ^>= 0.2.2 + - streaming-commons ^>= 0.2.2.3 + + - alex ^>= 3.2.6 + - async ^>= 2.2.4 + - base16-bytestring ^>= 1.0.2.0 + - csv-conduit ^>= 0.7.3.0 + - executable-hash ^>= 0.2.0.4 + - executable-path ^>= 0.0.3.1 + - foreign-store ^>= 0.2 + - formatting ^>= 7.1.3 + - gtk2hs-buildtools ^>= 0.13.8.2 + - happy ^>= 1.20.0 + - hybrid-vectors ^>= 0.2.2 + - indents ^>= 0.5.0.1 + - language-c ^>= 0.9.0.1 + - persistent-mongoDB ^>= 2.13.0.0 + - pretty-class ^>= 1.0.1.1 + - th-expand-syns ^>= 0.4.9.0 + - th-lift ^>= 0.8.2 + - quickcheck-assertions ^>= 0.3.0 + + - wai-middleware-crowd < 0 + - monad-logger-json ^>= 0.1.0.0 + - safe-exceptions ^>= 0.1.7.2 + - fsnotify-conduit ^>= 0.1.1.1 + - pid1 ^>= 0.1.3.0 + - typed-process ^>= 0.2.8.0 + - say ^>= 0.1.0.1 + - unliftio-core ^>= 0.2.0.1 + - unliftio ^>= 0.2.20 + + - hinotify ^>= 0.4.1 + - hfsevents ^>= 0.1.6 + - Win32-notify ^>= 0.3.0.3 + - windns ^>= 0.1.0.1 + + - mono-traversable ^>= 1.0.15.3 + - http-client ^>= 0.7.9 + - http-conduit ^>= 2.3.8 + - githash ^>= 0.1.6.2 + + - time-manager ^>= 0.0.0 + - pantry < 0 + - mega-sdist < 0 + - http-download ^>= 0.2.0.0 + - hi-file-parser ^>= 0.1.2.0 + - rio-prettyprint ^>= 0.1.1.0 + - packdeps < 0 "Brandon Barker @bbarker": - - unexceptionalio - - unexceptionalio-trans - - zio + - unexceptionalio ^>= 0.5.1 + - unexceptionalio-trans ^>= 0.5.1 + - zio ^>= 0.1.0.2 "Omari Norman @massysett": - - rainbow - - rainbox - - multiarg - - ofx - - accuerr - - timelens - - squeather + - rainbow ^>= 0.34.2.2 + - rainbox ^>= 0.26.0.0 + - multiarg ^>= 0.30.0.10 + - ofx ^>= 0.4.4.0 + - accuerr < 0 + - timelens ^>= 0.2.0.2 + - squeather ^>= 0.8.0.0 "Neil Mitchell @ndmitchell": - - hlint - - hoogle - - shake - - tagsoup - - cmdargs - - safe - - uniplate - - nsis - - js-jquery - - js-flot - - js-dgtable - - extra - - ghcid - - hexml - - profiterole - - record-dot-preprocessor - - filepattern - - record-hasfield - - rattle - - hie-bios - - fuzzy + - hlint ^>= 3.3.4 + - hoogle ^>= 5.0.18.2 + - shake ^>= 0.19.6 + - tagsoup ^>= 0.14.8 + - cmdargs ^>= 0.10.21 + - safe ^>= 0.3.19 + - uniplate ^>= 1.6.13 + - nsis ^>= 0.3.3 + - js-jquery ^>= 3.3.1 + - js-flot ^>= 0.8.3 + - js-dgtable ^>= 0.5.2 + - extra ^>= 1.7.10 + - ghcid ^>= 0.8.7 + - hexml ^>= 0.3.4 + - profiterole ^>= 0.1 + - record-dot-preprocessor ^>= 0.2.13 + - filepattern ^>= 0.1.2 + - record-hasfield ^>= 1.0 + - rattle ^>= 0.2 + - hie-bios ^>= 0.8.0 + - fuzzy ^>= 0.1.0.1 "Digital Asset ": - - ghc-lib - - ghc-lib-parser + - ghc-lib ^>= 9.0.1.20210324 + - ghc-lib-parser ^>= 9.0.1.20210324 "Shayne Fletcher ": - - ghc-lib-parser-ex + - ghc-lib-parser-ex ^>= 9.0.0.4 "Karl Ostmo @kostmo": - - perfect-hash-generator + - perfect-hash-generator ^>= 0.2.0.6 "Alan Zimmerman @alanz": - - ghc-exactprint < 1.1 # needs GHC 9.2 #6177/closed - - haskell-lsp - - hjsmin - - language-javascript - - Strafunski-StrategyLib + - ghc-exactprint ^>= 0.6.4 && <1.1 # needs GHC 9.2 #6177/closed + - haskell-lsp < 0 + - hjsmin ^>= 0.2.0.4 + - language-javascript ^>= 0.7.1.0 + - Strafunski-StrategyLib < 0 "Luke Lau @bubba": - - lsp-test + - lsp-test < 0 "Alfredo Di Napoli @adinapoli": - - mandrill + - mandrill ^>= 0.5.5.0 "Jon Schoning @jonschoning": - - pinboard - - swagger-petstore + - pinboard < 0 + - swagger-petstore < 0 "Jasper Van der Jeugt @jaspervdj": - - blaze-html - - blaze-markup - - stylish-haskell - - profiteur - - psqueues - - websockets - - websockets-snap + - blaze-html ^>= 0.9.1.2 + - blaze-markup ^>= 0.8.2.8 + - stylish-haskell < 0 + - profiteur ^>= 0.4.6.0 + - psqueues ^>= 0.2.7.3 + - websockets ^>= 0.12.7.3 + - websockets-snap < 0 "Jasper Van der Jeugt @jaspervdj & Alexander Batischev @Minoru": - - hakyll + - hakyll ^>= 4.15.1.0 "Sibi Prabakaran @psibi": - - download - - textlocal - - shell-conduit - - tldr - - fb - - yesod-fb - - yesod-auth-fb - - hourglass-orphans - - wai-slack-middleware - - sysinfo - - xmonad-extras - - shelly - - persistent-redis - - fakedata - - fakedata-parser - - fakedata-quickcheck - - streamly-bytestring + - download ^>= 0.3.2.7 + - textlocal ^>= 0.1.0.5 + - shell-conduit ^>= 5.0.0 + - tldr ^>= 0.9.2 + - fb ^>= 2.1.1 + - yesod-fb ^>= 0.6.1 + - yesod-auth-fb < 0 + - hourglass-orphans ^>= 0.1.0.0 + - wai-slack-middleware ^>= 0.2.0 + - sysinfo ^>= 0.1.1 + - xmonad-extras ^>= 0.17.0 + - shelly ^>= 1.9.0 + - persistent-redis ^>= 2.13.0.0 + - fakedata ^>= 1.0.1 + - fakedata-parser ^>= 0.1.0.0 + - fakedata-quickcheck ^>= 0.2.0 + - streamly-bytestring ^>= 0.1.4 "haskell-openal": - - OpenAL - - ALUT + - OpenAL ^>= 1.7.0.5 + - ALUT ^>= 2.4.0.3 "haskell-opengl": - - OpenGL - - GLURaw - - GLUT - - OpenGLRaw - - StateVar - - ObjectName + - OpenGL ^>= 3.0.3.0 + - GLURaw ^>= 2.0.0.5 + - GLUT ^>= 2.7.0.16 + - OpenGLRaw ^>= 3.3.4.1 + - StateVar ^>= 1.2.2 + - ObjectName ^>= 1.1.0.2 "Antoine Latter @aslatter": - - byteorder - - uuid + - byteorder ^>= 1.0.4 + - uuid ^>= 1.3.15 "Philipp Middendorf @pmiddend": - - clock + - clock ^>= 0.8.2 "Stefan Wehr @skogsbaer": - - HTF - - xmlgen - - stm-stats - - large-hashable + - HTF ^>= 0.14.0.6 + - xmlgen ^>= 0.6.2.2 + - stm-stats < 0 + - large-hashable < 0 "Bart Massey @BartMassey": - - parseargs + - parseargs ^>= 0.2.0.9 "Vincent Hanquez @vincenthz": - - basement - - bytedump - - cipher-aes - - cipher-rc4 - - connection - - cprng-aes - - cpu - - cryptocipher - - cryptohash - - cryptonite - - cryptonite-openssl - - crypto-pubkey-types - - crypto-random-api - - foundation - - gauge + - basement ^>= 0.0.12 + - bytedump ^>= 1.0 + - cipher-aes ^>= 0.2.11 + - cipher-rc4 ^>= 0.1.4 + - connection ^>= 0.3.1 + - cprng-aes ^>= 0.6.1 + - cpu ^>= 0.1.2 + - cryptocipher < 0 + - cryptohash ^>= 0.11.9 + - cryptonite ^>= 0.29 + - cryptonite-openssl ^>= 0.7 + - crypto-pubkey-types ^>= 0.4.3 + - crypto-random-api ^>= 0.2.0 + - foundation ^>= 0.0.26.1 + - gauge ^>= 0.2.5 - git < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - hit - - memory - - language-java - - libgit - - pem - - siphash - - socks - - tasty-kat - - tls - - tls-debug + - hit < 0 + - memory ^>= 0.16.0 + - language-java ^>= 0.2.9 + - libgit ^>= 0.3.1 + - pem ^>= 0.2.4 + - siphash ^>= 1.0.3 + - socks ^>= 0.6.1 + - tasty-kat ^>= 0.0.3 + - tls ^>= 1.5.5 + - tls-debug ^>= 0.4.8 - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - xenstore < 0 # sClose not in scope "Chris Done @chrisdone": - - labels - - ace - - check-email - - freenect - - frisby - - gd - - hostname-validate - - ini - - lucid - - pdfinfo - - pure-io - - sourcemap - - hindent - - descriptive - - wrap - - path - - weigh - - odbc - - structured-haskell-mode - - casa-client - - casa-types + - labels ^>= 0.3.3 + - ace ^>= 0.6 + - check-email ^>= 1.0.2 + - freenect ^>= 1.2.1 + - frisby ^>= 0.2.4 + - gd ^>= 3000.7.3 + - hostname-validate ^>= 1.0.0 + - ini ^>= 0.4.1 + - lucid ^>= 2.9.12.1 + - pdfinfo ^>= 1.5.4 + - pure-io < 0 + - sourcemap ^>= 0.1.6.1 + - hindent ^>= 5.3.2 + - descriptive ^>= 0.9.5 + - wrap ^>= 0.0.0 + - path ^>= 0.9.1 + - weigh ^>= 0.0.16 + - odbc < 0 + - structured-haskell-mode < 0 + - casa-client ^>= 0.0.1 + - casa-types ^>= 0.0.2 "Alberto G. Corona @agocorona": - - RefSerialize - - TCache - - Workflow - - MFlow - - transient - - transient-universe - - axiom + - RefSerialize ^>= 0.4.0 + - TCache ^>= 0.12.1 + - Workflow < 0 + - MFlow < 0 + - transient ^>= 0.7.0.0 + - transient-universe < 0 + - axiom < 0 "Edward Kmett @ekmett": - - ad - - adjunctions - - algebra - - ansi-wl-pprint - - approximate - - bifunctors - - bits - - bound - - bytes - - charset - - comonad - - compensated - - compressed - - concurrent-supply - - constraints - - contravariant - - distributive - - discrimination - - either - - eq - - ersatz - - fixed - - folds - - free - - gl - - graphs - - half - - heaps - - hybrid-vectors - - hyperloglog - - hyphenation - - indexed-traversable - - integration - - intern - - intervals - - kan-extensions - - keys - - lca - - lens - - lens-action - - lens-aeson - - lens-properties - - linear - - linear-accelerate - - log-domain - - machines - - monadic-arrays - - monad-products - - monad-st + - ad ^>= 4.4.1 + - adjunctions ^>= 4.4 + - algebra ^>= 4.3.1 + - ansi-wl-pprint ^>= 0.6.9 + - approximate ^>= 0.3.5 + - bifunctors ^>= 5.5.11 + - bits ^>= 0.6 + - bound ^>= 2.0.4 + - bytes ^>= 0.17.1 + - charset ^>= 0.3.9 + - comonad ^>= 5.0.8 + - compensated ^>= 0.8.3 + - compressed < 0 + - concurrent-supply ^>= 0.1.8 + - constraints ^>= 0.13.2 + - contravariant ^>= 1.5.5 + - distributive ^>= 0.6.2.1 + - discrimination ^>= 0.4.1 + - either ^>= 5.0.1.1 + - eq ^>= 4.3 + - ersatz ^>= 0.4.10 + - fixed ^>= 0.3 + - folds ^>= 0.7.7 + - free ^>= 5.1.7 + - gl ^>= 0.9 + - graphs ^>= 0.7.1 + - half ^>= 0.3.1 + - heaps ^>= 0.4 + - hybrid-vectors ^>= 0.2.2 + - hyperloglog ^>= 0.4.5 + - hyphenation ^>= 0.8.2 + - indexed-traversable ^>= 0.1.2 + - integration ^>= 0.2.1 + - intern ^>= 0.9.4 + - intervals ^>= 0.9.2 + - kan-extensions ^>= 5.2.3 + - keys ^>= 3.12.3 + - lca ^>= 0.4 + - lens ^>= 5.0.1 + - lens-action ^>= 0.2.6 + - lens-aeson ^>= 1.1.3 + - lens-properties ^>= 4.11.1 + - linear ^>= 1.21.8 + - linear-accelerate < 0 + - log-domain ^>= 0.13.2 + - machines ^>= 0.7.2 + - monadic-arrays ^>= 0.2.2 + - monad-products ^>= 4.0.1 + - monad-st ^>= 0.2.4.1 # - mtl take the one that ships with GHC - - nats - - numeric-extras - - parsers - - pointed - - profunctors - - promises - - rcu - - reducers - - reflection - - semigroupoid-extras - - semigroupoids - - semigroups - - speculation - - streams - - structs - - tagged - - tagged-transformer - - transformers-compat <0.7 # https://github.com/commercialhaskell/stackage/issues/6137 - - trifecta - - unique - - vector-instances - - void - - wl-pprint-extras - - wreq - - wl-pprint-terminfo - - zippers - - zlib-lens + - nats ^>= 1.1.2 + - numeric-extras ^>= 0.1 + - parsers ^>= 0.12.10 + - pointed ^>= 5.0.3 + - profunctors ^>= 5.6.2 + - promises ^>= 0.3 + - rcu ^>= 0.2.5 + - reducers ^>= 3.12.4 + - reflection ^>= 2.1.6 + - semigroupoid-extras ^>= 5 + - semigroupoids ^>= 5.3.6 + - semigroups ^>= 0.19.2 + - speculation < 0 + - streams ^>= 3.3 + - structs ^>= 0.1.6 + - tagged ^>= 0.8.6.1 + - tagged-transformer ^>= 0.8.1 + - transformers-compat ^>= 0.6.6 && <0.7 # https://github.com/commercialhaskell/stackage/issues/6137 + - trifecta ^>= 2.1.2 + - unique ^>= 0.0.1 + - vector-instances ^>= 3.4 + - void ^>= 0.7.3 + - wl-pprint-extras < 0 + - wreq ^>= 0.5.3.3 + - wl-pprint-terminfo < 0 + - zippers ^>= 0.3.2 + - zlib-lens ^>= 0.1.2.1 "Andrew Farmer @xich": - - scotty - - wai-middleware-static + - scotty ^>= 0.12 + - wai-middleware-static ^>= 0.9.1 "Simon Hengel @sol": - - hspec - - hspec-core - - hspec-discover - - hspec-wai - - hspec-wai-json - - aeson-qq - - interpolate - - doctest - - base-compat + - hspec ^>= 2.8.5 + - hspec-core ^>= 2.8.5 + - hspec-discover ^>= 2.8.5 + - hspec-wai ^>= 0.11.1 + - hspec-wai-json < 0 + - aeson-qq ^>= 0.8.4 + - interpolate ^>= 0.2.1 + - doctest ^>= 0.18.2 + - base-compat ^>= 0.11.2 "Mario Blazevic @blamario": - - monad-parallel - - monad-coroutine - - monoid-subclasses - - rank2classes - - input-parsers - - incremental-parser - - construct + - monad-parallel ^>= 0.7.2.5 + - monad-coroutine ^>= 0.9.1.3 + - monoid-subclasses ^>= 1.1.2 + - rank2classes ^>= 1.4.3 + - input-parsers ^>= 0.2.3.1 + - incremental-parser ^>= 0.5.0.2 + - construct ^>= 0.3.0.2 "Brent Yorgey @byorgey": - - active - - diagrams - - diagrams-builder - - diagrams-cairo - - diagrams-canvas - - diagrams-contrib - - diagrams-core - - diagrams-gtk - - diagrams-html5 - - diagrams-lib - - diagrams-postscript - - diagrams-rasterific - - diagrams-solve - - diagrams-svg - - force-layout - - SVGFonts - - haxr - - MonadRandom - - monoid-extras + - active ^>= 0.2.0.15 + - diagrams ^>= 1.4.0.1 + - diagrams-builder < 0 + - diagrams-cairo < 0 + - diagrams-canvas < 0 + - diagrams-contrib ^>= 1.4.4 + - diagrams-core ^>= 1.5.0 + - diagrams-gtk < 0 + - diagrams-html5 < 0 + - diagrams-lib ^>= 1.4.4 + - diagrams-postscript < 0 + - diagrams-rasterific ^>= 1.4.2.1 + - diagrams-solve ^>= 0.1.3 + - diagrams-svg ^>= 1.4.3 + - force-layout ^>= 0.4.0.6 + - SVGFonts ^>= 1.8.0.1 + - haxr ^>= 3000.11.4.1 + - MonadRandom ^>= 0.5.3 + - monoid-extras ^>= 0.6.1 "Vincent Berthoux @Twinside": - - JuicyPixels - - FontyFruity - - Rasterific - - svg-tree - - rasterific-svg - - asciidiagram + - JuicyPixels ^>= 3.3.6 + - FontyFruity ^>= 0.5.3.5 + - Rasterific ^>= 0.7.5.4 + - svg-tree ^>= 0.6.2.4 + - rasterific-svg ^>= 0.3.3.2 + - asciidiagram ^>= 1.3.3.3 "Patrick Brisbin @pbrisbin": - - bugsnag-haskell - - gravatar - - load-env - - yesod-auth-oauth2 - - yesod-markdown - - yesod-paginator + - bugsnag-haskell ^>= 0.0.4.2 + - gravatar ^>= 0.8.0 + - load-env ^>= 0.2.1.0 + - yesod-auth-oauth2 < 0 + - yesod-markdown ^>= 0.12.6.12 + - yesod-paginator ^>= 1.1.1.0 "Freckle Engineering @pbrisbin @mjgpy3 @stevenxl": - - bcp47 - - bcp47-orphans - - faktory - - graphula - - hspec-expectations-json - - yesod-page-cursor - - yesod-routes-flow - - nonempty-zipper - - sendgrid-v3 - - yesod-auth-oauth2 - - hspec-junit-formatter < 1.1 # https://github.com/freckle/freckle-app/issues/43 - - aws-xray-client - - aws-xray-client-wai - - freckle-app + - bcp47 < 0 + - bcp47-orphans < 0 + - faktory ^>= 1.1.2.0 + - graphula ^>= 2.0.1.0 + - hspec-expectations-json ^>= 1.0.0.4 + - yesod-page-cursor ^>= 2.0.0.9 + - yesod-routes-flow ^>= 3.0.0.1 + - nonempty-zipper ^>= 1.0.0.3 + - sendgrid-v3 < 0 + - yesod-auth-oauth2 < 0 + - hspec-junit-formatter ^>= 1.0.3.0 && <1.1 # https://github.com/freckle/freckle-app/issues/43 + - aws-xray-client < 0 + - aws-xray-client-wai < 0 + - freckle-app ^>= 1.0.0.4 "Felipe Lessa @meteficha": - - fb - - nonce - - serversession - - serversession-backend-persistent - - serversession-backend-redis - - serversession-frontend-wai + - fb ^>= 2.1.1 + - nonce ^>= 1.0.7 + - serversession ^>= 1.0.2 + - serversession-backend-persistent < 0 + - serversession-backend-redis < 0 + - serversession-frontend-wai ^>= 1.0 # - serversession-frontend-yesod # conduit 1.3, yesod 1.6 # - thumbnail-plus # https://github.com/prowdsponsor/thumbnail-plus/issues/5 - - yesod-auth-fb - - yesod-fb + - yesod-auth-fb < 0 + - yesod-fb ^>= 0.6.1 "Alexander Altman @pthariensflame": # Maintaining on behalf of @roelvandijk: - - base-unicode-symbols - - containers-unicode-symbols + - base-unicode-symbols ^>= 0.2.4.2 + - containers-unicode-symbols ^>= 0.3.1.3 # My own packages: - - ChannelT + - ChannelT ^>= 0.0.0.7 "Trevor L. McDonell @tmcdonell": - - accelerate - - accelerate-bignum - - accelerate-blas - - accelerate-fft - - accelerate-io - - accelerate-llvm - - accelerate-llvm-native - - accelerate-llvm-ptx - - accelerate-examples - - repa - - repa-algorithms - - repa-io - - gloss - - gloss-rendering - - gloss-algorithms - - gloss-examples - - gloss-raster - - gloss-accelerate - - gloss-raster-accelerate - - colour-accelerate - - lens-accelerate - - mwc-random-accelerate - - cuda - - cufft - - cublas - - cusparse - - cusolver - - nvvm - - wide-word # @erikd + - accelerate < 0 + - accelerate-bignum < 0 + - accelerate-blas < 0 + - accelerate-fft < 0 + - accelerate-io < 0 + - accelerate-llvm < 0 + - accelerate-llvm-native < 0 + - accelerate-llvm-ptx < 0 + - accelerate-examples < 0 + - repa ^>= 3.4.1.4 + - repa-algorithms < 0 + - repa-io ^>= 3.4.1.1 + - gloss ^>= 1.13.2.1 + - gloss-rendering ^>= 1.13.1.1 + - gloss-algorithms ^>= 1.13.0.2 + - gloss-examples < 0 + - gloss-raster ^>= 1.13.1.2 + - gloss-accelerate < 0 + - gloss-raster-accelerate < 0 + - colour-accelerate < 0 + - lens-accelerate < 0 + - mwc-random-accelerate < 0 + - cuda ^>= 0.11.0.0 + - cufft ^>= 0.10.0.0 + - cublas ^>= 0.6.0.0 + - cusparse ^>= 0.3.0.0 + - cusolver ^>= 0.3.0.0 + - nvvm ^>= 0.10.0.0 + - wide-word ^>= 0.1.1.2 # @erikd "Dan Burton @DanBurton": - - ANum - - basic-prelude - - composition - - haskell-src-meta - - io-memoize - - lens-family-th - - numbers - - rev-state - - runmemo - - tardis - - yesod-gitrev + - ANum ^>= 0.2.0.2 + - basic-prelude ^>= 0.7.0 + - composition ^>= 1.0.2.2 + - haskell-src-meta ^>= 0.8.7 + - io-memoize ^>= 1.1.1.0 + - lens-family-th ^>= 0.5.2.1 + - numbers ^>= 3000.2.0.2 + - rev-state ^>= 0.1.2 + - runmemo ^>= 1.0.0.1 + - tardis ^>= 0.4.3.0 + - yesod-gitrev ^>= 0.2.2 # @mr's packages - - ftp-client - - ftp-client-conduit + - ftp-client < 0 + - ftp-client-conduit < 0 # other: real maintainers pls steal these back - - text-format # needed by liquid-fixpoint - - liquid-fixpoint + - text-format < 0 # needed by liquid-fixpoint + - liquid-fixpoint < 0 "Daniel Casanueva @Daniel-Diaz": - - bimap-server - - binary-list - - byteset - - Clipboard - - gmail-simple - - grouped-list - - haskintex - - HaTeX - - include-file - - matrix - - pcre-light - - phantom-state - - post-mess-age - - sorted-list + - bimap-server ^>= 0.1.0.1 + - binary-list ^>= 1.1.1.2 + - byteset ^>= 0.1.1.0 + - Clipboard ^>= 2.3.2.0 + - gmail-simple ^>= 0.1.0.2 + - grouped-list < 0 + - haskintex ^>= 0.8.0.0 + - HaTeX ^>= 3.22.3.0 + - include-file ^>= 0.1.0.4 + - matrix ^>= 0.3.6.1 + - pcre-light ^>= 0.4.1.0 + - phantom-state ^>= 0.2.1.2 + - post-mess-age ^>= 0.2.1.0 + - sorted-list ^>= 0.2.1.0 "Gabriella Gonzalez @Gabriel439": - - optparse-generic - - pipes - - pipes-extras - - pipes-http - - pipes-parse - - pipes-concurrency - - pipes-safe - - turtle - - foldl - - bench - - dhall - - dhall-bash - - dhall-json - - dhall-lsp-server - - dhall-yaml - - aeson-yaml # req'd by dhall-json - - dhall-nix - - nix-derivation - - list-transformer + - optparse-generic ^>= 1.4.7 + - pipes ^>= 4.3.16 + - pipes-extras ^>= 1.0.15 + - pipes-http ^>= 1.0.6 + - pipes-parse ^>= 3.0.9 + - pipes-concurrency ^>= 2.0.12 + - pipes-safe ^>= 2.3.3 + - turtle ^>= 1.5.23 + - foldl ^>= 1.4.12 + - bench ^>= 1.0.12 + - dhall ^>= 1.40.2 + - dhall-bash ^>= 1.0.39 + - dhall-json ^>= 1.7.9 + - dhall-lsp-server < 0 + - dhall-yaml ^>= 1.2.9 + - aeson-yaml ^>= 1.1.0.1 # req'd by dhall-json + - dhall-nix < 0 + - nix-derivation ^>= 1.1.2 + - list-transformer ^>= 1.0.7 "Andrew Thaddeus Martin @andrewthad": - - colonnade - - blaze-colonnade - - dot + - colonnade ^>= 1.2.0.2 + - blaze-colonnade ^>= 1.2.2.1 + - dot ^>= 0.3 "Chris Allen @bitemyapp": - - machines-directory - - machines-io - - bloodhound + - machines-directory < 0 + - machines-io < 0 + - bloodhound ^>= 0.18.0.0 "Adam Bergmark @bergmark": - - aeson - - HUnit - - attoparsec-iso8601 - - feed - - time-compat - - through-text + - aeson ^>= 1.5.6.0 + - HUnit ^>= 1.6.2.0 + - attoparsec-iso8601 ^>= 1.0.2.0 + - feed ^>= 1.3.2.0 + - time-compat ^>= 1.9.6.1 + - through-text ^>= 0.1.0.0 # Not my packages - - HStringTemplate - - language-ecmascript - - spoon - - tagshare + - HStringTemplate ^>= 0.8.8 + - language-ecmascript < 0 + - spoon ^>= 0.3.1 + - tagshare ^>= 0.0 "Benedict Aas @Shou": - - boolean-like - - type-operators + - boolean-like ^>= 0.1.1.0 + - type-operators ^>= 0.2.0.0 "Sebastiaan Visser @sebastiaanvisser": - - clay - - fclabels + - clay ^>= 0.13.3 + - fclabels ^>= 2.0.5.1 "Robert Klotzner @eskimor": - - purescript-bridge + - purescript-bridge ^>= 0.14.0.0 - servant-purescript < 0 # #6091/closed - - servant-subscriber + - servant-subscriber ^>= 0.7.0.0 "Rodrigo Setti @rodrigosetti": - - messagepack - - messagepack-rpc + - messagepack ^>= 0.5.4 + - messagepack-rpc < 0 "Boris Lykah @lykahb": - - groundhog - - groundhog-inspector - - groundhog-mysql - - groundhog-postgresql - - groundhog-sqlite - - groundhog-th + - groundhog ^>= 0.11.0 + - groundhog-inspector < 0 + - groundhog-mysql < 0 + - groundhog-postgresql ^>= 0.11 + - groundhog-sqlite ^>= 0.11.0 + - groundhog-th < 0 "Janne Hellsten @nurpax": - - sqlite-simple + - sqlite-simple ^>= 0.4.18.0 "Michal J. Gajda @mgajda": - - iterable - - FenwickTree - - json-autotype + - iterable ^>= 3.0 + - FenwickTree ^>= 0.1.2.1 + - json-autotype < 0 "Dom De Re @domdere": - - cassava-conduit + - cassava-conduit ^>= 0.6.0 "Dominic Steinitz @idontgetoutmuch": - - monad-bayes - - random-fu + - monad-bayes < 0 + - random-fu < 0 "Ben Gamari @bgamari": - - vector-fftw - - cborg-json - - language-dot + - vector-fftw < 0 + - cborg-json ^>= 0.2.3.0 + - language-dot ^>= 0.1.1 "Roman Cheplyaka @feuerbach": - - action-permutations - - amqp - - heredoc - - immortal - - regex-applicative - - lexer-applicative - - tasty - - tasty-golden - - tasty-hunit - - tasty-quickcheck - - tasty-smallcheck - - tasty-html - - time-lens - - timezone-olson - - timezone-series - - traverse-with-class - - tuples-homogenous-h98 + - action-permutations ^>= 0.0.0.1 + - amqp ^>= 0.22.0 + - heredoc ^>= 0.2.0.0 + - immortal ^>= 0.3 + - regex-applicative ^>= 0.3.4 + - lexer-applicative ^>= 2.1.0.2 + - tasty ^>= 1.4.2.1 + - tasty-golden ^>= 2.3.4 + - tasty-hunit ^>= 0.10.0.3 + - tasty-quickcheck ^>= 0.10.2 + - tasty-smallcheck ^>= 0.8.2 + - tasty-html ^>= 0.4.1.4 + - time-lens ^>= 0.4.0.2 + - timezone-olson ^>= 0.2.0 + - timezone-series ^>= 0.1.9 + - traverse-with-class < 0 + - tuples-homogenous-h98 ^>= 0.1.1.0 "George Giorgidze @giorgidze": - - YampaSynth - - set-monad + - YampaSynth < 0 + - set-monad ^>= 0.3.0.0 "Phil Hargett @hargettp": - - courier + - courier < 0 "Aycan iRiCAN @aycanirican": - - hdaemonize - - hweblib + - hdaemonize ^>= 0.5.6 + - hweblib ^>= 0.6.3 "Joachim Breitner @nomeata": - - circle-packing - - haskell-spacegoo - - tasty-expected-failure + - circle-packing ^>= 0.1.0.6 + - haskell-spacegoo < 0 + - tasty-expected-failure ^>= 0.12.3 "Aditya Bhargava @egonSchiele": - - HandsomeSoup + - HandsomeSoup ^>= 0.4.2 "Clint Adams @clinty": - - hOpenPGP - - openpgp-asciiarmor - - MusicBrainz - - DAV - - hopenpgp-tools - - opensource - - debian - - cabal-debian + - hOpenPGP < 0 + - openpgp-asciiarmor ^>= 0.1.2 + - MusicBrainz ^>= 0.4.1 + - DAV ^>= 1.3.4 + - hopenpgp-tools < 0 + - opensource ^>= 0.1.1.0 + - debian ^>= 4.0.2 + - cabal-debian < 0 # dependencies: - - monad-chronicle + - monad-chronicle ^>= 1.0.0.1 "Piyush P Kurur @piyush-kurur": - - raaz - - naqsha + - raaz < 0 + - naqsha < 0 "Joey Hess @joeyh": - - git-annex - - concurrent-output - - mountpoints - - disk-free-space + - git-annex < 0 + - concurrent-output ^>= 1.10.14 + - mountpoints ^>= 1.0.2 + - disk-free-space ^>= 0.1.0.1 "Colin Woodbury @fosskers": - - aur - - aura - - bounded-queue - - kanji - - language-bash - - microlens-aeson - - pipes-random - - servant-xml - - streaming-attoparsec - - versions - - vectortiles + - aur ^>= 7.0.7 + - aura ^>= 3.2.5 + - bounded-queue ^>= 1.0.0 + - kanji ^>= 3.4.1 + - language-bash ^>= 0.9.2 + - microlens-aeson ^>= 2.3.1 + - pipes-random ^>= 1.0.0.5 + - servant-xml ^>= 1.0.1.4 + - streaming-attoparsec ^>= 1.0.0.1 + - versions ^>= 5.0.1 + - vectortiles ^>= 1.5.1 "Ketil Malde @ketil-malde": - - biocore - - biofasta - - biofastq - - blastxml - - bioace - - biopsl - - seqloc - - bioalign - - BlastHTTP + - biocore < 0 + - biofasta < 0 + - biofastq < 0 + - blastxml < 0 + - bioace < 0 + - biopsl < 0 + - seqloc < 0 + - bioalign < 0 + - BlastHTTP < 0 "Florian Eggenhofer @eggzilla": - - ClustalParser - - EntrezHTTP - - Genbank - - RNAlien - - biocore - - bimaps - - BiobaseBlast - - BiobaseENA - - BiobaseEnsembl - - BiobaseFasta - - BiobaseHTTP - - BiobaseTypes - - BiobaseXNA - - DPutils - - ForestStructures - - OrderedBits - - PrimitiveArray - - SciBaseTypes - - Taxonomy - - ViennaRNAParser - - either-unwrap + - ClustalParser ^>= 1.3.0 + - EntrezHTTP < 0 + - Genbank < 0 + - RNAlien < 0 + - biocore < 0 + - bimaps ^>= 0.1.0.2 + - BiobaseBlast ^>= 0.3.3.0 + - BiobaseENA ^>= 0.0.0.2 + - BiobaseEnsembl ^>= 0.2.0.1 + - BiobaseFasta ^>= 0.4.0.1 + - BiobaseHTTP < 0 + - BiobaseTypes ^>= 0.2.1.0 + - BiobaseXNA ^>= 0.11.1.1 + - DPutils ^>= 0.1.1.0 + - ForestStructures ^>= 0.0.1.0 + - OrderedBits ^>= 0.0.2.0 + - PrimitiveArray ^>= 0.10.1.1 + - SciBaseTypes ^>= 0.1.1.0 + - Taxonomy ^>= 2.2.0 + - ViennaRNAParser ^>= 1.3.3 + - either-unwrap ^>= 1.1 "Silk ": - - aeson-utils - - arrow-list - - attoparsec-expr - - code-builder - - generic-xmlpickler - - hxt-pickle-utils - - imagesize-conduit - - json-schema - - multipart - - rest-client - - rest-core - - rest-gen - - rest-happstack - - rest-snap - - rest-stringmap - - rest-types - - rest-wai - - tostring - - uri-encode + - aeson-utils < 0 + - arrow-list < 0 + - attoparsec-expr ^>= 0.1.1.2 + - code-builder < 0 + - generic-xmlpickler < 0 + - hxt-pickle-utils < 0 + - imagesize-conduit ^>= 1.1 + - json-schema < 0 + - multipart ^>= 0.2.1 + - rest-client < 0 + - rest-core < 0 + - rest-gen < 0 + - rest-happstack < 0 + - rest-snap < 0 + - rest-stringmap < 0 + - rest-types < 0 + - rest-wai < 0 + - tostring ^>= 0.2.1.1 + - uri-encode ^>= 1.5.0.7 "Simon Michael @simonmichael": - - quickbench - - regex-compat-tdfa - - shelltestrunner + - quickbench ^>= 1.0.1 + - regex-compat-tdfa < 0 + - shelltestrunner ^>= 1.9 # The hledger project aims to keep the latest release of the core # "hledger-lib" and "hledger" packages in stackage nightly at all times. # When other hledger-* packages (or minor non-hledger packages) have # incompatible bounds, we would prefer they be disabled temporarily, # rather than disabling the latest hledger-lib and hledger. # (#3494/closed, #5779/closed) - - hledger - - hledger-lib - - hledger-ui - - hledger-web + - hledger ^>= 1.24.99 + - hledger-lib ^>= 1.24.99 + - hledger-ui ^>= 1.24.99 + - hledger-web ^>= 1.24.99 "Mihai Maruseac @mihaimaruseac": - - io-manager + - io-manager ^>= 0.1.0.3 "Dimitri Sabadie @phaazon": - - al - - event - - hid - - monad-journal - - smoothie - - wavefront - - zero + - al ^>= 0.1.4.2 + - event < 0 + - hid ^>= 0.2.2 + - monad-journal ^>= 0.8.1 + - smoothie ^>= 0.4.2.11 + - wavefront < 0 + - zero ^>= 0.1.5 "Thomas Schilling @nominolo": - - ghc-syb-utils + - ghc-syb-utils < 0 "Boris Buliga @d12frosted": - - io-choice + - io-choice < 0 "Yann Esposito yogsototh @yogsototh": - - human-readable-duration - - holy-project - - wai-middleware-caching - - wai-middleware-caching-lru - - wai-middleware-caching-redis + - human-readable-duration ^>= 0.2.1.4 + - holy-project < 0 + - wai-middleware-caching ^>= 0.1.0.2 + - wai-middleware-caching-lru ^>= 0.1.0.0 + - wai-middleware-caching-redis ^>= 0.2.0.0 "Paul Rouse @paul-rouse": - - mysql - - mysql-simple + - mysql ^>= 0.2.1 + - mysql-simple ^>= 0.4.7 - sphinx < 0 # Could not find module Network - - xmlhtml - - yesod-auth-hashdb + - xmlhtml ^>= 0.2.5.2 + - yesod-auth-hashdb < 0 "Toralf Wittner @twittner": - - bytestring-conversion - - cql - - cql-io - - redis-resp - - redis-io - - swagger - - tinylog - - wai-predicates - - wai-routing - - zeromq4-haskell + - bytestring-conversion ^>= 0.3.1 + - cql < 0 + - cql-io < 0 + - redis-resp < 0 + - redis-io < 0 + - swagger ^>= 0.3.0 + - tinylog ^>= 0.15.0 + - wai-predicates < 0 + - wai-routing < 0 + - zeromq4-haskell ^>= 0.8.0 "Alejandro Serrano @serras": - - djinn-lib - - djinn-ghc + - djinn-lib ^>= 0.0.1.3 + - djinn-ghc < 0 - generics-mrsop < 0 # MonadFail - - kind-apply - - kind-generics - - kind-generics-th - - simplistic-generics - - wl-pprint - - AC-Angle - - language-protobuf - - generic-aeson - - parameterized - - tracing-control - - primitive-unlifted - - stm-lifted - - monad-primitive - - mwc-random-monad + - kind-apply ^>= 0.3.2.0 + - kind-generics ^>= 0.4.1.2 + - kind-generics-th ^>= 0.2.2.2 + - simplistic-generics < 0 + - wl-pprint ^>= 1.2.1 + - AC-Angle ^>= 1.0 + - language-protobuf ^>= 1.0.1 + - generic-aeson ^>= 0.2.0.13 + - parameterized ^>= 0.5.0.0 + - tracing-control < 0 + - primitive-unlifted ^>= 1.0.0.0 + - stm-lifted ^>= 2.5.0.0 + - monad-primitive ^>= 0.1 + - mwc-random-monad ^>= 0.7.3.1 "Flavio Corpa @kutyel": - - language-avro + - language-avro ^>= 0.1.3.1 "Matvey Aksenov @supki": - - terminal-size - - envparse + - terminal-size ^>= 0.3.2.1 + - envparse ^>= 0.4.1 "Luis G. Torres @giogadi": - - kdt + - kdt < 0 "Pavel Krajcevski @Mokosha": - - netwire - - netwire-input - - netwire-input-glfw - - yoga - - freetype2 - - HCodecs - - netcode-io - - reliable-io + - netwire ^>= 5.0.3 + - netwire-input ^>= 0.0.7 + - netwire-input-glfw ^>= 0.0.11 + - yoga ^>= 0.0.0.5 + - freetype2 ^>= 0.2.0 + - HCodecs ^>= 0.5.2 + - netcode-io ^>= 0.0.3 + - reliable-io ^>= 0.0.2 "Emanuel Borsboom @borsboom": - - BoundedChan - - broadcast-chan - - fuzzcheck - - here - - hlibgit2 - - gitlib-libgit2 - - interpolatedstring-perl6 - - iproute - - missing-foreign - - MissingH - - multimap - - parallel-io - - text-binary - - Chart-cairo - - ghc-events - - monad-extras - - optparse-simple - - hpack - - bindings-uname - - stack < 9.9.9 # see #3563/closed + - BoundedChan ^>= 1.0.3.0 + - broadcast-chan < 0 + - fuzzcheck ^>= 0.1.1 + - here ^>= 1.2.13 + - hlibgit2 ^>= 0.18.0.16 + - gitlib-libgit2 < 0 + - interpolatedstring-perl6 ^>= 1.0.2 + - iproute ^>= 1.7.12 + - missing-foreign ^>= 0.1.1 + - MissingH ^>= 1.4.3.0 + - multimap ^>= 1.2.1 + - parallel-io ^>= 0.3.5 + - text-binary ^>= 0.2.1.1 + - Chart-cairo < 0 + - ghc-events ^>= 0.17.0.1 + - monad-extras ^>= 0.6.0 + - optparse-simple ^>= 0.1.1.4 + - hpack ^>= 0.34.6 + - bindings-uname ^>= 0.1 + - stack < 0 # see #3563/closed "Michael Sloan @mgsloan": - - store - - store-core - - store-streaming - - th-orphans - - th-reify-many - - th-utilities + - store ^>= 0.7.14 + - store-core ^>= 0.4.4.4 + - store-streaming ^>= 0.2.0.3 + - th-orphans ^>= 0.13.12 + - th-reify-many ^>= 0.1.10 + - th-utilities ^>= 0.2.4.3 "Nikita Volkov @nikita-volkov": - - acc - - attoparsec-data - - attoparsec-time - - base-prelude - - bytestring-strict-builder - - bytestring-tree-builder - - cases - - deferred-folds - - deque - - domain - - domain-core - - domain-optics - - focus - - hasql - - hasql-optparse-applicative - - hasql-pool + - acc ^>= 0.2.0.1 + - attoparsec-data ^>= 1.0.5.2 + - attoparsec-time ^>= 1.0.2 + - base-prelude ^>= 1.4 + - bytestring-strict-builder ^>= 0.4.5.5 + - bytestring-tree-builder ^>= 0.2.7.9 + - cases ^>= 0.1.4.1 + - deferred-folds ^>= 0.9.17 + - deque ^>= 0.4.4 + - domain ^>= 0.1.1.2 + - domain-core ^>= 0.1 + - domain-optics ^>= 0.1.0.1 + - focus ^>= 1.0.3 + - hasql ^>= 1.4.5.3 + - hasql-optparse-applicative ^>= 0.3.0.6 + - hasql-pool ^>= 0.5.2 - hasql-th < 0 # 0.4.0.9 TH compile error - - hasql-transaction - - headed-megaparsec < 0.2.0.2 # https://github.com/commercialhaskell/stackage/issues/6348 - - jsonifier - - list-t - - mtl-prelude - - neat-interpolation - - optima - - partial-handler - - postgresql-binary - - postgresql-syntax - - primitive-extras - - ptr-poker - - rebase < 1.14 # https://github.com/commercialhaskell/stackage/issues/6348 - - rerebase < 1.14 # https://github.com/commercialhaskell/stackage/issues/6348 - - slave-thread - - stm-containers - - stm-hamt - - template-haskell-compat-v0208 - - text-builder - - th-lego - - vector-builder - - yaml-unscrambler < 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/6348 - - xml-parser + - hasql-transaction ^>= 1.0.1 + - headed-megaparsec ^>= 0.2.0.1 && <0.2.0.2 # https://github.com/commercialhaskell/stackage/issues/6348 + - jsonifier ^>= 0.1.2 + - list-t ^>= 1.0.5.1 + - mtl-prelude ^>= 2.0.3.1 + - neat-interpolation ^>= 0.5.1.2 + - optima ^>= 0.4.0.2 + - partial-handler ^>= 1.0.3 + - postgresql-binary ^>= 0.12.4.1 + - postgresql-syntax ^>= 0.4 + - primitive-extras ^>= 0.10.1.2 + - ptr-poker ^>= 0.1.2 + - rebase ^>= 1.13.2 && <1.14 # https://github.com/commercialhaskell/stackage/issues/6348 + - rerebase ^>= 1.13.2 && <1.14 # https://github.com/commercialhaskell/stackage/issues/6348 + - slave-thread ^>= 1.1.0.1 + - stm-containers ^>= 1.2 + - stm-hamt ^>= 1.2.0.7 + - template-haskell-compat-v0208 ^>= 0.1.7 + - text-builder ^>= 0.6.6.3 + - th-lego ^>= 0.2.3 + - vector-builder ^>= 0.3.8.2 + - yaml-unscrambler ^>= 0.1.0.4 && <0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/6348 + - xml-parser ^>= 0.1.0.1 "Iustin Pop @iustin": - - prefix-units + - prefix-units ^>= 0.2.0 "Alexander Thiemann @agrafix": - - Spock - - Spock-core - - Spock-api - - Spock-api-server - - Spock-worker - - graph-core - - hvect - - reroute - - users - - users-persistent - - users-postgresql-simple - - users-test - - validate-input + - Spock < 0 + - Spock-core < 0 + - Spock-api ^>= 0.14.0.0 + - Spock-api-server < 0 + - Spock-worker < 0 + - graph-core ^>= 0.3.0.0 + - hvect ^>= 0.4.0.0 + - reroute ^>= 0.6.0.0 + - users ^>= 0.5.0.0 + - users-persistent < 0 + - users-postgresql-simple ^>= 0.5.0.2 + - users-test ^>= 0.5.0.1 + - validate-input ^>= 0.5.0.0 - ignore < 0 # compile fail https://github.com/agrafix/ignore/issues/5 - - blaze-bootstrap - - dataurl - - psql-helpers - - superbuffer - - timespan + - blaze-bootstrap ^>= 0.1.0.1 + - dataurl ^>= 0.1.0.0 + - psql-helpers ^>= 0.1.0.0 + - superbuffer ^>= 0.3.1.1 + - timespan ^>= 0.4.0.0 - distance < 0 # compile fail (GHC 8.4) - - async-extra - - format-numbers - - highjson - - highjson-swagger - - highjson-th - - fileplow + - async-extra ^>= 0.2.0.0 + - format-numbers ^>= 0.1.0.1 + - highjson ^>= 0.5.0.0 + - highjson-swagger < 0 + - highjson-th < 0 + - fileplow ^>= 0.1.0.0 "Joey Eremondi @JoeyEremondi": - - digest - - elm-core-sources - - language-glsl - - prettyclass - - QuasiText - - union-find - - zip-archive + - digest ^>= 0.0.1.3 + - elm-core-sources ^>= 1.0.0 + - language-glsl ^>= 0.3.0 + - prettyclass ^>= 1.0.0.0 + - QuasiText ^>= 0.1.2.6 + - union-find ^>= 0.2 + - zip-archive ^>= 0.4.1 "Arthur Fayzrakhmanov @geraldus": - - yesod-form-richtext - - ghcjs-perch + - yesod-form-richtext < 0 + - ghcjs-perch ^>= 0.3.3.3 "Tom Ellis @tomjaguarpaw": - - opaleye - - product-profunctors - - strict-wrapper + - opaleye ^>= 0.8.0.1 + - product-profunctors ^>= 0.11.0.3 + - strict-wrapper ^>= 0.0.0.0 "Samplecount stefan@samplecount.com @kaoskorobase": - - shake-language-c + - shake-language-c ^>= 0.12.0 "David Turner @davecturner": - - alarmclock - - bank-holidays-england + - alarmclock ^>= 0.7.0.5 + - bank-holidays-england ^>= 0.2.0.6 "Haskell Servant ": - - servant - - servant-blaze - - servant-cassava - - servant-client - - servant-client-core - - servant-conduit - - servant-docs - - servant-foreign - - servant-http-streams - - servant-js - - servant-lucid - - servant-machines - - servant-mock - - servant-multipart - - servant-multipart-api - - servant-pipes - - servant-server - - servant-swagger - - servant-swagger-ui - - servant-swagger-ui-core + - servant ^>= 0.18.3 + - servant-blaze ^>= 0.9.1 + - servant-cassava ^>= 0.10.1 + - servant-client ^>= 0.18.3 + - servant-client-core ^>= 0.18.3 + - servant-conduit ^>= 0.15.1 + - servant-docs ^>= 0.11.9 + - servant-foreign ^>= 0.15.4 + - servant-http-streams ^>= 0.18.3 + - servant-js < 0 + - servant-lucid ^>= 0.9.0.3 + - servant-machines ^>= 0.15.1 + - servant-mock < 0 + - servant-multipart ^>= 0.12.1 + - servant-multipart-api ^>= 0.12.1 + - servant-pipes ^>= 0.15.3 + - servant-server ^>= 0.18.3 + - servant-swagger < 0 + - servant-swagger-ui ^>= 0.3.5.3.52.5 + - servant-swagger-ui-core ^>= 0.3.5 "Optics ": - - indexed-profunctors - - optics - - optics-core - - optics-extra - - optics-th - - optics-vl + - indexed-profunctors ^>= 0.1.1 + - optics ^>= 0.4 + - optics-core ^>= 0.4 + - optics-extra ^>= 0.4 + - optics-th ^>= 0.4 + - optics-vl ^>= 0.2.1 "Alexandr Ruchkin @mvoidex": - - hformat - - simple-log - - text-region - - haskell-names - - hsdev + - hformat ^>= 0.3.3.1 + - simple-log ^>= 0.9.12 + - text-region < 0 + - haskell-names < 0 + - hsdev < 0 "Aleksey Kliger @lambdageek": - - unbound-generics - - indentation-core - - indentation-parsec - - clang-compilation-database + - unbound-generics ^>= 0.4.1 + - indentation-core < 0 + - indentation-parsec < 0 + - clang-compilation-database < 0 "Alois Cochard @aloiscochard": - - machines-binary + - machines-binary < 0 # on behalf of Bryan O'Sullivan @bos: - - wreq + - wreq ^>= 0.5.3.3 "Andraz Bajt @edofic": - - effect-handlers - - koofr-client - - snowflake + - effect-handlers < 0 + - koofr-client ^>= 1.0.0.3 + - snowflake ^>= 0.1.1.1 "Leza M. Lutonda @lemol": - - HaskellNet - - HaskellNet-SSL + - HaskellNet < 0 + - HaskellNet-SSL < 0 "Tristan de Cacqueray @tristanC": - - linux-capabilities + - linux-capabilities ^>= 0.1.0.0 "Jens Petersen @juhp": - - bugzilla-redhat - - cabal-file - - cabal-rpm - - cached-json-file - - dl-fedora - - fedora-dists - - fedora-haskell-tools - - hkgr - - http-directory < 0.1.9 # https://github.com/juhp/dl-fedora/issues/2 - - http-query - - koji - - pagure-cli - - pkgtreediff - - rhbzquery - - rpm-nvr - - rpmbuild-order - - simple-cabal - - simple-cmd - - simple-cmd-args - - HaXml - - - async-pool - - darcs - - idris - - libffi - - cairo - - glib - - gio - - pango - - gtk3 - - ghcjs-codemirror - - ghcjs-dom - - jsaddle - - vado - - vcswrapper - - ShellCheck - - binary-shared - - xdg-userdirs + - bugzilla-redhat ^>= 0.3.3 + - cabal-file < 0 + - cabal-rpm ^>= 2.0.10 + - cached-json-file ^>= 0.1.0 + - dl-fedora ^>= 0.9.2 + - fedora-dists ^>= 1.1.2 + - fedora-haskell-tools ^>= 0.9 + - hkgr ^>= 0.3 + - http-directory ^>= 0.1.8 && <0.1.9 # https://github.com/juhp/dl-fedora/issues/2 + - http-query ^>= 0.1.1 + - koji ^>= 0.0.2 + - pagure-cli ^>= 0.2 + - pkgtreediff ^>= 0.5.0 + - rhbzquery ^>= 0.4.4 + - rpm-nvr ^>= 0.1.1 + - rpmbuild-order ^>= 0.4.5 + - simple-cabal ^>= 0.1.3 + - simple-cmd ^>= 0.2.3 + - simple-cmd-args ^>= 0.1.7 + - HaXml ^>= 1.25.8 + + - async-pool ^>= 0.9.1 + - darcs < 0 + - idris < 0 + - libffi ^>= 0.1 + - cairo < 0 + - glib < 0 + - gio < 0 + - pango < 0 + - gtk3 < 0 + - ghcjs-codemirror ^>= 0.0.0.2 + - ghcjs-dom < 0 + - jsaddle < 0 + - vado < 0 + - vcswrapper < 0 + - ShellCheck ^>= 0.8.0 + - binary-shared ^>= 0.8.3 + - xdg-userdirs ^>= 0.1.0.2 # please take these - - cryptohash-md5 - - cryptohash-sha1 + - cryptohash-md5 ^>= 0.11.101.0 + - cryptohash-sha1 ^>= 0.11.101.0 "Renzo Carbonara @k0001": - - df1 - - di - - di-core - - di-df1 - - di-handle - - di-monad - - exinst - - flay - - network-simple - - network-simple-tls - - pipes-aeson - - pipes-attoparsec - - pipes-binary - - pipes-network - - pipes-network-tls - - safe-money - - vector-bytes-instances - - xmlbf-xeno - - xmlbf-xmlhtml - - xmlbf + - df1 ^>= 0.4 + - di ^>= 1.3 + - di-core ^>= 1.0.4 + - di-df1 ^>= 1.2.1 + - di-handle ^>= 1.0.1 + - di-monad ^>= 1.3.1 + - exinst < 0 + - flay ^>= 0.4 + - network-simple ^>= 0.4.5 + - network-simple-tls ^>= 0.4 + - pipes-aeson < 0 + - pipes-attoparsec ^>= 0.5.1.5 + - pipes-binary < 0 + - pipes-network < 0 + - pipes-network-tls < 0 + - safe-money < 0 + - vector-bytes-instances ^>= 0.1.1 + - xmlbf-xeno ^>= 0.2 + - xmlbf-xmlhtml ^>= 0.2 + - xmlbf ^>= 0.6.1 "Tomas Carnecky @wereHamster": - - avers - - avers-api - - avers-server - - css-syntax - - etcd - - github-types - - github-webhook-handler - - github-webhook-handler-snap - - google-cloud - - kraken - - libinfluxdb - - mole - - publicsuffix - - rethinkdb-client-driver - - snap-blaze + - avers < 0 + - avers-api < 0 + - avers-server < 0 + - css-syntax < 0 + - etcd < 0 + - github-types ^>= 0.2.1 + - github-webhook-handler < 0 + - github-webhook-handler-snap < 0 + - google-cloud < 0 + - kraken < 0 + - libinfluxdb < 0 + - mole < 0 + - publicsuffix < 0 + - rethinkdb-client-driver < 0 + - snap-blaze < 0 "Alexandr Kurilin @alex_kurilin": - - bcrypt + - bcrypt ^>= 0.0.11 "Jeffrey Rosenbluth @jeffreyrosenbluth": - - palette - - diagrams-canvas - - svg-builder + - palette ^>= 0.3.0.2 + - diagrams-canvas < 0 + - svg-builder ^>= 0.1.1 "GabrĂ­el ArthĂșr PĂ©tursson @polarina": - - sdl2 + - sdl2 ^>= 2.5.3.0 "Leon Mergen @solatis": - - base32string - - base58string - - bitcoin-api - - bitcoin-api-extra - - bitcoin-block - - bitcoin-script - - bitcoin-tx - - bitcoin-types - - hexstring + - base32string ^>= 0.9.1 + - base58string ^>= 0.10.0 + - bitcoin-api < 0 + - bitcoin-api-extra < 0 + - bitcoin-block < 0 + - bitcoin-script < 0 + - bitcoin-tx < 0 + - bitcoin-types < 0 + - hexstring < 0 - network-attoparsec < 0 # MonadFail - network-anonymous-i2p < 0 - - network-anonymous-tor + - network-anonymous-tor < 0 "Timothy Jones @zmthy": - - http-media + - http-media ^>= 0.8.0.0 "Greg V @myfreeweb": - - pcre-heavy - - http-link-header - - microformats2-parser - - hspec-expectations-pretty-diff - - wai-cli - - magicbane + - pcre-heavy ^>= 1.0.0.2 + - http-link-header ^>= 1.2.1 + - microformats2-parser < 0 + - hspec-expectations-pretty-diff ^>= 0.7.2.5 + - wai-cli ^>= 0.2.3 + - magicbane < 0 "Francesco Mazzoli @bitonic": - - language-c-quote + - language-c-quote ^>= 0.13 "Sönke Hahn @soenkehahn": - - generics-eot - - getopt-generics - - graph-wrapper - - string-conversions - - hspec-checkers - - FindBin + - generics-eot ^>= 0.4.0.1 + - getopt-generics ^>= 0.13.0.4 + - graph-wrapper ^>= 0.2.6.0 + - string-conversions ^>= 0.4.0.1 + - hspec-checkers ^>= 0.1.0.2 + - FindBin ^>= 0.0.5 "Jan Stolarek @jstolarek": - - tasty-program + - tasty-program ^>= 1.0.5 "Abhinav Gupta @abhinav": - - farmhash - - pinch + - farmhash < 0 + - pinch ^>= 0.4.1.1 - sandman < 0 # compilation failure (Cabal 3) "Adam C. Foltzer @acfoltzer": - - gitrev - - persistent-refs + - gitrev ^>= 1.3.1 + - persistent-refs ^>= 0.4 "Luke Taylor @tekul": - - jose-jwt + - jose-jwt ^>= 0.9.2 "Brendan Hay @brendanhay": - - amazonka - - amazonka-core - - amazonka-test - - amazonka-apigateway - - amazonka-application-autoscaling - - amazonka-appstream - - amazonka-athena - - amazonka-autoscaling - - amazonka-budgets - - amazonka-certificatemanager - - amazonka-cloudformation - - amazonka-cloudfront - - amazonka-cloudhsm - - amazonka-cloudsearch - - amazonka-cloudsearch-domains - - amazonka-cloudtrail - - amazonka-cloudwatch - - amazonka-cloudwatch-events - - amazonka-cloudwatch-logs - - amazonka-codebuild - - amazonka-codecommit - - amazonka-codedeploy - - amazonka-codepipeline - - amazonka-cognito-identity - - amazonka-cognito-idp - - amazonka-cognito-sync - - amazonka-config - - amazonka-datapipeline - - amazonka-devicefarm - - amazonka-directconnect - - amazonka-discovery - - amazonka-dms - - amazonka-ds - - amazonka-dynamodb - - amazonka-dynamodb-streams + - amazonka < 0 + - amazonka-core < 0 + - amazonka-test < 0 + - amazonka-apigateway < 0 + - amazonka-application-autoscaling < 0 + - amazonka-appstream < 0 + - amazonka-athena < 0 + - amazonka-autoscaling < 0 + - amazonka-budgets < 0 + - amazonka-certificatemanager < 0 + - amazonka-cloudformation < 0 + - amazonka-cloudfront < 0 + - amazonka-cloudhsm < 0 + - amazonka-cloudsearch < 0 + - amazonka-cloudsearch-domains < 0 + - amazonka-cloudtrail < 0 + - amazonka-cloudwatch < 0 + - amazonka-cloudwatch-events < 0 + - amazonka-cloudwatch-logs < 0 + - amazonka-codebuild < 0 + - amazonka-codecommit < 0 + - amazonka-codedeploy < 0 + - amazonka-codepipeline < 0 + - amazonka-cognito-identity < 0 + - amazonka-cognito-idp < 0 + - amazonka-cognito-sync < 0 + - amazonka-config < 0 + - amazonka-datapipeline < 0 + - amazonka-devicefarm < 0 + - amazonka-directconnect < 0 + - amazonka-discovery < 0 + - amazonka-dms < 0 + - amazonka-ds < 0 + - amazonka-dynamodb < 0 + - amazonka-dynamodb-streams < 0 - amazonka-ec2 < 0 # takes too much memory to build https://github.com/brendanhay/amazonka/issues/549 - - amazonka-ecr - - amazonka-ecs - - amazonka-efs - - amazonka-elasticache - - amazonka-elasticbeanstalk - - amazonka-elasticsearch - - amazonka-elastictranscoder - - amazonka-elb - - amazonka-elbv2 - - amazonka-emr - - amazonka-gamelift - - amazonka-glacier - - amazonka-glue - - amazonka-health - - amazonka-iam - - amazonka-importexport - - amazonka-inspector - - amazonka-iot - - amazonka-iot-dataplane - - amazonka-kinesis - - amazonka-kinesis-analytics - - amazonka-kinesis-firehose - - amazonka-kms - - amazonka-lambda - - amazonka-lightsail - - amazonka-marketplace-analytics - - amazonka-marketplace-metering - - amazonka-ml - - amazonka-opsworks - - amazonka-opsworks-cm - - amazonka-pinpoint - - amazonka-polly - - amazonka-rds - - amazonka-redshift - - amazonka-rekognition - - amazonka-route53 - - amazonka-route53-domains - - amazonka-s3 - - amazonka-sdb - - amazonka-servicecatalog - - amazonka-ses - - amazonka-shield - - amazonka-sms - - amazonka-snowball - - amazonka-sns - - amazonka-sqs - - amazonka-ssm - - amazonka-stepfunctions - - amazonka-storagegateway - - amazonka-sts - - amazonka-support - - amazonka-swf - - amazonka-waf - - amazonka-workspaces - - amazonka-xray + - amazonka-ecr < 0 + - amazonka-ecs < 0 + - amazonka-efs < 0 + - amazonka-elasticache < 0 + - amazonka-elasticbeanstalk < 0 + - amazonka-elasticsearch < 0 + - amazonka-elastictranscoder < 0 + - amazonka-elb < 0 + - amazonka-elbv2 < 0 + - amazonka-emr < 0 + - amazonka-gamelift < 0 + - amazonka-glacier < 0 + - amazonka-glue < 0 + - amazonka-health < 0 + - amazonka-iam < 0 + - amazonka-importexport < 0 + - amazonka-inspector < 0 + - amazonka-iot < 0 + - amazonka-iot-dataplane < 0 + - amazonka-kinesis < 0 + - amazonka-kinesis-analytics < 0 + - amazonka-kinesis-firehose < 0 + - amazonka-kms < 0 + - amazonka-lambda < 0 + - amazonka-lightsail < 0 + - amazonka-marketplace-analytics < 0 + - amazonka-marketplace-metering < 0 + - amazonka-ml < 0 + - amazonka-opsworks < 0 + - amazonka-opsworks-cm < 0 + - amazonka-pinpoint < 0 + - amazonka-polly < 0 + - amazonka-rds < 0 + - amazonka-redshift < 0 + - amazonka-rekognition < 0 + - amazonka-route53 < 0 + - amazonka-route53-domains < 0 + - amazonka-s3 < 0 + - amazonka-sdb < 0 + - amazonka-servicecatalog < 0 + - amazonka-ses < 0 + - amazonka-shield < 0 + - amazonka-sms < 0 + - amazonka-snowball < 0 + - amazonka-sns < 0 + - amazonka-sqs < 0 + - amazonka-ssm < 0 + - amazonka-stepfunctions < 0 + - amazonka-storagegateway < 0 + - amazonka-sts < 0 + - amazonka-support < 0 + - amazonka-swf < 0 + - amazonka-waf < 0 + - amazonka-workspaces < 0 + - amazonka-xray < 0 # gogol-* disabled due to `gogol-core` due to `servant`: #6089/closed # gogol # gogol-core @@ -2063,395 +2063,395 @@ packages: # gogol-youtube # gogol-youtube-analytics # gogol-youtube-reporting - - ede + - ede ^>= 0.3.2.0 - pagerduty < 0 # build failure with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 - - semver - - text-manipulate + - semver ^>= 0.4.0.1 + - text-manipulate ^>= 0.3.0.0 "Nick Partridge @nkpart": - - cabal-file-th + - cabal-file-th ^>= 0.2.7 "Gershom Bazerman @gbaz": - - jmacro - - jmacro-rpc - - jmacro-rpc-snap - - jmacro-rpc-happstack + - jmacro ^>= 0.6.17 + - jmacro-rpc ^>= 0.3.3 + - jmacro-rpc-snap < 0 + - jmacro-rpc-happstack ^>= 0.3.2 - - mbox - - kmeans - - boolsimplifier - - cubicspline - - maximal-cliques + - mbox ^>= 0.3.4 + - kmeans ^>= 0.1.3 + - boolsimplifier ^>= 0.1.8 + - cubicspline ^>= 0.1.2 + - maximal-cliques ^>= 0.1.1 "Alexander Bondarenko @dpwiz": - - hedn - - soap - - soap-tls - - soap-openssl + - hedn ^>= 0.3.0.4 + - soap ^>= 0.2.3.6 + - soap-tls ^>= 0.1.1.4 + - soap-openssl ^>= 0.1.0.2 "Andres Löh @kosmikus": - - generics-sop - - records-sop - - sop-core + - generics-sop ^>= 0.5.1.1 + - records-sop ^>= 0.1.1.0 + - sop-core ^>= 0.5.0.1 "Vivian McPhail @amcphail": - - hmatrix-gsl-stats - - hsignal - - hstatistics - - plot - - vector-buffer - - hmatrix-repa + - hmatrix-gsl-stats ^>= 0.4.1.8 + - hsignal ^>= 0.2.7.5 + - hstatistics ^>= 0.3.1 + - plot < 0 + - vector-buffer ^>= 0.4.1 + - hmatrix-repa ^>= 0.1.2.2 "Noam Lewis @sinelaw": - - xml-to-json - - xml-to-json-fast - - wl-pprint + - xml-to-json ^>= 2.0.1 + - xml-to-json-fast ^>= 2.0.0 + - wl-pprint ^>= 1.2.1 # not a maintainer - - hxt-curl - - hxt-expat - - hxt-tagsoup - - hexpat - - digits - - logict - - leveldb-haskell - - system-argv0 - - markdown-unlit + - hxt-curl ^>= 9.1.1.1 + - hxt-expat ^>= 9.1.1 + - hxt-tagsoup ^>= 9.1.4 + - hexpat ^>= 0.20.13 + - digits ^>= 0.3.1 + - logict ^>= 0.7.1.0 + - leveldb-haskell ^>= 0.6.5 + - system-argv0 ^>= 0.1.1 + - markdown-unlit ^>= 0.5.1 "Brian McKenna @puffnfresh": - - jwt < 0.11 # https://github.com/commercialhaskell/stackage/issues/6356 + - jwt ^>= 0.10.1 && <0.11 # https://github.com/commercialhaskell/stackage/issues/6356 "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - - setlocale + - setlocale ^>= 1.0.0.10 "Taylor Fausak @tfausak": - - autoexporter - - burrito - - derulo - - flow - - github-release - - json-feed - - lackey - - list-singleton - - rampart - - ratel - - ratel-wai - - rattletrap - - salve - - splint - - strive - - witch - - wuss - - - bmp # @benl23x5 - - gpolyline # @fegu + - autoexporter ^>= 1.1.20 + - burrito ^>= 1.2.0.4 + - derulo ^>= 1.0.10 + - flow ^>= 1.0.23 + - github-release ^>= 1.3.8 + - json-feed ^>= 1.0.15 + - lackey ^>= 1.0.16 + - list-singleton ^>= 1.0.0.5 + - rampart ^>= 1.1.0.4 + - ratel ^>= 1.0.17 + - ratel-wai ^>= 1.1.5 + - rattletrap ^>= 11.2.4 + - salve ^>= 1.0.11 + - splint ^>= 1.0.1.4 + - strive < 0 + - witch ^>= 0.3.4.1 + - wuss ^>= 1.1.19 + + - bmp ^>= 1.2.6.3 # @benl23x5 + - gpolyline ^>= 0.1.0.1 # @fegu "Marios Titas @redneb": - - HsOpenSSL-x509-system - - adler32 - - btrfs - - disk-free-space - - hxt-css - - islink - - linux-file-extents - - linux-namespaces + - HsOpenSSL-x509-system ^>= 0.1.0.4 + - adler32 ^>= 0.1.2.0 + - btrfs < 0 + - disk-free-space ^>= 0.1.0.1 + - hxt-css ^>= 0.1.0.3 + - islink ^>= 0.1.0.0 + - linux-file-extents ^>= 0.2.0.0 + - linux-namespaces ^>= 0.1.3.0 "Will Coster @fimad": - - prometheus-client - - prometheus-metrics-ghc - - scalpel - - scalpel-core - - wai-middleware-prometheus + - prometheus-client ^>= 1.1.0 + - prometheus-metrics-ghc ^>= 1.0.1.2 + - scalpel ^>= 0.6.2 + - scalpel-core ^>= 0.6.2 + - wai-middleware-prometheus ^>= 1.0.0.1 "William Casarin @jb55": - - bson-lens - - cased - - elm-export - - elm-export-persistent - - pipes-csv - - pipes-mongodb - - servant-elm - - servant-streaming - - servant-streaming-client - - servant-streaming-server - - skeletons + - bson-lens ^>= 0.1.1 + - cased ^>= 0.1.0.0 + - elm-export ^>= 0.6.0.1 + - elm-export-persistent ^>= 1.0.0 + - pipes-csv ^>= 1.4.3 + - pipes-mongodb ^>= 0.1.0.0 + - servant-elm < 0 + - servant-streaming < 0 + - servant-streaming-client < 0 + - servant-streaming-server < 0 + - skeletons < 0 "David Raymond Christiansen @david-christiansen": - - annotated-wl-pprint + - annotated-wl-pprint ^>= 0.7.0 "Yitz Gale @ygale": - - boolean-normal-forms - - strict-concurrency - - timezone-series - - timezone-olson + - boolean-normal-forms < 0 + - strict-concurrency ^>= 0.2.4.3 + - timezone-series ^>= 0.1.9 + - timezone-olson ^>= 0.2.0 "Harry Garrood @hdgarrood": - - aeson-better-errors + - aeson-better-errors ^>= 0.9.1.0 "Mitchell Rosen @mitchellwrosen": - - ki - - tasty-hspec - - termbox - - text-ansi - - timer-wheel + - ki < 0 + - tasty-hspec ^>= 1.2 + - termbox < 0 + - text-ansi ^>= 0.1.1 + - timer-wheel ^>= 0.3.0 "QBayLogic B.V. @martijnbastiaan": - - ghc-tcplugins-extra - - ghc-typelits-extra - - ghc-typelits-knownnat - - ghc-typelits-natnormalise - - clash-prelude - - clash-lib - - clash-ghc + - ghc-tcplugins-extra ^>= 0.4.2 + - ghc-typelits-extra ^>= 0.4.3 + - ghc-typelits-knownnat ^>= 0.7.6 + - ghc-typelits-natnormalise ^>= 0.7.6 + - clash-prelude ^>= 1.4.6 + - clash-lib ^>= 1.4.6 + - clash-ghc ^>= 1.4.6 "Martijn Bastiaan @martijnbastiaan": - - aeson-pretty + - aeson-pretty ^>= 0.8.9 "Athan Clark @athanclark": - - aeson-attoparsec - - alternative-vector - - almost-fix - - attoparsec-base64 - - attoparsec-path + - aeson-attoparsec ^>= 0.0.0 + - alternative-vector ^>= 0.0.0 + - almost-fix ^>= 0.0.2 + - attoparsec-base64 ^>= 0.0.0 + - attoparsec-path ^>= 0.0.0.1 # - attoparsec-ip # Deprecated in favor of ip # - attoparsec-uri - - chan - - commutative - - composition-extra - - every - - extractable-singleton - - follow-file + - chan ^>= 0.0.4.1 + - commutative ^>= 0.0.2 + - composition-extra ^>= 2.0.0 + - every ^>= 0.0.1 + - extractable-singleton ^>= 0.0.1 + - follow-file ^>= 0.0.3 - HSet < 0 # compilation failure, duplicate Hashable instance - - markup - - monad-control-aligned - - monadoid - - n-tuple - - path-extra - - pred-set - - pred-trie - - path-extra - - poly-arity - - quickcheck-combinators - - rose-trees - - sets - - since - - timemap - - tmapchan - - tmapmvar - - tries - - unit-constraint - - unfoldable-restricted - - urlpath - - wai-transformers - - websockets-rpc - - websockets-simple - - webpage - - ws + - markup < 0 + - monad-control-aligned ^>= 0.0.1.1 + - monadoid ^>= 0.0.3 + - n-tuple < 0 + - path-extra ^>= 0.2.0 + - pred-set < 0 + - pred-trie < 0 + - path-extra ^>= 0.2.0 + - poly-arity ^>= 0.1.0 + - quickcheck-combinators < 0 + - rose-trees < 0 + - sets ^>= 0.0.6.2 + - since ^>= 0.0.0 + - timemap < 0 + - tmapchan ^>= 0.0.3 + - tmapmvar ^>= 0.0.4 + - tries < 0 + - unit-constraint ^>= 0.0.0 + - unfoldable-restricted < 0 + - urlpath < 0 + - wai-transformers ^>= 0.1.0 + - websockets-rpc < 0 + - websockets-simple ^>= 0.2.0 + - webpage ^>= 0.0.5.1 + - ws < 0 "Fumiaki Kinoshita @fumieval": - - boundingboxes - - control-bool - - drinkery - - monad-skeleton - - xml-lens - - witherable - - deriving-aeson + - boundingboxes < 0 + - control-bool ^>= 0.2.1 + - drinkery < 0 + - monad-skeleton ^>= 0.2 + - xml-lens < 0 + - witherable ^>= 0.4.2 + - deriving-aeson ^>= 0.2.8 "Peter Harpending @pharpend": - - editor-open + - editor-open ^>= 0.6.0.0 - exceptional < 0 # MonadFail - - pager - - semiring-simple + - pager ^>= 0.1.1.0 + - semiring-simple ^>= 1.0.0.1 "Philipp Hausmann @phile314": - - language-thrift + - language-thrift ^>= 0.12.0.1 "Michael Thompson @michaelt": - - pipes-text - - lens-simple - - lens-family-core - - lens-family + - pipes-text < 0 + - lens-simple < 0 + - lens-family-core ^>= 2.1.0 + - lens-family ^>= 2.1.1 "Justin Le @mstksg": - - advent-of-code-api - - auto - - backprop - - bins - - conduino - - configurator-export - - decidable - - emd + - advent-of-code-api ^>= 0.2.8.1 + - auto < 0 + - backprop < 0 + - bins < 0 + - conduino ^>= 0.2.2.0 + - configurator-export ^>= 0.1.0.1 + - decidable < 0 + - emd < 0 - functor-products < 0 # compilation failure https://github.com/mstksg/functor-products/issues/1 - - hamilton - - hmatrix-backprop - - hmatrix-vector-sized - - lens-typelevel - - list-witnesses - - nonempty-containers + - hamilton < 0 + - hmatrix-backprop < 0 + - hmatrix-vector-sized ^>= 0.1.3.0 + - lens-typelevel < 0 + - list-witnesses < 0 + - nonempty-containers < 0 - one-liner-instances < 0 # compile failure (random 1.2) - - prompt - - servant-cli - - tagged-binary - - type-combinators-singletons - - typelits-witnesses - - uncertain - - vector-sized + - prompt ^>= 0.1.1.2 + - servant-cli < 0 + - tagged-binary ^>= 0.2.0.1 + - type-combinators-singletons < 0 + - typelits-witnesses < 0 + - uncertain < 0 + - vector-sized ^>= 1.5.0 "Ian Duncan @iand675": - - feature-flags - - metrics - - pipes-wai - - serf - - uri-templater - - data-sketches - - data-sketches-core + - feature-flags ^>= 0.1.0.1 + - metrics ^>= 0.4.1.1 + - pipes-wai ^>= 3.2.0 + - serf < 0 + - uri-templater < 0 + - data-sketches ^>= 0.3.1.0 + - data-sketches-core ^>= 0.1.0.0 "Michael Xavier @MichaelXavier": - - uri-bytestring - - cron - - tasty-tap - - tasty-fail-fast - - drifter - - drifter-postgresql - - drifter-sqlite + - uri-bytestring ^>= 0.3.3.1 + - cron ^>= 0.7.0 + - tasty-tap ^>= 0.1.0 + - tasty-fail-fast ^>= 0.0.3 + - drifter ^>= 0.3.0 + - drifter-postgresql ^>= 0.2.1 + - drifter-sqlite ^>= 0.1.0.0 "Lars Kuhtz @larskuhtz": - - wai-cors - - configuration-tools - - random-bytestring + - wai-cors ^>= 0.2.7 + - configuration-tools ^>= 0.6.1 + - random-bytestring ^>= 0.1.4 "Sam Rijs @srijs": - - ndjson-conduit - - operational-class - - result + - ndjson-conduit ^>= 0.1.0.5 + - operational-class < 0 + - result ^>= 0.2.6.0 "Daniel Patterson @dbp": - - hworker - - fn + - hworker ^>= 0.1.0.1 + - fn ^>= 0.3.0.2 "Mathieu Boespflug @mboes": - - choice - - distributed-closure - - inline-java - - inline-r + - choice ^>= 0.2.2 + - distributed-closure < 0 + - inline-java < 0 + - inline-r < 0 - jni < 0 # compilation failure - - jvm - - jvm-streaming - - H - - sparkle - - th-lift + - jvm < 0 + - jvm-streaming < 0 + - H < 0 + - sparkle < 0 + - th-lift ^>= 0.8.2 "Christopher Reichert @creichert": - - bencode - - hsebaysdk - - dockerfile - - wai-middleware-throttle - - yesod-auth-basic + - bencode ^>= 0.6.1.1 + - hsebaysdk ^>= 0.4.1.0 + - dockerfile ^>= 0.2.0 + - wai-middleware-throttle < 0 + - yesod-auth-basic ^>= 0.1.0.3 "Hirotomo Moriwaki @philopon": - - barrier + - barrier ^>= 0.1.1 "Kai Zhang @kaizhang": - - matrices + - matrices ^>= 0.5.0 - haskell-igraph < 0 # compile failure ghc 8.10.1 #5440/closed "Michel Boucey @MichelBoucey": - - IPv6Addr - - ip6addr - - cayley-client - - Spintax - - glabrous - - google-oauth2-jwt - - IPv6DB - - gothic - - NanoID + - IPv6Addr ^>= 2.0.3 + - ip6addr ^>= 1.0.2 + - cayley-client ^>= 0.4.17 + - Spintax ^>= 0.3.6 + - glabrous ^>= 2.0.5 + - google-oauth2-jwt < 0 + - IPv6DB < 0 + - gothic ^>= 0.1.8 + - NanoID ^>= 3.1.1 "koral koral@mailoo.org @k0ral": - - atom-conduit - - conduit-parse - - dublincore-xml-conduit - - euler-tour-tree - - opml-conduit - - rss-conduit - - timerep - - xml-conduit-parse + - atom-conduit < 0 + - conduit-parse ^>= 0.2.1.0 + - dublincore-xml-conduit ^>= 0.1.0.2 + - euler-tour-tree < 0 + - opml-conduit < 0 + - rss-conduit < 0 + - timerep ^>= 2.0.1.0 + - xml-conduit-parse < 0 "Daniel Cartwright @chessai": - - streaming - - streaming-bytestring - - country - - semirings - - torsor - - chronos - - refined - - these-skinny - - hedgehog-classes + - streaming ^>= 0.2.3.0 + - streaming-bytestring ^>= 0.2.1 + - country < 0 + - semirings ^>= 0.6 + - torsor ^>= 0.1 + - chronos < 0 + - refined < 0 + - these-skinny < 0 + - hedgehog-classes ^>= 0.2.5.2 "Kostiantyn Rybnikov @k-bx": - - SHA - - currency - - data-ordlist - - digits - - dns - - friday - - friday-juicypixels - - hbeanstalk - - hedis - - hprotoc - - hsyslog-udp - - iso3166-country-codes - - iso639 - - monoidal-containers - - murmur-hash - - protocol-buffers - - protocol-buffers-descriptor - - regex-pcre - - string-class - - string-combinators + - SHA ^>= 1.6.4.4 + - currency ^>= 0.2.0.0 + - data-ordlist ^>= 0.4.7.0 + - digits ^>= 0.3.1 + - dns ^>= 4.0.1 + - friday < 0 + - friday-juicypixels < 0 + - hbeanstalk < 0 + - hedis ^>= 0.15.0 + - hprotoc ^>= 2.4.17 + - hsyslog-udp ^>= 0.2.5 + - iso3166-country-codes ^>= 0.20140203.8 + - iso639 ^>= 0.1.0.3 + - monoidal-containers < 0 + - murmur-hash ^>= 0.1.0.10 + - protocol-buffers ^>= 2.4.17 + - protocol-buffers-descriptor ^>= 2.4.17 + - regex-pcre ^>= 0.95.0.0 + - string-class ^>= 0.1.7.0 + - string-combinators ^>= 0.6.0.5 "Rob O'Callahan ropoctl@gmail.com @rcallahan": - - pipes-fastx - - seqalign + - pipes-fastx ^>= 0.3.0.0 + - seqalign ^>= 0.2.0.4 "John Lenz @wuzzeb": - - yesod-static-angular - - hspec-webdriver - - webdriver-angular + - yesod-static-angular < 0 + - hspec-webdriver < 0 + - webdriver-angular < 0 "Sven Heyll @sheyll": - - b9 - - type-spec - - pretty-types - - function-builder - - bytestring-to-vector + - b9 < 0 + - type-spec ^>= 0.4.0.0 + - pretty-types ^>= 0.4.0.0 + - function-builder ^>= 0.3.0.1 + - bytestring-to-vector ^>= 0.3.0.1 "Jakub FijaƂkowski @jakubfijalkowski": - - hlibsass - - hsass + - hlibsass ^>= 0.1.10.1 + - hsass ^>= 0.8.0 "Robert Massaioli @robertmassaioli": - - range + - range ^>= 0.3.0.2 "Vladislav Zavialov @int-index": - - transformers-lift - - union - - named - - inj - - shower + - transformers-lift < 0 + - union ^>= 0.1.2 + - named ^>= 0.3.0.1 + - inj ^>= 1.0 + - shower < 0 "Stack Builders stackage@stackbuilders.com @stackbuilders": - - atomic-write - - dbcleaner - - dotenv - - hapistrano - - hspec-golden - - inflections - - stache - - scalendar + - atomic-write ^>= 0.2.0.7 + - dbcleaner ^>= 0.1.3 + - dotenv ^>= 0.9.0.0 + - hapistrano < 0 + - hspec-golden ^>= 0.2.0.0 + - inflections ^>= 0.4.0.6 + - stache ^>= 2.3.0 + - scalendar < 0 "Sergey Alirzaev @l29ah": - - monad-peel - - NineP - - Network-NineP + - monad-peel ^>= 0.2.1.2 + - NineP ^>= 0.0.2.1 + - Network-NineP < 0 "Antoni Silvestre @asilvestre": # Test suite needs a running neo4j server with auth disabled @@ -2460,2739 +2460,2739 @@ packages: - haskell-neo4j-client < 0 # build failure with GHC 8.4 https://github.com/asilvestre/haskell-neo4j-rest-client/issues/32 "Anton Kholomiov ": - - data-fix + - data-fix ^>= 0.3.2 "Alexey Khudyakov @Shimuuar": - - histogram-fill - - fixed-vector - - fixed-vector-hetero - - type-level-numbers + - histogram-fill ^>= 0.9.1.0 + - fixed-vector ^>= 1.2.1.0 + - fixed-vector-hetero ^>= 0.6.1.1 + - type-level-numbers ^>= 0.1.1.1 "Ryan Scott @RyanGlScott": - - abstract-deque - - abstract-deque-tests - - abstract-par - - atomic-primops - - base-compat-batteries - - base-orphans - - chaselev-deque - - code-page - - constraint-tuples - - criterion - - criterion-measurement - - data-reify - - deriving-compat - - dotgen - - echo - - eliminators - - generic-deriving - - ghc-bignum-orphans - - hashmap - - indexed-traversable-instances - - invariant - - keycode - - lift-generics - - mintty - - monad-par - - monad-par-extras - - mtl-compat - - ordered-containers - - proxied - - rdtsc - - singleton-nats - - singletons-base - - singletons-th - - text-show - - text-show-instances - - th-abstraction - - th-compat - - thread-local-storage - - type-equality + - abstract-deque ^>= 0.3 + - abstract-deque-tests ^>= 0.3 + - abstract-par ^>= 0.3.3 + - atomic-primops ^>= 0.8.4 + - base-compat-batteries ^>= 0.11.2 + - base-orphans ^>= 0.8.6 + - chaselev-deque < 0 + - code-page ^>= 0.2.1 + - constraint-tuples ^>= 0.1.2 + - criterion ^>= 1.5.12.0 + - criterion-measurement ^>= 0.1.3.0 + - data-reify ^>= 0.6.3 + - deriving-compat ^>= 0.6 + - dotgen ^>= 0.4.3 + - echo ^>= 0.1.4 + - eliminators ^>= 0.8 + - generic-deriving ^>= 1.14.1 + - ghc-bignum-orphans ^>= 0.1.1 + - hashmap ^>= 1.3.3 + - indexed-traversable-instances ^>= 0.1.1 + - invariant ^>= 0.5.5 + - keycode ^>= 0.2.2 + - lift-generics ^>= 0.2.1 + - mintty ^>= 0.1.3 + - monad-par ^>= 0.3.5 + - monad-par-extras ^>= 0.3.3 + - mtl-compat ^>= 0.2.2 + - ordered-containers ^>= 0.2.2 + - proxied ^>= 0.3.1 + - rdtsc ^>= 1.3.0.1 + - singleton-nats ^>= 0.4.6 + - singletons-base ^>= 3.0 + - singletons-th ^>= 3.0 + - text-show ^>= 3.9.3 + - text-show-instances ^>= 3.8.6 + - th-abstraction ^>= 0.4.3.0 + - th-compat ^>= 0.1.3 + - thread-local-storage ^>= 0.2 + - type-equality ^>= 1 "Kirill Zaborsky @qrilka": - - xlsx + - xlsx ^>= 0.8.4 "Matt Parsons @parsonsmatt": - - monad-logger-prefix - - monad-metrics - - prairie - - ekg-cloudwatch - - smtp-mail - - liboath-hs - - servant-quickcheck - - esqueleto - - hedgehog-fakedata - - persistent-discover - - persistent-documentation - - persistent-typed-db - - persistent-qq - - persistent-pagination - - hspec-hedgehog - - exception-via - - record-wrangler - - lift-type - - some-dict-of - - discover-instances + - monad-logger-prefix ^>= 0.1.12 + - monad-metrics < 0 + - prairie < 0 + - ekg-cloudwatch < 0 + - smtp-mail ^>= 0.3.0.0 + - liboath-hs ^>= 0.0.1.2 + - servant-quickcheck < 0 + - esqueleto ^>= 3.5.3.0 + - hedgehog-fakedata ^>= 0.0.1.4 + - persistent-discover ^>= 0.1.0.5 + - persistent-documentation ^>= 0.1.0.4 + - persistent-typed-db ^>= 0.1.0.5 + - persistent-qq ^>= 2.12.0.1 + - persistent-pagination ^>= 0.1.1.2 + - hspec-hedgehog ^>= 0.0.1.2 + - exception-via ^>= 0.1.0.0 + - record-wrangler ^>= 0.1.1.0 + - lift-type ^>= 0.1.0.1 + - some-dict-of ^>= 0.1.0.2 + - discover-instances ^>= 0.1.0.0 "Matthew Pickering @mpickering": - - refact + - refact ^>= 0.3.0.2 "Andrew Gibiansky @gibiansky": - - ipython-kernel + - ipython-kernel ^>= 0.10.2.2 "James Cook @mokus0": - - dependent-map - - dependent-sum - - dependent-sum-template - - dice - - hstatsd - - misfortune + - dependent-map < 0 + - dependent-sum < 0 + - dependent-sum-template < 0 + - dice < 0 + - hstatsd < 0 + - misfortune < 0 "Timo von Holtz @tvh": - - ekg-wai - - haxl-amazonka - - hasql-migration - - servant-JuicyPixels + - ekg-wai < 0 + - haxl-amazonka < 0 + - hasql-migration ^>= 0.3.0 + - servant-JuicyPixels ^>= 0.3.1.0 "Artyom Kazak @neongreen": - - microlens - - microlens-platform - - microlens-mtl - - microlens-th - - microlens-ghc - - microlens-contra - - cheapskate-highlight - - cheapskate-lucid - - cmark-lucid - - cmark-highlight - - Spock-lucid - - charsetdetect-ae - - text-all + - microlens ^>= 0.4.12.0 + - microlens-platform ^>= 0.4.2.1 + - microlens-mtl ^>= 0.2.0.1 + - microlens-th ^>= 0.4.3.10 + - microlens-ghc ^>= 0.4.13.1 + - microlens-contra ^>= 0.1.0.2 + - cheapskate-highlight ^>= 0.1.0.0 + - cheapskate-lucid ^>= 0.1.0.0 + - cmark-lucid ^>= 0.1.0.0 + - cmark-highlight < 0 + - Spock-lucid < 0 + - charsetdetect-ae ^>= 1.1.0.4 + - text-all < 0 "Takano Akio tak@anoak.io @takano-akio": - - fast-builder - - filelock + - fast-builder ^>= 0.1.3.0 + - filelock ^>= 0.1.1.5 "Brian Lewis brian@lorf.org @bsl": - - bindings-GLFW - - GLFW-b + - bindings-GLFW ^>= 3.3.2.0 + - GLFW-b ^>= 3.3.0.0 "Niklas HambĂŒchen mail@nh2.me @nh2": - - conduit-concurrent-map - - hidapi - - iso8601-time - - loop - - lz4-frame-conduit - - netpbm + - conduit-concurrent-map ^>= 0.1.1 + - hidapi ^>= 0.1.7 + - iso8601-time ^>= 0.1.5 + - loop ^>= 0.3.0 + - lz4-frame-conduit ^>= 0.1.0.1 + - netpbm ^>= 1.0.4 - network-house < 0 # compilation failure MonadFail - - reinterpret-cast - - shared-memory - - posix-paths + - reinterpret-cast ^>= 0.1.0 + - shared-memory ^>= 0.2.0.0 + - posix-paths ^>= 0.3.0.0 # As dependencies of packages above - - attoparsec-binary + - attoparsec-binary ^>= 0.2 "Michael Walker @barrucadu": - - both - - concurrency - - dejafu - - hunit-dejafu - - tasty-dejafu - - irc-ctcp - - irc-conduit - - irc-client + - both ^>= 0.1.1.2 + - concurrency ^>= 1.11.0.2 + - dejafu ^>= 2.4.0.3 + - hunit-dejafu ^>= 2.0.0.5 + - tasty-dejafu ^>= 2.0.0.8 + - irc-ctcp ^>= 0.1.3.1 + - irc-conduit ^>= 0.3.0.5 + - irc-client ^>= 1.1.2.2 "Rudy Matela @rudymatela": - - leancheck - - leancheck-instances - - fitspec - - express - - speculate - - extrapolate - - code-conjure - - percent-format - - tasty-leancheck - - hspec-leancheck - - test-framework-leancheck + - leancheck ^>= 0.9.10 + - leancheck-instances ^>= 0.0.4 + - fitspec ^>= 0.4.10 + - express ^>= 1.0.8 + - speculate ^>= 0.4.14 + - extrapolate ^>= 0.4.6 + - code-conjure ^>= 0.5.0 + - percent-format ^>= 0.0.2 + - tasty-leancheck ^>= 0.0.2 + - hspec-leancheck ^>= 0.0.6 + - test-framework-leancheck ^>= 0.0.4 "Trevor Elliott @elliottt": - - irc + - irc ^>= 0.6.1.0 "Dennis Gosnell @cdepillabout": - - envelope - - from-sum - - natural-transformation - - password - - password-instances - - password-types - - pretty-simple - - print-console-colors - - read-env-var - - servant-checked-exceptions - - servant-checked-exceptions-core - - servant-rawm - - servant-static-th - - termonad - - world-peace - - xml-html-qq - - xml-indexed-cursor + - envelope ^>= 0.2.2.0 + - from-sum ^>= 0.2.3.0 + - natural-transformation ^>= 0.4 + - password ^>= 3.0.0.0 + - password-instances ^>= 3.0.0.0 + - password-types ^>= 1.0.0.0 + - pretty-simple ^>= 4.0.0.0 + - print-console-colors ^>= 0.1.0.0 + - read-env-var ^>= 1.0.0.0 + - servant-checked-exceptions ^>= 2.2.0.1 + - servant-checked-exceptions-core ^>= 2.2.0.1 + - servant-rawm ^>= 1.0.0.0 + - servant-static-th ^>= 1.0.0.0 + - termonad < 0 + - world-peace ^>= 1.0.2.0 + - xml-html-qq < 0 + - xml-indexed-cursor ^>= 0.1.1.0 "Franklin Chen @FranklinChen": - - Ebnf2ps + - Ebnf2ps ^>= 1.0.15 "Tobias Bexelius @tobbebex": - - GPipe + - GPipe < 0 "Jonas Carpay @jonascarpay": - - apecs - - apecs-gloss - - apecs-physics - - aeson-commit - - js-chart - - tasty-focus + - apecs ^>= 0.9.4 + - apecs-gloss ^>= 0.2.4 + - apecs-physics ^>= 0.4.5 + - aeson-commit ^>= 1.4 + - js-chart ^>= 2.9.4.1 + - tasty-focus ^>= 1.0.1 "Spencer Janssen @spencerjanssen": - - Xauth + - Xauth ^>= 0.1 "Sebastian de Bellefon @Helkafen": - - wai-middleware-metrics + - wai-middleware-metrics < 0 "Gregory Collins @gregorycollins": - - hashtables - - io-streams - - openssl-streams + - hashtables ^>= 1.2.4.2 + - io-streams ^>= 1.5.2.1 + - openssl-streams ^>= 1.2.3.0 "Andrew Cowie @istathar": - - chronologique - - http-common - - http-streams - - locators - - core-data - - core-program - - core-telemetry - - core-text + - chronologique ^>= 0.3.1.3 + - http-common ^>= 0.8.3.4 + - http-streams ^>= 0.8.9.4 + - locators ^>= 0.3.0.3 + - core-data ^>= 0.2.1.11 + - core-program ^>= 0.4.2.0 + - core-telemetry ^>= 0.1.7.3 + - core-text ^>= 0.3.5.0 "Sean Hunt = 0.1.1.2 "Ivan Miljenovic @ivan-m": - - fgl - - graphviz - - wl-pprint-text - - servant-pandoc + - fgl ^>= 5.7.0.3 + - graphviz ^>= 2999.20.1.0 + - wl-pprint-text ^>= 1.2.0.1 + - servant-pandoc < 0 "Sharif Olorin @olorin": - - quickcheck-text - - nagios-check + - quickcheck-text ^>= 0.1.2.1 + - nagios-check ^>= 0.3.2 "Peter Simons @peti": - - cabal2nix - - cabal2spec - - cgi - - distribution-nixpkgs - - distribution-opensuse - - flexible-defaults - - funcmp - - hackage-db - - hledger-interest - - hopenssl - - hsdns - - hsemail - - hsyslog - - jailbreak-cabal - - lambdabot-core - - lambdabot-irc-plugins - - language-nix - - logging-facade-syslog - - MonadPrompt - - nix-paths - - parsec-class - - prim-uniq + - cabal2nix ^>= 2.18.0 + - cabal2spec ^>= 2.6.2 + - cgi ^>= 3001.5.0.0 + - distribution-nixpkgs ^>= 1.6.2 + - distribution-opensuse ^>= 1.1.1 + - flexible-defaults ^>= 0.0.3 + - funcmp ^>= 1.9 + - hackage-db ^>= 2.1.2 + - hledger-interest ^>= 1.6.3 + - hopenssl ^>= 2.2.4 + - hsdns ^>= 1.8 + - hsemail ^>= 2.2.1 + - hsyslog ^>= 5.0.2 + - jailbreak-cabal ^>= 1.3.5 + - lambdabot-core < 0 + - lambdabot-irc-plugins < 0 + - language-nix ^>= 2.2.0 + - logging-facade-syslog ^>= 1 + - MonadPrompt ^>= 1.0.0.5 + - nix-paths ^>= 1.0.1 + - parsec-class ^>= 1.0.0.0 + - prim-uniq < 0 - random-fu < 0 - - random-source - - rvar - - SafeSemaphore - - streamproc - - stringsearch # for cgi - - titlecase + - random-source ^>= 0.3.0.11 + - rvar ^>= 0.2.0.6 + - SafeSemaphore ^>= 0.10.1 + - streamproc < 0 + - stringsearch ^>= 0.3.6.6 # for cgi + - titlecase ^>= 1.0.1 "Mark Fine @markfine": - - postgresql-schema - - sbp + - postgresql-schema ^>= 0.1.14 + - sbp ^>= 4.1.0 "Jinjing Wang @nfjinjing": - - moesocks + - moesocks < 0 "Gregory W. Schwartz @GregorySchwartz": - - diversity - - fasta - - modify-fasta - - tree-fun - - random-tree - - clumpiness - - find-clumpiness - - blosum - - rank-product + - diversity < 0 + - fasta < 0 + - modify-fasta < 0 + - tree-fun ^>= 0.8.1.0 + - random-tree ^>= 0.6.0.5 + - clumpiness ^>= 0.17.0.2 + - find-clumpiness < 0 + - blosum < 0 + - rank-product < 0 "Simon Marechal @bartavelle": - - compactmap - - stateWriter - - filecache - - pcre-utils - - strict-base-types - - withdependencies - - hruby - - language-puppet - - tar-conduit + - compactmap ^>= 0.1.4.2.1 + - stateWriter ^>= 0.3.0 + - filecache < 0 + - pcre-utils ^>= 0.1.8.2 + - strict-base-types < 0 + - withdependencies ^>= 0.3.0 + - hruby ^>= 0.3.8.1 + - language-puppet < 0 + - tar-conduit ^>= 0.3.2 "Mark Karpov @mrkkrp": - - JuicyPixels-extra - - cue-sheet - - flac - - flac-picture - - forma - - ghc-syntax-highlighter - - hspec-megaparsec - - htaglib - - html-entity-map - - identicon - - lame - - megaparsec - - megaparsec-tests - - mmark - - mmark-cli - - mmark-ext - - modern-uri - - ormolu - - pagination - - parser-combinators - - parser-combinators-tests - - path - - path-io - - req - - req-conduit - - stache - - tagged-identity - - text-metrics - - wave - - zip + - JuicyPixels-extra ^>= 0.5.2 + - cue-sheet ^>= 2.0.1 + - flac ^>= 0.2.0 + - flac-picture ^>= 0.1.2 + - forma ^>= 1.1.3 + - ghc-syntax-highlighter ^>= 0.0.7.0 + - hspec-megaparsec ^>= 2.2.0 + - htaglib ^>= 1.2.0 + - html-entity-map ^>= 0.1.0.0 + - identicon ^>= 0.2.2 + - lame ^>= 0.2.0 + - megaparsec ^>= 9.2.0 + - megaparsec-tests ^>= 9.2.0 + - mmark ^>= 0.0.7.3 + - mmark-cli ^>= 0.0.5.0 + - mmark-ext ^>= 0.2.1.3 + - modern-uri ^>= 0.3.4.2 + - ormolu ^>= 0.3.1.0 + - pagination ^>= 0.2.2 + - parser-combinators ^>= 1.3.0 + - parser-combinators-tests ^>= 1.3.0 + - path ^>= 0.9.1 + - path-io ^>= 1.6.3 + - req ^>= 3.9.2 + - req-conduit ^>= 1.0.1 + - stache ^>= 2.3.0 + - tagged-identity ^>= 0.1.3 + - text-metrics ^>= 0.3.1 + - wave ^>= 0.2.0 + - zip ^>= 1.7.2 "Emmanuel Touzery @emmanueltouzery": - - app-settings - - hsexif - - slack-web + - app-settings ^>= 0.2.0.12 + - hsexif ^>= 0.6.1.8 + - slack-web < 0 "Nickolay Kudasov @fizruk": - - http-api-data - - swagger2 - - telegram-bot-simple + - http-api-data ^>= 0.4.3 + - swagger2 < 0 + - telegram-bot-simple ^>= 0.3.7 "Jared Tobin @jtobin": - - mwc-probability - - mcmc-types - - mighty-metropolis - - speedy-slice - - hasty-hamiltonian - - declarative - - sampling - - flat-mcmc - - urbit-hob - - hnock + - mwc-probability ^>= 2.3.1 + - mcmc-types ^>= 1.0.3 + - mighty-metropolis ^>= 2.0.0 + - speedy-slice ^>= 0.3.2 + - hasty-hamiltonian ^>= 1.3.4 + - declarative ^>= 0.5.4 + - sampling ^>= 0.3.5 + - flat-mcmc ^>= 1.5.2 + - urbit-hob ^>= 0.3.3 + - hnock ^>= 0.4.0 "Facundo DomĂ­nguez @facundominguez": - - distributed-process - - distributed-process-simplelocalnet - - distributed-process-tests - - distributed-static - - inline-c - - jvm-batching - - network-transport - - network-transport-tests - - network-transport-tcp - - network-transport-inmemory - - network-transport-composed - - pthread - - rank1dynamic + - distributed-process < 0 + - distributed-process-simplelocalnet < 0 + - distributed-process-tests < 0 + - distributed-static ^>= 0.3.9 + - inline-c ^>= 0.9.1.5 + - jvm-batching < 0 + - network-transport ^>= 0.5.4 + - network-transport-tests ^>= 0.3.0 + - network-transport-tcp ^>= 0.8.0 + - network-transport-inmemory < 0 + - network-transport-composed ^>= 0.2.1 + - pthread ^>= 0.2.1 + - rank1dynamic ^>= 0.4.1 "Dave Tapley @dukedave": - - inline-c-cpp + - inline-c-cpp ^>= 0.4.0.3 "Takahiro Himura @himura": - - lens-regex + - lens-regex ^>= 0.1.3 # - twitter-conduit # twitter-types # - twitter-types # MonadFail # - twitter-types-lens # "Robbin C. @robbinch": - - zim-parser + - zim-parser ^>= 0.2.1.0 "David Wiltshire @dave77": # on behalf of Alexey Karakulov @w3rs - - hashable-time + - hashable-time ^>= 0.3 "Yuras Shumovich @Yuras": - - pdf-toolbox-content - - pdf-toolbox-core - - pdf-toolbox-document - - io-region - - scanner + - pdf-toolbox-content ^>= 0.1.1 + - pdf-toolbox-core ^>= 0.1.1 + - pdf-toolbox-document ^>= 0.1.2 + - io-region ^>= 0.1.1 + - scanner ^>= 0.3.1 "Stanislav Chernichkin @schernichkin": - - partial-isomorphisms + - partial-isomorphisms < 0 "Christoph Breitkopf @bokesan": - - IntervalMap + - IntervalMap ^>= 0.6.1.2 "Michele Lacchia @rubik": - - pathwalk + - pathwalk ^>= 0.3.1.2 "John Galt @centromere": - - cacophony - - blake2 - - nfc + - cacophony ^>= 0.10.1 + - blake2 ^>= 0.3.0 + - nfc ^>= 0.1.0 "Michael Schröder @mcschroeder": - - ctrie - - ttrie + - ctrie ^>= 0.2 + - ttrie ^>= 0.1.2.2 "Stefan Kersten @kaoskorobase": - - hsndfile - - hsndfile-vector + - hsndfile ^>= 0.8.0 + - hsndfile-vector ^>= 0.5.2 "yihuang @yihuang": - - tagstream-conduit + - tagstream-conduit ^>= 0.5.6 "Johannes Hilden @laserpants": - - hashids - - fuzzyset + - hashids ^>= 1.0.2.4 + - fuzzyset ^>= 0.2.2 "Will Sewell @willsewell": - - benchpress - - pusher-http-haskell + - benchpress ^>= 0.2.2.18 + - pusher-http-haskell ^>= 2.1.0.7 "Yorick Laupa yo.eight@gmail.com @YoEight": - - eventstore - - dotnet-timespan - - eventsource-api - - eventsource-geteventstore-store - - eventsource-store-specs - - eventsource-stub-store + - eventstore ^>= 1.4.1 + - dotnet-timespan ^>= 0.0.1.0 + - eventsource-api ^>= 1.5.1 + - eventsource-geteventstore-store < 0 + - eventsource-store-specs < 0 + - eventsource-stub-store ^>= 1.1.1 "Sebastian Dröge slomo@coaxion.net @sdroege": - conduit-iconv < 0 # MonadFail - - conduit-connection + - conduit-connection ^>= 0.1.0.5 "Andrew Rademacher @AndrewRademacher": - - aeson-casing + - aeson-casing ^>= 0.2.0.0 - graylog < 0 # Couldn't find module Network.BSD - - parsec-numeric - - mallard - - gdax + - parsec-numeric ^>= 0.1.0.0 + - mallard < 0 + - gdax < 0 "Callum Rogers @CRogers": - - should-not-typecheck + - should-not-typecheck ^>= 2.1.0 "Mihaly Barasz klao@nilcons.com @klao": - - lens-datetime - - tz - - tzdata + - lens-datetime < 0 + - tz < 0 + - tzdata ^>= 0.2.20201021.0 "Timothy Klim @TimothyKlim": - - pkcs10 + - pkcs10 < 0 "David Luposchainsky @quchen": - - pgp-wordlist - - show-prettyprint + - pgp-wordlist ^>= 0.1.0.3 + - show-prettyprint < 0 "Jeremy Shaw @stepcut": - - boomerang - - happstack-hsp - - happstack-jmacro - - happstack-server - - happstack-server-tls - - hsx-jmacro - - ixset - - reform - - reform-blaze - - reform-hamlet - - reform-happstack - - reform-hsp - - userid - - web-plugins - - web-routes - - web-routes-boomerang - - web-routes-happstack - - web-routes-hsp - - web-routes-th - - web-routes-wai - - hsx2hs + - boomerang ^>= 1.4.7 + - happstack-hsp < 0 + - happstack-jmacro ^>= 7.0.12.3 + - happstack-server ^>= 7.7.1.1 + - happstack-server-tls ^>= 7.2.1.1 + - hsx-jmacro ^>= 7.3.8.1 + - ixset < 0 + - reform ^>= 0.2.7.4 + - reform-blaze ^>= 0.2.4.3 + - reform-hamlet ^>= 0.0.5.3 + - reform-happstack ^>= 0.2.5.4 + - reform-hsp < 0 + - userid < 0 + - web-plugins ^>= 0.4.0 + - web-routes ^>= 0.27.14.3 + - web-routes-boomerang ^>= 0.28.4.2 + - web-routes-happstack ^>= 0.23.12.1 + - web-routes-hsp ^>= 0.24.6.1 + - web-routes-th < 0 + - web-routes-wai ^>= 0.24.3.1 + - hsx2hs < 0 "Pedro Tacla Yamada @yamadapc": - - ascii-progress - - drawille - - file-modules - - frontmatter - - read-editor + - ascii-progress ^>= 0.3.3.0 + - drawille < 0 + - file-modules ^>= 0.1.2.4 + - frontmatter ^>= 0.1.0.2 + - read-editor ^>= 0.1.0.2 - list-prompt < 0 # compile failure https://github.com/yamadapc/list-prompt/issues/3 - package-description-remote < 0 # compile failure - - projectroot - - questioner + - projectroot ^>= 0.2.0.1 + - questioner < 0 - language-dockerfile < 0 # compile failure https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 "Pascal Hartig @passy": - - giphy-api - - optparse-text + - giphy-api < 0 + - optparse-text ^>= 0.1.1.0 "rightfold @rightfold": - - open-browser + - open-browser ^>= 0.2.1.0 "Denis Redozubov @dredozubov": - - hreader-lens - - schematic + - hreader-lens ^>= 0.1.3.0 + - schematic < 0 "Yuji Yamamoto @igrep": - - yes-precure5-command - - th-strict-compat - - main-tester - - skews - - wss-client - - network-messagepack-rpc - - network-messagepack-rpc-websocket - - unicode-show - - deriveJsonNoPrefix - - fakefs - - fakepull + - yes-precure5-command ^>= 5.5.3 + - th-strict-compat ^>= 0.1.0.1 + - main-tester ^>= 0.2.0.1 + - skews ^>= 0.1.0.3 + - wss-client ^>= 0.3.0.0 + - network-messagepack-rpc ^>= 0.1.2.0 + - network-messagepack-rpc-websocket ^>= 0.1.1.1 + - unicode-show ^>= 0.1.1.0 + - deriveJsonNoPrefix ^>= 0.1.0.1 + - fakefs ^>= 0.3.0.2 + - fakepull ^>= 0.3.0.2 "Hans-Christian Esperer @hce": - - avwx - - saltine < 0.2.0.0 # https://github.com/tel/saltine/issues/58 - - wai-session-postgresql + - avwx < 0 + - saltine ^>= 0.1.1.1 && <0.2.0.0 # https://github.com/tel/saltine/issues/58 + - wai-session-postgresql ^>= 0.2.1.3 "Haisheng Wu @freizl": - - hoauth2 + - hoauth2 ^>= 1.16.0 "Falko Peters @informatikr": - - scrypt + - scrypt ^>= 0.5.0 "Jakub Waszczuk @kawu": - - dawg-ord + - dawg-ord ^>= 0.5.1.2 "Amit Levy @alevy": - - simple - - simple-templates - - simple-session - - postgresql-orm + - simple ^>= 1.0.0 + - simple-templates ^>= 1.0.0 + - simple-session ^>= 1.0.0 + - postgresql-orm ^>= 0.5.1 "Sergey Astanin @astanin": # Stackage server uses Ubuntu 16.04 which ships libzip-1.0.1. # Haskell packages should match major.minor versions of the C library. - - bindings-libzip >= 1.0 - - LibZip >= 1.0 + - bindings-libzip ^>= 1.0.1 && >=1.0 + - LibZip ^>= 1.0.1 && >=1.0 "Anthony Cowley @acowley": - - vinyl - - Frames - - hpp + - vinyl ^>= 0.13.3 + - Frames ^>= 0.7.2 + - hpp ^>= 0.6.4 "Takayuki Muranushi @nushio3": - - binary-search + - binary-search ^>= 2.0.0 "Jason Shipman @jship": - - logging-effect-extra - - logging-effect-extra-file - - logging-effect-extra-handler - - overhang - - tao - - tao-example + - logging-effect-extra < 0 + - logging-effect-extra-file < 0 + - logging-effect-extra-handler < 0 + - overhang ^>= 1.0.0 + - tao ^>= 1.0.0 + - tao-example ^>= 1.0.0 "Suhail Shergill @suhailshergill": - - extensible-effects + - extensible-effects ^>= 5.0.0.1 "Justus Adam @JustusAdam": - - marvin - - marvin-interpolate - - mustache - - exit-codes >= 1.0.0 + - marvin < 0 + - marvin-interpolate < 0 + - mustache ^>= 2.3.2 + - exit-codes ^>= 1.0.0 && >=1.0.0 "Cindy Wang @CindyLinz": - - NoTrace - - linked-list-with-iterator + - NoTrace < 0 + - linked-list-with-iterator < 0 "Jean-Philippe Bernardy @jyp": - - polynomials-bernstein - - typography-geometry + - polynomials-bernstein ^>= 1.1.2 + - typography-geometry ^>= 1.0.1.0 "John MacFarlane @jgm": - - hsb2hs - - cmark - - texmath - - highlighting-kate - - skylighting - - skylighting-core - - pandoc-types - - zip-archive - - doclayout - - doctemplates - - emojis - - pandoc - - citeproc - - commonmark - - commonmark-extensions - - commonmark-pandoc - - unicode-collation - - HsYAML-aeson - - ipynb + - hsb2hs < 0 + - cmark ^>= 0.6 + - texmath ^>= 0.12.3.3 + - highlighting-kate ^>= 0.6.4 + - skylighting ^>= 0.12.1 + - skylighting-core ^>= 0.12.1 + - pandoc-types ^>= 1.22.1 + - zip-archive ^>= 0.4.1 + - doclayout ^>= 0.3.1.1 + - doctemplates ^>= 0.10.0.1 + - emojis ^>= 0.1.2 + - pandoc ^>= 2.16.2 + - citeproc ^>= 0.6 + - commonmark ^>= 0.2.1.1 + - commonmark-extensions ^>= 0.2.2.1 + - commonmark-pandoc ^>= 0.2.1.1 + - unicode-collation ^>= 0.1.3.1 + - HsYAML-aeson ^>= 0.2.0.1 + - ipynb ^>= 0.1.0.2 "Karun Ramakrishnan @karun012": - - doctest-discover + - doctest-discover ^>= 0.2.0.0 "Elie Genard @elaye": - - turtle-options + - turtle-options < 0 "Ozgun Ataman ozgun.ataman@soostone.com @ozataman": - - string-conv - - rng-utils - - ua-parser - - hs-GeoIP - - retry - - katip + - string-conv ^>= 0.1.2 + - rng-utils ^>= 0.3.1 + - ua-parser ^>= 0.7.6.0 + - hs-GeoIP ^>= 0.3 + - retry ^>= 0.9.0.0 + - katip ^>= 0.8.7.0 - katip-elasticsearch < 0 # https://github.com/commercialhaskell/stackage/issues/6341 "Sid Kapur sidharthkapur1@gmail.com @sid-kap": - - tuple - - OneTuple + - tuple ^>= 0.3.0.2 + - OneTuple ^>= 0.3.1 "Aaron Levin @aaronmblevin": - - free-vl + - free-vl ^>= 0.1.4 "Kazuo Koga @kkazuo": - - xlsx-tabular + - xlsx-tabular ^>= 0.2.2.1 "Mikhail Glushenkov @23Skidoo": # - Cabal # take the one that ships with GHC - - cabal-install - - pointful + - cabal-install < 0 + - pointful < 0 "Lennart Kolmodin @kolmodin": - - binary-bits + - binary-bits < 0 "Alex McLean @yaxu": - - tidal - - hosc + - tidal ^>= 1.7.8 + - hosc ^>= 0.19.1 "Kei Hibino @khibino": - - th-data-compat - - th-reify-compat - - relational-query - - relational-query-HDBC - - persistable-types-HDBC-pg - - relational-record - - text-ldap - - debian-build - - aeson-generic-compat - - json-rpc-generic - - protocol-radius - - protocol-radius-test - - th-bang-compat - - th-constraint-compat - - persistable-record + - th-data-compat < 0 + - th-reify-compat ^>= 0.0.1.5 + - relational-query < 0 + - relational-query-HDBC < 0 + - persistable-types-HDBC-pg < 0 + - relational-record < 0 + - text-ldap ^>= 0.1.1.14 + - debian-build ^>= 0.10.2.1 + - aeson-generic-compat ^>= 0.0.1.3 + - json-rpc-generic ^>= 0.2.1.6 + - protocol-radius ^>= 0.0.1.1 + - protocol-radius-test ^>= 0.1.0.1 + - th-bang-compat ^>= 0.0.1.0 + - th-constraint-compat ^>= 0.0.1.0 + - persistable-record < 0 "wren romano @wrengr": - - bytestring-lexing - - bytestring-trie - - data-or - - exact-combinatorics - - logfloat - - pointless-fun - - prelude-safeenum - - stm-chans - - unification-fd - - unix-bytestring + - bytestring-lexing ^>= 0.5.0.8 + - bytestring-trie ^>= 0.2.6 + - data-or ^>= 1.0.0.7 + - exact-combinatorics ^>= 0.2.0.11 + - logfloat ^>= 0.13.4 + - pointless-fun ^>= 1.1.0.8 + - prelude-safeenum ^>= 0.1.1.3 + - stm-chans ^>= 3.0.0.6 + - unification-fd ^>= 0.11.1 + - unix-bytestring ^>= 0.3.7.6 "Fraser Tweedale @frasertweedale": - - concise - - dyre - - jose + - concise ^>= 0.1.0.1 + - dyre ^>= 0.9.1 + - jose ^>= 0.8.5.1 "Yoshikuni Jujo @YoshikuniJujo": - - zot - - yjtools - - io-machine - - yjsvg - - x11-xim - - X11-xft - - Imlib - - xturtle - - gluturtle - - papillon - - zasni-gerna - - exception-hierarchy - - simplest-sqlite - - warp-tls-uid - - nowdoc - - typecheck-plugin-nat-simple - - ranged-list - - c-enum - - c-struct - - union-angle + - zot ^>= 0.0.3 + - yjtools ^>= 0.9.18 + - io-machine ^>= 0.2.0.0 + - yjsvg ^>= 0.2.0.1 + - x11-xim ^>= 0.0.9.0 + - X11-xft ^>= 0.3.3 + - Imlib ^>= 0.1.2 + - xturtle < 0 + - gluturtle < 0 + - papillon < 0 + - zasni-gerna < 0 + - exception-hierarchy < 0 + - simplest-sqlite < 0 + - warp-tls-uid ^>= 0.2.0.6 + - nowdoc ^>= 0.1.1.0 + - typecheck-plugin-nat-simple < 0 + - ranged-list < 0 + - c-enum ^>= 0.1.0.1 + - c-struct ^>= 0.1.0.1 + - union-angle ^>= 0.1.0.1 "Jan Gerlinger @JanGe": - - irc-dcc + - irc-dcc < 0 "Alexey Raga @AlexeyRaga": - - hw-kafka-client + - hw-kafka-client ^>= 4.0.3 "John Ky newhoggy@gmail.com @newhoggy": - - aeson-lens - - antiope-core - - antiope-dynamodb - - antiope-messages - - antiope-s3 - - antiope-sns - - antiope-sqs - - arbor-lru-cache - - arbor-postgres - - asif - - avro - - bits-extra - - hw-balancedparens - - hw-bits - - hw-conduit - - hw-conduit-merges - - hw-diagnostics - - hw-dsv - - hw-eliasfano - - hw-excess - - hw-fingertree - - hw-fingertree-strict - - hw-hedgehog - - hw-hspec-hedgehog - - hw-int - - hw-ip - - hw-json - - hw-json-simple-cursor - - hw-json-standard-cursor - - hw-mquery - - hw-packed-vector - - hw-parser - - hw-prim - - hw-rankselect - - hw-rankselect-base - - hw-simd - - hw-streams - - hw-succinct - - hw-xml - - tasty-discover + - aeson-lens < 0 + - antiope-core < 0 + - antiope-dynamodb < 0 + - antiope-messages < 0 + - antiope-s3 < 0 + - antiope-sns < 0 + - antiope-sqs < 0 + - arbor-lru-cache ^>= 0.1.1.1 + - arbor-postgres < 0 + - asif < 0 + - avro ^>= 0.5.2.1 + - bits-extra ^>= 0.0.2.0 + - hw-balancedparens ^>= 0.4.1.1 + - hw-bits ^>= 0.7.2.1 + - hw-conduit ^>= 0.2.1.0 + - hw-conduit-merges ^>= 0.2.1.0 + - hw-diagnostics ^>= 0.0.1.0 + - hw-dsv ^>= 0.4.1.0 + - hw-eliasfano ^>= 0.1.2.0 + - hw-excess ^>= 0.2.3.0 + - hw-fingertree ^>= 0.1.2.0 + - hw-fingertree-strict ^>= 0.1.2.0 + - hw-hedgehog ^>= 0.1.1.0 + - hw-hspec-hedgehog < 0 + - hw-int ^>= 0.0.2.0 + - hw-ip ^>= 2.4.2.0 + - hw-json ^>= 1.3.2.2 + - hw-json-simple-cursor ^>= 0.1.1.0 + - hw-json-standard-cursor ^>= 0.2.3.1 + - hw-mquery ^>= 0.2.1.0 + - hw-packed-vector ^>= 0.2.1.0 + - hw-parser ^>= 0.1.1.0 + - hw-prim ^>= 0.6.3.0 + - hw-rankselect ^>= 0.13.4.0 + - hw-rankselect-base ^>= 0.3.4.1 + - hw-simd ^>= 0.1.2.0 + - hw-streams ^>= 0.0.1.0 + - hw-succinct ^>= 0.1.0.1 + - hw-xml ^>= 0.5.1.0 + - tasty-discover ^>= 4.2.2 "George Wilson @gwils": - - hedgehog-fn - - sv - - sv-cassava - - sv-core - - tasty-hedgehog + - hedgehog-fn ^>= 1.0 + - sv < 0 + - sv-cassava < 0 + - sv-core < 0 + - tasty-hedgehog ^>= 1.1.0.0 "Ismail Mustafa @ismailmustafa": - - handwriting + - handwriting ^>= 0.1.0.3 "Stephen Diehl @sdiehl": - - llvm-hs-pretty - - protolude - - repline - - picosat - - aos-signature - - bulletproofs - - pedersen-commitment - - merkle-tree - - oblivious-transfer - - pairing - - libraft - - galois-field + - llvm-hs-pretty < 0 + - protolude < 0 + - repline ^>= 0.4.0.0 + - picosat ^>= 0.1.6 + - aos-signature < 0 + - bulletproofs < 0 + - pedersen-commitment < 0 + - merkle-tree < 0 + - oblivious-transfer < 0 + - pairing < 0 + - libraft < 0 + - galois-field < 0 "Daishi Nakajima @nakaji-dayo": - - api-field-json-th + - api-field-json-th ^>= 0.1.0.2 "Patrick Thomson @helium": - - postgresql-transactional + - postgresql-transactional < 0 "Tom Murphy ": - - gingersnap - - microspec - - midair - - nano-erl - - rando - - vivid - - vivid-osc - - vivid-supercollider + - gingersnap < 0 + - microspec ^>= 0.2.1.3 + - midair ^>= 0.2.0.1 + - nano-erl ^>= 0.1.0.1 + - rando ^>= 0.0.0.4 + - vivid ^>= 0.5.1.0 + - vivid-osc ^>= 0.5.0.0 + - vivid-supercollider ^>= 0.4.1.2 "Toshio Ito @debug-ito": - - fold-debounce - - fold-debounce-conduit - - stopwatch - - wikicfp-scraper - - wild-bind - - wild-bind-x11 - - greskell - - greskell-core - - greskell-websocket - - hspec-need-env + - fold-debounce ^>= 0.2.0.9 + - fold-debounce-conduit ^>= 0.2.0.6 + - stopwatch ^>= 0.1.0.6 + - wikicfp-scraper ^>= 0.1.0.12 + - wild-bind ^>= 0.1.2.8 + - wild-bind-x11 ^>= 0.2.0.14 + - greskell ^>= 1.2.0.2 + - greskell-core ^>= 0.1.3.7 + - greskell-websocket ^>= 0.1.2.6 + - hspec-need-env ^>= 0.1.0.8 "Cies Breijs @cies": - - htoml + - htoml ^>= 1.0.0.3 "Martijn Rijkeboer @mrijkeboer": - - protobuf-simple + - protobuf-simple ^>= 0.1.1.1 "David Reaver @jdreaver": - - eventful-core - - eventful-dynamodb - - eventful-memory - - eventful-postgresql - - eventful-sql-common - - eventful-sqlite - - eventful-test-helpers - - stratosphere - - sum-type-boilerplate + - eventful-core ^>= 0.2.0 + - eventful-dynamodb < 0 + - eventful-memory ^>= 0.2.0 + - eventful-postgresql < 0 + - eventful-sql-common < 0 + - eventful-sqlite < 0 + - eventful-test-helpers ^>= 0.2.0 + - stratosphere ^>= 0.59.1 + - sum-type-boilerplate ^>= 0.1.1 "Iñaki GarcĂ­a Etxebarria @garetxe": - - haskell-gi - - haskell-gi-base - - gi-atk - - gi-cairo - - gi-dbusmenu - - gi-dbusmenugtk3 - - gi-gdk == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gdkpixbuf - - gi-gdkx11 == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gio - - gi-glib - - gi-gobject - - gi-graphene - - gi-gtk == 3.* # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gtk-hs - - gi-gmodule - - gi-pango - - gi-xlib - - gi-harfbuzz - - gi-gsk - - gi-gtksource - - gi-javascriptcore - - gi-vte - - gi-webkit2 + - haskell-gi ^>= 0.26.0 + - haskell-gi-base ^>= 0.26.0 + - gi-atk ^>= 2.0.24 + - gi-cairo ^>= 1.0.26 + - gi-dbusmenu ^>= 0.4.10 + - gi-dbusmenugtk3 ^>= 0.4.11 + - gi-gdk ^>= 3.0.25 && ==3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gdkpixbuf ^>= 2.0.27 + - gi-gdkx11 ^>= 3.0.12 && ==3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gio ^>= 2.0.29 + - gi-glib ^>= 2.0.26 + - gi-gobject ^>= 2.0.27 + - gi-graphene ^>= 1.0.4 + - gi-gtk ^>= 3.0.38 && ==3.* # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gtk-hs ^>= 0.3.12 + - gi-gmodule ^>= 2.0.2 + - gi-pango ^>= 1.0.25 + - gi-xlib ^>= 2.0.11 + - gi-harfbuzz ^>= 0.0.5 + - gi-gsk < 0 + - gi-gtksource ^>= 3.0.25 + - gi-javascriptcore ^>= 4.0.24 + - gi-vte ^>= 2.91.29 + - gi-webkit2 < 0 "Brandon Simmons @jberryman": - - directory-tree + - directory-tree ^>= 0.12.1 "Ian Grant Jeffries @seagreen": - - hjsonpointer + - hjsonpointer ^>= 1.5.0 "Drew Hess @dhess": - - hpio + - hpio < 0 "Richard Eisenberg @goldfirere": - - th-desugar - - singletons - - HUnit-approx - - units-parser + - th-desugar ^>= 1.12 + - singletons ^>= 3.0.1 + - HUnit-approx ^>= 1.1.1.1 + - units-parser ^>= 0.1.1.4 "Doug McClean @dmcclean": - - dimensional - - exact-pi - - numtype-dk + - dimensional ^>= 1.4 + - exact-pi ^>= 0.5.0.1 + - numtype-dk ^>= 0.5.0.3 "Bjorn Buckwalter @bjornbm": - - leapseconds-announced + - leapseconds-announced ^>= 2017.1.0.1 "Pavel Ryzhov @paulrzcz": - - hquantlib - - hquantlib-time - - HSvm + - hquantlib < 0 + - hquantlib-time < 0 + - HSvm ^>= 0.1.1.3.25 "Henri Verroken @hverr": - - bordacount - - cache - - haskey - - haskey-btree - - haskey-mtl - - intset-imperative - - lxd-client - - lxd-client-config - - xxhash-ffi - - zeromq4-patterns + - bordacount ^>= 0.1.0.0 + - cache ^>= 0.1.3.0 + - haskey < 0 + - haskey-btree ^>= 0.3.0.1 + - haskey-mtl < 0 + - intset-imperative ^>= 0.1.0.0 + - lxd-client < 0 + - lxd-client-config ^>= 0.1.0.1 + - xxhash-ffi ^>= 0.2.0.0 + - zeromq4-patterns ^>= 0.3.1.0 "Cliff Harvey @BlackBrane": - - ansigraph - - microsoft-translator + - ansigraph < 0 + - microsoft-translator < 0 "Tebello Thejane @tebello-thejane": - bitx-bitcoin < 0 # compilation error "Andrew Lelechenko @Bodigrim": - - exp-pairs + - exp-pairs ^>= 0.2.1.0 - fast-digits < 0 # https://github.com/commercialhaskell/stackage/issues/6167 - - chimera - - quadratic-irrational - - primitive-addr - - quickcheck-classes - - quickcheck-classes-base - - arithmoi - - bitvec - - poly - - extended-reals - - ChasingBottoms - - data-interval - - vector-rotcev - - mod - - tasty-rerun - - integer-roots - - smallcheck - - quote-quot - - tasty-bench - - tasty-inspection-testing + - chimera ^>= 0.3.2.0 + - quadratic-irrational ^>= 0.1.1 + - primitive-addr ^>= 0.1.0.2 + - quickcheck-classes ^>= 0.6.5.0 + - quickcheck-classes-base ^>= 0.6.2.0 + - arithmoi ^>= 0.12.0.1 + - bitvec ^>= 1.1.1.0 + - poly ^>= 0.5.0.0 + - extended-reals ^>= 0.2.4.0 + - ChasingBottoms ^>= 1.3.1.11 + - data-interval ^>= 2.1.1 + - vector-rotcev ^>= 0.1.0.1 + - mod ^>= 0.1.2.2 + - tasty-rerun ^>= 1.1.18 + - integer-roots ^>= 1.0.2.0 + - smallcheck ^>= 1.2.1 + - quote-quot ^>= 0.2.0.0 + - tasty-bench ^>= 0.3.1 + - tasty-inspection-testing ^>= 0.1 "Ashley Yakeley @AshleyYakeley": - - countable - - witness - - open-witness + - countable ^>= 1.0 + - witness ^>= 0.5 + - open-witness < 0 "Victor Denisov @VictorDenisov": - - mongoDB - - bson + - mongoDB ^>= 2.7.1.1 + - bson ^>= 0.4.0.1 "Alexis King @lexi-lambda": - - freer-simple - - monad-mock - - test-fixture - - text-conversions - - th-to-exp - - type-assertions + - freer-simple < 0 + - monad-mock < 0 + - test-fixture < 0 + - text-conversions ^>= 0.3.1 + - th-to-exp < 0 + - type-assertions < 0 "Patrick Chilton @chpatrick": - - webrtc-vad + - webrtc-vad ^>= 0.1.0.3 - clang-pure < 0 # missing system libraries #3810/closed - - codec + - codec < 0 "Michal Konecny @michalkonecny": - - hmpfr - - collect-errors - - mixed-types-num - - cdar-mBound - - aern2-mp - - aern2-real + - hmpfr < 0 + - collect-errors ^>= 0.1.5.0 + - mixed-types-num < 0 + - cdar-mBound ^>= 0.1.0.4 + - aern2-mp < 0 + - aern2-real < 0 "Bartosz Nitka @niteria": - - oeis + - oeis ^>= 0.3.10 "Gergely Patai @cobbpg": - - elerea + - elerea ^>= 2.9.0 "Christopher Wells @ExcalburZero": - - pixelated-avatar-generator + - pixelated-avatar-generator < 0 "Dominic Orchard @dorchard": - - array-memoize + - array-memoize ^>= 0.6.0 - codo-notation < 0 # MonadFail - - fortran-src + - fortran-src ^>= 0.7.0 "Cheng Shao @TerrorJack": - - binaryen - - cabal-toolkit - - direct-rocksdb + - binaryen ^>= 0.0.6.0 + - cabal-toolkit < 0 + - direct-rocksdb < 0 "Anton Gushcha @ncrashed": - - aeson-injector - - JuicyPixels-blp + - aeson-injector < 0 + - JuicyPixels-blp < 0 "Al Zohali @zohl": - - servant-auth-cookie - - dictionaries - - cereal-time + - servant-auth-cookie < 0 + - dictionaries < 0 + - cereal-time < 0 "Joachim Fasting @joachifm": - - libmpd + - libmpd ^>= 0.10.0.0 "Moritz Kiefer @cocreature": - - lrucaching - - llvm-hs - - llvm-hs-pure + - lrucaching ^>= 0.3.3 + - llvm-hs < 0 + - llvm-hs-pure ^>= 9.0.0 "Thierry Bourrillon @tbourrillon": - - heatshrink - - hocilib + - heatshrink ^>= 0.1.0.0 + - hocilib ^>= 0.2.0 "Daniel Mendler @minad": - - quickcheck-special - - writer-cps-mtl - - writer-cps-transformers + - quickcheck-special ^>= 0.1.0.6 + - writer-cps-mtl ^>= 0.1.1.6 + - writer-cps-transformers ^>= 0.5.6.1 - writer-cps-morph < 0 # https://github.com/louispan/writer-cps-morph/issues/2 - - writer-cps-lens - - writer-cps-full - - writer-cps-exceptions - - wl-pprint-annotated - - wl-pprint-console - - console-style - - unlit - - intro - - tasty-stats - - colorful-monoids - - ihs - - paripari - - persist + - writer-cps-lens < 0 + - writer-cps-full < 0 + - writer-cps-exceptions ^>= 0.1.0.1 + - wl-pprint-annotated ^>= 0.1.0.1 + - wl-pprint-console ^>= 0.1.0.2 + - console-style ^>= 0.0.2.1 + - unlit ^>= 0.4.0.0 + - intro ^>= 0.9.0.0 + - tasty-stats < 0 + - colorful-monoids ^>= 0.2.1.3 + - ihs ^>= 0.1.0.3 + - paripari < 0 + - persist ^>= 0.1.1.5 "Taras Serduke @tserduke": - - do-list + - do-list ^>= 1.0.1 "Travis Whitaker ": - - cpuinfo - - lmdb - - rdf - - data-compat - - deepseq-instances + - cpuinfo ^>= 0.1.0.2 + - lmdb ^>= 0.2.5 + - rdf ^>= 0.1.0.5 + - data-compat < 0 + - deepseq-instances < 0 "Michael Swan @michael-swan": - pcf-font < 0 # MonadFail - - pcf-font-embed + - pcf-font-embed < 0 "Iago Abal ": - - bv + - bv ^>= 0.5 "Juan Pedro Villa Isaza @jpvillaisaza": - - licensor + - licensor < 0 "Florian Hofmann fho@f12n.de @fhaust": - - vector-split - - vector-mmap + - vector-split ^>= 1.0.0.2 + - vector-mmap ^>= 0.0.3 "Ondrej Palkovsky @ondrap": - - json-stream + - json-stream ^>= 0.4.2.4 "Philipp Balzarek ": - - xml-picklers + - xml-picklers ^>= 0.3.6 "Lennart Spitzner @lspitzner": - - multistate - - pqueue - - butcher - - czipwith - - data-tree-print - - brittany + - multistate < 0 + - pqueue ^>= 1.4.1.4 + - butcher < 0 + - czipwith ^>= 1.0.1.4 + - data-tree-print < 0 + - brittany < 0 "Ryan Mulligan @ryantm": - - HDBC-mysql + - HDBC-mysql < 0 "Tony Morris @tonymorris": - - validation + - validation ^>= 1.1.2 "Tony Day @tonyday567": - - numhask - - numhask-array - - numhask-prelude - - numhask-space - - perf + - numhask ^>= 0.8.1.0 + - numhask-array ^>= 0.9.1 + - numhask-prelude < 0 + - numhask-space ^>= 0.8.1.0 + - perf ^>= 0.9.0 "Iphigenia Df @iphydf": - - data-msgpack - - network-msgpack-rpc + - data-msgpack ^>= 0.0.13 + - network-msgpack-rpc < 0 "Dino Morelli @dino-": - - epub-metadata - - hsinstall - - tce-conf + - epub-metadata < 0 + - hsinstall ^>= 2.7 + - tce-conf ^>= 1.3 "Jonathan Fischoff @jfischoff": - - clock-extras - - postgres-options - - tmp-postgres - - pg-transact - - port-utils - - postgresql-libpq-notify - - hasql-queue + - clock-extras < 0 + - postgres-options ^>= 0.2.0.0 + - tmp-postgres ^>= 1.34.1.0 + - pg-transact ^>= 0.3.2.0 + - port-utils ^>= 0.2.1.0 + - postgresql-libpq-notify ^>= 0.2.0.0 + - hasql-queue ^>= 1.2.0.2 "Jonathan Knowles @jonathanknowles": - - bech32 - - bech32-th - - cardano-coin-selection - - quiet - - roc-id + - bech32 ^>= 1.1.2 + - bech32-th ^>= 1.1.1 + - cardano-coin-selection ^>= 1.0.1 + - quiet ^>= 0.2 + - roc-id ^>= 0.1.0.0 "Mahdi Dibaiee @mdibaiee": - - picedit - - mathexpr - - termcolor + - picedit < 0 + - mathexpr ^>= 0.3.0.0 + - termcolor < 0 "XT @xtendo-org": - - rawfilepath + - rawfilepath ^>= 1.0.0 "Konstantin Zudov @zudov": - - html-email-validate + - html-email-validate ^>= 0.2.0.0 "Carl Baatz @cbaatz": - - atom-basic + - atom-basic ^>= 0.2.5 "Reuben D'Netto ": - - glob-posix + - glob-posix ^>= 0.2.0.1 "Kadzuya Okamoto @arowM": - - type-level-kv-list - - heterocephalus - - bookkeeping - - ochintin-daicho - - transaction - - tonaparser - - tonalude - - tonatona - - tonatona-logger - - tonatona-servant - - tonatona-persistent-sqlite - - tonatona-persistent-postgresql + - type-level-kv-list ^>= 1.1.0 + - heterocephalus < 0 + - bookkeeping ^>= 0.4.0.1 + - ochintin-daicho ^>= 0.3.4.2 + - transaction ^>= 0.1.1.3 + - tonaparser < 0 + - tonalude < 0 + - tonatona < 0 + - tonatona-logger < 0 + - tonatona-servant < 0 + - tonatona-persistent-sqlite < 0 + - tonatona-persistent-postgresql < 0 "Marcin Tolysz @tolysz": - - rawstring-qm + - rawstring-qm ^>= 0.2.3.0 "Daniel YU ": - - salak - - salak-yaml - - salak-toml - - tensors - - menshen - - crc32c - - boots + - salak ^>= 0.3.6 + - salak-yaml ^>= 0.3.5.3 + - salak-toml < 0 + - tensors ^>= 0.1.5 + - menshen < 0 + - crc32c ^>= 0.0.0 + - boots ^>= 0.2.0.1 "Tom Nielsen @glutamate": - - plotlyhs - - inliterate + - plotlyhs ^>= 0.2.1 + - inliterate ^>= 0.1.0 "Hyunje Jun @noraesae": - - line + - line ^>= 4.0.1 "Hannes Saffrich @m0rphism": [] # - printcess # lens 4.16 "Alexey Kuleshevich @lehins": - - wai-middleware-auth - - hip - - massiv - - massiv-io - - massiv-test - - massiv-serialise - - massiv-persist - - scheduler - - Color - - safe-decimal - - flush-queue - - pvar + - wai-middleware-auth < 0 + - hip < 0 + - massiv ^>= 1.0.1.1 + - massiv-io ^>= 1.0.0.1 + - massiv-test ^>= 1.0.0.0 + - massiv-serialise ^>= 1.0.0.2 + - massiv-persist ^>= 1.0.0.2 + - scheduler ^>= 2.0.0.1 + - Color ^>= 0.3.3 + - safe-decimal ^>= 0.2.1.0 + - flush-queue ^>= 1.0.0 + - pvar ^>= 1.0.0.0 "Hans-Peter Deifel @hpdeifel": - - hledger-iadd + - hledger-iadd ^>= 1.3.16 "Roy Levien @orome": - - crypto-enigma + - crypto-enigma ^>= 0.1.1.6 "BoldizsĂĄr NĂ©meth @nboldi": - - instance-control + - instance-control ^>= 0.1.2.0 - references < 0 # compilation failure - - classyplate - - haskell-tools-ast - - haskell-tools-backend-ghc - - haskell-tools-prettyprint - - haskell-tools-refactor - - haskell-tools-rewrite - - haskell-tools-demo - - haskell-tools-cli - - haskell-tools-daemon - - haskell-tools-debug + - classyplate < 0 + - haskell-tools-ast < 0 + - haskell-tools-backend-ghc < 0 + - haskell-tools-prettyprint < 0 + - haskell-tools-refactor < 0 + - haskell-tools-rewrite < 0 + - haskell-tools-demo < 0 + - haskell-tools-cli < 0 + - haskell-tools-daemon < 0 + - haskell-tools-debug < 0 "David Fisher @ddfisher": - - socket-activation + - socket-activation < 0 "aiya000 @aiya000": - - character-cases - - throwable-exceptions + - character-cases ^>= 0.1.0.6 + - throwable-exceptions < 0 "Mitsutoshi Aoe @maoe": - - influxdb - - sensu-run - - viewprof + - influxdb ^>= 1.9.2.2 + - sensu-run < 0 + - viewprof < 0 "Dylan Simon @dylex": - - postgresql-typed - - invertible - - ztail - - zip-stream + - postgresql-typed ^>= 0.6.2.0 + - invertible < 0 + - ztail ^>= 1.2.0.2 + - zip-stream ^>= 0.2.1.0 "Louis Pan @louispan": - - alternators - - arrow-extras - - data-diverse + - alternators ^>= 1.0.0.0 + - arrow-extras ^>= 0.1.0.1 + - data-diverse ^>= 4.7.0.0 - data-diverse-lens < 0 # compile fail (lens) - - ghcjs-base-stub - - glaze + - ghcjs-base-stub ^>= 0.3.0.2 + - glaze < 0 - glazier < 0 # compile fail (lens) - - glazier-react - - glazier-react-widget - - javascript-extras - - lens-misc - - l10n - - pipes-category - - pipes-fluid - - pipes-misc - - stm-extras + - glazier-react < 0 + - glazier-react-widget < 0 + - javascript-extras ^>= 0.5.0.0 + - lens-misc ^>= 0.0.2.0 + - l10n ^>= 0.1.0.1 + - pipes-category < 0 + - pipes-fluid ^>= 0.6.0.1 + - pipes-misc < 0 + - stm-extras ^>= 0.1.0.3 "SiniĆĄa Biđin @sbidin": - - sdl2-image - - sdl2-mixer - - sdl2-gfx + - sdl2-image < 0 + - sdl2-mixer < 0 + - sdl2-gfx < 0 "Aditya Manthramurthy @donatello": - - minio-hs - - webby + - minio-hs < 0 + - webby < 0 "ncaq @ncaq": - - debug-trace-var - - haskell-import-graph - - string-transform - - uniq-deep - - yesod-form-bootstrap4 - - yesod-recaptcha2 + - debug-trace-var ^>= 0.2.0 + - haskell-import-graph < 0 + - string-transform ^>= 1.1.1 + - uniq-deep ^>= 1.2.1 + - yesod-form-bootstrap4 ^>= 3.0.1 + - yesod-recaptcha2 ^>= 1.0.2 "Andrei Barbu @abarbu": - - nondeterminism - - csp - - matplotlib + - nondeterminism ^>= 1.4 + - csp ^>= 1.4.0 + - matplotlib ^>= 0.7.7 "mackeyrms @mackeyrms": - - tsv2csv + - tsv2csv ^>= 0.1.0.2 "Thomas Sutton @thsutton": - - aeson-diff - - edit-distance-vector + - aeson-diff < 0 + - edit-distance-vector ^>= 1.0.0.4 "Kyle Van Berendonck @donkeybonks": - - rot13 - - dvorak + - rot13 ^>= 0.2.0.1 + - dvorak ^>= 0.1.0.0 "Cuedo Business Solutions @cuedo": - - github-webhooks + - github-webhooks ^>= 0.15.0 "Pavel Yakovlev @zmactep": - - hasbolt - - uniprot-kb + - hasbolt ^>= 0.1.6.1 + - uniprot-kb < 0 - mmtf < 0 # MonadFail "Christopher A. Gorski @cgorski": - - general-games + - general-games ^>= 1.1.1 "Cristian AdriĂĄn Ontivero @contivero": - - hasmin - - hopfli + - hasmin < 0 + - hopfli ^>= 0.2.2.1 "Peter TrĆĄko @trskop": - - between - - connection-pool - - verbosity + - between ^>= 0.11.0.0 + - connection-pool ^>= 0.2.2 + - verbosity ^>= 0.4.0.0 "Devon Hollowood @devonhollowood": - - search-algorithms + - search-algorithms ^>= 0.3.1 "Chris Dornan @cdornan": - - sort - - regex - - regex-pcre-text - - regex-with-pcre - - possibly - - enum-text - - rg - - columnar - - no-value - - optparse-enum - - fmt + - sort ^>= 1.0.0.0 + - regex ^>= 1.1.0.0 + - regex-pcre-text < 0 + - regex-with-pcre ^>= 1.1.0.0 + - possibly ^>= 1.0.0.0 + - enum-text ^>= 0.5.2.1 + - rg ^>= 1.4.0.0 + - columnar ^>= 1.0.0.0 + - no-value ^>= 1.0.0.0 + - optparse-enum ^>= 1.0.0.0 + - fmt ^>= 0.6.3.0 "Elliot Cameron @3noch": - - ziptastic-client - - ziptastic-core + - ziptastic-client < 0 + - ziptastic-core < 0 "Hardy Jones @joneshf": - - katip-rollbar - - rollbar-hs - - servant-ruby - - wai-middleware-rollbar + - katip-rollbar < 0 + - rollbar-hs < 0 + - servant-ruby ^>= 0.9.0.0 + - wai-middleware-rollbar < 0 "Andrey Mokhov @snowleopard": - - algebraic-graphs + - algebraic-graphs ^>= 0.5 "Albert Krewinkel @tarleb": - - hslua - - hslua-classes - - hslua-core - - hslua-marshalling - - hslua-module-doclayout - - hslua-module-path - - hslua-module-system - - hslua-module-text - - hslua-module-version - - hslua-objectorientation - - hslua-packaging - - jira-wiki-markup - - lpeg - - lua - - lua-arbitrary - - pandoc-lua-marshal - - tasty-hslua - - tasty-lua + - hslua ^>= 2.0.1 + - hslua-classes ^>= 2.0.0 + - hslua-core ^>= 2.0.0.2 + - hslua-marshalling ^>= 2.0.1 + - hslua-module-doclayout ^>= 1.0.0 + - hslua-module-path ^>= 1.0.0 + - hslua-module-system ^>= 1.0.0 + - hslua-module-text ^>= 1.0.0 + - hslua-module-version ^>= 1.0.0 + - hslua-objectorientation ^>= 2.0.1 + - hslua-packaging ^>= 2.0.0 + - jira-wiki-markup ^>= 1.4.0 + - lpeg ^>= 1.0.1 + - lua ^>= 2.0.2 + - lua-arbitrary ^>= 1.0.0 + - pandoc-lua-marshal ^>= 0.1.2 + - tasty-hslua ^>= 1.0.0 + - tasty-lua ^>= 1.0.0 "Judah Jacobson @judah": - - proto-lens-protobuf-types - - proto-lens-protoc - - proto-lens-runtime - - proto-lens-setup - - proto-lens - - proto-lens-arbitrary - - proto-lens-optparse - - tensorflow-test - - pier-core - - pier - - haskeline - - ghc-source-gen # tests disabled due to QuickCheck < 2.14 + - proto-lens-protobuf-types ^>= 0.7.1.0 + - proto-lens-protoc ^>= 0.7.1.0 + - proto-lens-runtime ^>= 0.7.0.1 + - proto-lens-setup ^>= 0.4.0.5 + - proto-lens ^>= 0.7.1.0 + - proto-lens-arbitrary ^>= 0.1.2.10 + - proto-lens-optparse ^>= 0.1.1.8 + - tensorflow-test ^>= 0.1.0.0 + - pier-core < 0 + - pier < 0 + - haskeline ^>= 0.8.2 + - ghc-source-gen ^>= 0.4.2.0 # tests disabled due to QuickCheck < 2.14 "Christof Schramm ": - - mnist-idx + - mnist-idx ^>= 0.1.2.8 "Naushadh @naushadh": - persistent-mysql-haskell "Moritz Schulte @mtesseract": - - async-refresh - - async-refresh-tokens - - type-level-integers - - partial-order - - async-timer - - nakadi-client - - throttle-io-stream - - conduit-throttle + - async-refresh ^>= 0.3.0.0 + - async-refresh-tokens ^>= 0.4.0.0 + - type-level-integers ^>= 0.0.1 + - partial-order ^>= 0.2.0.0 + - async-timer < 0 + - nakadi-client < 0 + - throttle-io-stream < 0 + - conduit-throttle < 0 "Simon Hafner @reactormonk": - - uri-bytestring-aeson - - katip-scalyr-scribe + - uri-bytestring-aeson ^>= 0.1.0.8 + - katip-scalyr-scribe < 0 "Sebastian Witte @saep": - - nvim-hs - - nvim-hs-contrib - - nvim-hs-ghcid + - nvim-hs ^>= 2.1.0.7 + - nvim-hs-contrib < 0 + - nvim-hs-ghcid < 0 "Sam Protas @SamProtas": - - triplesec - - composable-associations - - composable-associations-aeson - - JuicyPixels-blurhash + - triplesec ^>= 0.2.2.1 + - composable-associations ^>= 0.1.0.0 + - composable-associations-aeson ^>= 0.1.0.1 + - JuicyPixels-blurhash ^>= 0.1.0.3 "Anton Ekblad @valderman": - - selda - - selda-sqlite - - selda-postgresql - - selda-json + - selda ^>= 0.5.1.0 + - selda-sqlite ^>= 0.1.7.1 + - selda-postgresql ^>= 0.1.8.1 + - selda-json ^>= 0.1.1.0 "Luis Pedro Coelho @luispedro": - - safeio + - safeio ^>= 0.0.5.0 - conduit-algorithms < 0 # compile fail - - conduit-zstd + - conduit-zstd ^>= 0.0.2.0 "Alex Biehl @alexbiehl": - - haddock-library - - http-client-openssl + - haddock-library ^>= 1.10.0 + - http-client-openssl ^>= 0.3.3 "Steven Vandevelde @icidasset": - - shikensu + - shikensu ^>= 0.3.11 "George Pollard @Porges": - - email-validate + - email-validate ^>= 2.3.2.15 "Alexander Ignatyev @aligusnet": - - astro - - mltool - - hmatrix-morpheus + - astro ^>= 0.4.3.0 + - mltool < 0 + - hmatrix-morpheus ^>= 0.1.1.2 "Matt Noonan @matt-noonan": - - justified-containers - - roles >= 0.2 - - lawful - - gdp + - justified-containers ^>= 0.3.0.0 + - roles ^>= 0.2.1.0 && >=0.2 + - lawful ^>= 0.1.0.0 + - gdp ^>= 0.0.3.0 "Levent Erkok @LeventErkok": - - sbv - - crackNum + - sbv ^>= 8.17 + - crackNum ^>= 3.2 "JĂĄnos Tapolczai @jtapolczai": - - listsafe + - listsafe ^>= 0.1.0.1 "Serokell @serokell": - - importify - - log-warper - - o-clock - - tasty-hunit-compat - - universum - - with-utf8 - - uncaught-exception + - importify < 0 + - log-warper < 0 + - o-clock ^>= 1.2.1 + - tasty-hunit-compat ^>= 0.2.0.1 + - universum ^>= 1.7.2 + - with-utf8 ^>= 1.0.2.3 + - uncaught-exception ^>= 0.1.0 "Holmusk @arbus": - - elm-street + - elm-street < 0 "Noel Kwan @kwannoel": - - servant-docs-simple + - servant-docs-simple ^>= 0.4.0.0 "Lorenz Moesenlechner @moesenle": - - servant-websockets + - servant-websockets ^>= 2.0.0 "Daniel Campoverde @alx741": - - currencies - - alerts - - yesod-alerts - - graphite + - currencies ^>= 0.2.0.0 + - alerts ^>= 0.1.2.0 + - yesod-alerts ^>= 0.1.3.0 + - graphite ^>= 0.10.0.1 "JosĂ© Lorenzo RodrĂ­guez @lorenzo": - - wrecker - - language-docker - - docker-build-cacher - - mysql-haskell-nem - - hadolint + - wrecker < 0 + - language-docker ^>= 10.4.0 + - docker-build-cacher < 0 + - mysql-haskell-nem < 0 + - hadolint < 0 "Phil Ruffwind @Rufflewind": - - blas-hs + - blas-hs ^>= 0.1.1.0 "Eitan Chatav @echatav": - - free-categories - - squeal-postgresql + - free-categories ^>= 0.2.0.2 + - squeal-postgresql < 0 "Sam Quinn @Lazersmoke": - - ghost-buster + - ghost-buster ^>= 0.1.1.0 "typeable.io ": - - dom-parser - - xml-isogen + - dom-parser < 0 + - xml-isogen < 0 "Jeremy Huffman @jeremyjh": - - higher-leveldb - - distributed-process-lifted - - distributed-process-monad-control + - higher-leveldb ^>= 0.6.0.0 + - distributed-process-lifted < 0 + - distributed-process-monad-control < 0 "Adam Curtis @kallisti-dev": - - webdriver - - cond + - webdriver < 0 + - cond ^>= 0.4.1.1 "Naoto Shimazaki @nshimaza": - - thread-hierarchy - - thread-supervisor - - bitset-word8 - - webex-teams-api - - webex-teams-conduit - - webex-teams-pipes + - thread-hierarchy ^>= 0.3.0.2 + - thread-supervisor ^>= 0.2.0.0 + - bitset-word8 ^>= 0.1.1.2 + - webex-teams-api ^>= 0.2.0.1 + - webex-teams-conduit ^>= 0.2.0.1 + - webex-teams-pipes < 0 "Deni Bertovic @denibertovic & James Parker @jprider63": - - docker + - docker < 0 "Hexirp @Hexirp": - - doctest-driver-gen + - doctest-driver-gen ^>= 0.3.0.5 "VĂĄclav Haisman @wilx": - - hs-bibutils + - hs-bibutils ^>= 6.10.0.0 "Christian KjĂŠr Laustsen @tehnix": - - ghc-core - - colorize-haskell + - ghc-core ^>= 0.5.6 + - colorize-haskell ^>= 1.0.1 "Chris Martin @chris-martin": - - data-forest - - loc - - partial-semigroup - - path-text-utf8 + - data-forest ^>= 0.1.0.9 + - loc < 0 + - partial-semigroup ^>= 0.5.1.12 + - path-text-utf8 < 0 "Type Classes @argumatronic @chris-martin": - - ascii - - ascii-case - - ascii-char - - ascii-group - - ascii-predicates - - ascii-superset - - ascii-th - - aws-cloudfront-signed-cookies - - d10 - - hex-text - - stripe-concepts - - stripe-signature - - stripe-scotty - - stripe-wreq + - ascii ^>= 1.1.1.0 + - ascii-case ^>= 1.0.0.8 + - ascii-char ^>= 1.0.0.12 + - ascii-group ^>= 1.0.0.8 + - ascii-predicates ^>= 1.0.0.6 + - ascii-superset ^>= 1.0.1.8 + - ascii-th ^>= 1.0.0.6 + - aws-cloudfront-signed-cookies ^>= 0.2.0.10 + - d10 ^>= 1.0.0.1 + - hex-text ^>= 0.1.0.4 + - stripe-concepts ^>= 1.0.3 + - stripe-signature ^>= 1.0.0.10 + - stripe-scotty ^>= 1.1 + - stripe-wreq ^>= 1.0.1.10 "Viacheslav Lotsmanov @unclechu": - - place-cursor-at - - qm-interpolated-string + - place-cursor-at ^>= 1.0.1 + - qm-interpolated-string ^>= 0.3.0.0 "Douglas Burke @DougBurke": - - swish - - hvega - - ihaskell-hvega + - swish ^>= 0.10.0.8 + - hvega ^>= 0.12.0.1 + - ihaskell-hvega ^>= 0.5.0.0 "Adam Flott @adamflott": - milena < 0 # compilation failures "Csongor Kiss @kcsongor": - - generic-lens - - generic-optics - - generic-lens-core + - generic-lens ^>= 2.2.0.0 + - generic-optics ^>= 2.2.0.0 + - generic-lens-core ^>= 2.2.0.0 "Bogdan Neterebskii @ozzzzz": - - cast - - aeson-picker + - cast ^>= 0.1.0.2 + - aeson-picker < 0 "Warlock @A1-Triard": - - errors-ext - - binary-ext + - errors-ext ^>= 0.4.2 + - binary-ext < 0 "Bob Long @bobjflong": - - yesod-csp + - yesod-csp ^>= 0.2.5.0 "Alexander Vershilov @qnikst": - - stm-conduit - - co-log-concurrent - - HaskellNet + - stm-conduit ^>= 4.0.1 + - co-log-concurrent < 0 + - HaskellNet < 0 "Tung Dao @tungd": - - time-locale-vietnamese + - time-locale-vietnamese ^>= 1.0.0.0 "Tim McGilchrist @tmcgilchrist": - - riak - - riak-protobuf - - airship - - hedgehog-corpus + - riak < 0 + - riak-protobuf ^>= 0.25.0.0 + - airship < 0 + - hedgehog-corpus ^>= 0.2.0 "Tom Sydney Kerckhove @NorfairKing": - - autodocodec - - autodocodec-openapi3 - - autodocodec-schema - - autodocodec-yaml - - cursor - - cursor-brick - - cursor-fuzzy-time - - cursor-gen - - fuzzy-time - - genvalidity - - genvalidity-aeson - - genvalidity-bytestring - - genvalidity-containers - - genvalidity-criterion - - genvalidity-hspec - - genvalidity-hspec-aeson - - genvalidity-hspec-binary - - genvalidity-hspec-cereal - - genvalidity-hspec-hashable - - genvalidity-hspec-optics - - genvalidity-hspec-persistent - - genvalidity-mergeful - - genvalidity-mergeless - - genvalidity-path - - genvalidity-persistent - - genvalidity-property - - genvalidity-scientific - - genvalidity-sydtest - - genvalidity-sydtest-aeson - - genvalidity-sydtest-hashable - - genvalidity-sydtest-lens - - genvalidity-sydtest-persistent - - genvalidity-text - - genvalidity-time - - genvalidity-typed-uuid - - genvalidity-unordered-containers - - genvalidity-uuid - - genvalidity-vector - - mergeful - - mergeless - - pretty-relative-time - - safe-coloured-text - - safe-coloured-text-terminfo - - sydtest - - sydtest-discover - - sydtest-persistent - - sydtest-persistent-sqlite - - sydtest-servant - - sydtest-wai - - sydtest-yesod - - typed-uuid - - validity - - validity-aeson - - validity-bytestring - - validity-containers - - validity-path - - validity-persistent - - validity-primitive - - validity-scientific - - validity-text - - validity-time - - validity-unordered-containers - - validity-uuid - - validity-vector - - yamlparse-applicative + - autodocodec ^>= 0.0.0.0 + - autodocodec-openapi3 ^>= 0.0.0.0 + - autodocodec-schema ^>= 0.0.0.0 + - autodocodec-yaml ^>= 0.0.0.0 + - cursor ^>= 0.3.2.0 + - cursor-brick ^>= 0.1.0.1 + - cursor-fuzzy-time ^>= 0.0.0.0 + - cursor-gen ^>= 0.4.0.0 + - fuzzy-time ^>= 0.2.0.0 + - genvalidity ^>= 1.0.0.1 + - genvalidity-aeson ^>= 1.0.0.0 + - genvalidity-bytestring ^>= 1.0.0.0 + - genvalidity-containers ^>= 1.0.0.0 + - genvalidity-criterion ^>= 1.0.0.0 + - genvalidity-hspec ^>= 1.0.0.0 + - genvalidity-hspec-aeson ^>= 1.0.0.0 + - genvalidity-hspec-binary ^>= 1.0.0.0 + - genvalidity-hspec-cereal ^>= 1.0.0.0 + - genvalidity-hspec-hashable ^>= 1.0.0.0 + - genvalidity-hspec-optics ^>= 1.0.0.0 + - genvalidity-hspec-persistent ^>= 1.0.0.0 + - genvalidity-mergeful ^>= 0.3.0.0 + - genvalidity-mergeless ^>= 0.3.0.0 + - genvalidity-path ^>= 1.0.0.0 + - genvalidity-persistent ^>= 1.0.0.0 + - genvalidity-property ^>= 1.0.0.0 + - genvalidity-scientific ^>= 1.0.0.0 + - genvalidity-sydtest ^>= 1.0.0.0 + - genvalidity-sydtest-aeson ^>= 1.0.0.0 + - genvalidity-sydtest-hashable ^>= 1.0.0.0 + - genvalidity-sydtest-lens ^>= 1.0.0.0 + - genvalidity-sydtest-persistent ^>= 1.0.0.0 + - genvalidity-text ^>= 1.0.0.0 + - genvalidity-time ^>= 1.0.0.0 + - genvalidity-typed-uuid ^>= 0.1.0.1 + - genvalidity-unordered-containers ^>= 1.0.0.0 + - genvalidity-uuid ^>= 1.0.0.0 + - genvalidity-vector ^>= 1.0.0.0 + - mergeful ^>= 0.2.0.0 + - mergeless ^>= 0.3.0.0 + - pretty-relative-time ^>= 0.3.0.0 + - safe-coloured-text ^>= 0.1.0.0 + - safe-coloured-text-terminfo ^>= 0.0.0.0 + - sydtest ^>= 0.5.0.0 + - sydtest-discover ^>= 0.0.0.1 + - sydtest-persistent ^>= 0.0.0.0 + - sydtest-persistent-sqlite < 0 + - sydtest-servant ^>= 0.2.0.0 + - sydtest-wai ^>= 0.2.0.0 + - sydtest-yesod ^>= 0.3.0.0 + - typed-uuid ^>= 0.2.0.0 + - validity ^>= 0.12.0.0 + - validity-aeson ^>= 0.2.0.4 + - validity-bytestring ^>= 0.4.1.1 + - validity-containers ^>= 0.5.0.4 + - validity-path ^>= 0.4.0.1 + - validity-persistent ^>= 0.0.0.0 + - validity-primitive ^>= 0.0.0.1 + - validity-scientific ^>= 0.2.0.3 + - validity-text ^>= 0.3.1.2 + - validity-time ^>= 0.5.0.0 + - validity-unordered-containers ^>= 0.2.0.3 + - validity-uuid ^>= 0.1.0.3 + - validity-vector ^>= 0.2.0.3 + - yamlparse-applicative ^>= 0.2.0.1 "Henry Laxen @HenryLaxen": - - bbdb + - bbdb ^>= 0.8 "Stevan Andjelkovic @stevana": - - quickcheck-state-machine + - quickcheck-state-machine < 0 "Sebastian Nagel @ch1bo": - hdevtools < 0 # compilation failure - - servant-exceptions - - servant-exceptions-server + - servant-exceptions ^>= 0.2.1 + - servant-exceptions-server ^>= 0.2.1 "Vaibhav Sagar @vaibhavsagar": - - ihaskell - - ghc-parser + - ihaskell ^>= 0.10.2.2 + - ghc-parser ^>= 0.2.3.0 "Alexis Williams @typedrat": - - stb-image-redux + - stb-image-redux ^>= 0.2.1.3 "Alexandre Peyroux @apeyroux": - - HSlippyMap - - google-isbn - - nuxeo + - HSlippyMap ^>= 3.0.1 + - google-isbn ^>= 1.0.3 + - nuxeo ^>= 0.3.2 "Andrey Sverdlichenko @rblaze": - - credential-store - - dbus - - re2 + - credential-store ^>= 0.1.2 + - dbus ^>= 1.2.21 + - re2 ^>= 0.3 "Bardur Arantsson @BardurArantsson": - - peregrin - - pg-harness-client - - pg-harness-server - - unliftio-pool - - unliftio-streams + - peregrin ^>= 0.3.1 + - pg-harness-client ^>= 0.6.0 + - pg-harness-server < 0 + - unliftio-pool ^>= 0.2.1.1 + - unliftio-streams ^>= 0.1.1.1 "Sebastian Graf @sgraf812": - - pomaps + - pomaps < 0 "Alexey Kotlyarov @koterpillar": - - appendmap - - serverless-haskell + - appendmap ^>= 0.1.5 + - serverless-haskell < 0 "Guru Devanla @gdevanla": - - pptable + - pptable ^>= 0.3.0.0 - cassava-records < 0 # compilation failure MonadFail - - pandoc-markdown-ghci-filter # https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 + - pandoc-markdown-ghci-filter < 0 # https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 "Lucas David Traverso @ludat": - - map-syntax - - heist - - snap - - conferer - - conferer-snap - - conferer-warp - - conferer-hspec - - conferer-aeson + - map-syntax < 0 + - heist < 0 + - snap < 0 + - conferer ^>= 1.1.0.0 + - conferer-snap < 0 + - conferer-warp ^>= 1.1.0.0 + - conferer-hspec < 0 + - conferer-aeson ^>= 1.1.0.2 "Tim Humphries @thumphries": - - transformers-either - - transformers-fix + - transformers-either ^>= 0.1.2 + - transformers-fix ^>= 1.0 "Dan Firth @locallycompact": - - aeson-with - - binary-instances - - comonad-extras - - compact - - composite-aeson - - composite-aeson-path - - composite-aeson-refined - - composite-aeson-throw - - composite-base - - composite-binary - - composite-ekg - - composite-hashable - - composite-tuple - - composite-xstep - - ixset-typed-binary-instance - - ixset-typed-conversions - - ixset-typed-hashable-instance - - lucid-cdn - - natural-arithmetic - - pandoc-dhall-decoder - - pandoc-throw - - path-binary-instance - - path-dhall-instance - - path-extensions - - path-formatting - - path-like - - path-utils - - polysemy-extra - - polysemy-fs - - polysemy-fskvstore - - polysemy-kvstore-jsonfile - - polysemy-kvstore - - polysemy-methodology - - polysemy-path - - polysemy-several - - polysemy-socket - - polysemy-uncontrolled - - polysemy-video - - polysemy-vinyl - - primitive-offset - - shake-plus - - shake-plus-extended - - simple-media-timestamp - - simple-media-timestamp-formatting - - simple-media-timestamp-attoparsec - - srt - - srt-attoparsec - - srt-dhall - - srt-formatting - - tuples - - unliftio-path - - variable-media-field - - variable-media-field-dhall - - variable-media-field-optics - - vinyl-loeb - - within - - zipper-extra + - aeson-with ^>= 0.1.2.0 + - binary-instances ^>= 1.0.2 + - comonad-extras ^>= 4.0.1 + - compact ^>= 0.2.0.0 + - composite-aeson < 0 + - composite-aeson-path < 0 + - composite-aeson-refined < 0 + - composite-aeson-throw < 0 + - composite-base < 0 + - composite-binary < 0 + - composite-ekg < 0 + - composite-hashable < 0 + - composite-tuple < 0 + - composite-xstep < 0 + - ixset-typed-binary-instance < 0 + - ixset-typed-conversions < 0 + - ixset-typed-hashable-instance < 0 + - lucid-cdn ^>= 0.2.2.0 + - natural-arithmetic ^>= 0.1.2.0 + - pandoc-dhall-decoder ^>= 0.1.0.1 + - pandoc-throw ^>= 0.1.0.0 + - path-binary-instance ^>= 0.1.0.1 + - path-dhall-instance ^>= 0.2.1.0 + - path-extensions ^>= 0.1.1.0 + - path-formatting ^>= 0.1.0.0 + - path-like ^>= 0.2.0.2 + - path-utils ^>= 0.1.1.0 + - polysemy-extra ^>= 0.2.0.0 + - polysemy-fs ^>= 0.1.0.0 + - polysemy-fskvstore ^>= 0.1.1.0 + - polysemy-kvstore-jsonfile ^>= 0.1.1.0 + - polysemy-kvstore ^>= 0.1.2.0 + - polysemy-methodology ^>= 0.2.1.0 + - polysemy-path ^>= 0.2.1.0 + - polysemy-several ^>= 0.1.0.0 + - polysemy-socket ^>= 0.0.2.0 + - polysemy-uncontrolled ^>= 0.1.1.0 + - polysemy-video ^>= 0.2.0.1 + - polysemy-vinyl ^>= 0.1.5.0 + - primitive-offset ^>= 0.2.0.0 + - shake-plus ^>= 0.3.4.0 + - shake-plus-extended < 0 + - simple-media-timestamp ^>= 0.2.0.0 + - simple-media-timestamp-formatting ^>= 0.1.1.0 + - simple-media-timestamp-attoparsec ^>= 0.1.0.0 + - srt ^>= 0.1.1.0 + - srt-attoparsec ^>= 0.1.0.0 + - srt-dhall ^>= 0.1.0.0 + - srt-formatting ^>= 0.1.0.0 + - tuples ^>= 0.1.0.0 + - unliftio-path ^>= 0.0.2.0 + - variable-media-field ^>= 0.1.0.0 + - variable-media-field-dhall ^>= 0.1.0.0 + - variable-media-field-optics ^>= 0.1.0.0 + - vinyl-loeb ^>= 0.0.1.0 + - within ^>= 0.2.0.1 + - zipper-extra ^>= 0.1.3.2 "Domen Kozar @domenkozar": - - elm2nix - - mixpanel-client - - netrc - - pretty-sop - - servant-auth - - servant-auth-server - - servant-auth-client - - servant-auth-swagger - - servant-auth-docs - - servant-elm - - systemd + - elm2nix ^>= 0.2.1 + - mixpanel-client ^>= 0.3.0 + - netrc < 0 + - pretty-sop ^>= 0.2.0.3 + - servant-auth ^>= 0.4.0.0 + - servant-auth-server < 0 + - servant-auth-client ^>= 0.4.1.0 + - servant-auth-swagger < 0 + - servant-auth-docs < 0 + - servant-elm < 0 + - systemd ^>= 2.3.0 "Andre Van Der Merwe @andrevdm": - - bhoogle - - hyraxAbif - - postgresql-migration + - bhoogle < 0 + - hyraxAbif < 0 + - postgresql-migration ^>= 0.2.1.3 "David Millar-Durrant @DavidM-D": - - indexed-list-literals + - indexed-list-literals ^>= 0.2.1.3 "Dmitry Dzhus @dzhus": - - csg - - simple-vec3 - - static-text - - th-env - - th-nowq + - csg < 0 + - simple-vec3 ^>= 0.6.0.1 + - static-text ^>= 0.2.0.7 + - th-env ^>= 0.1.0.3 + - th-nowq ^>= 0.1.0.5 "Dan Fithian @dfithian": - - oauthenticated - - datadog - - interpolator - - file-path-th + - oauthenticated ^>= 0.2.1.0 + - datadog ^>= 0.2.5.0 + - interpolator < 0 + - file-path-th ^>= 0.1.0.0 "Raghu Kaippully @rkaippully": - - webgear-server + - webgear-server ^>= 0.2.1 "Alex Washburn @recursion-ninja": - - bv-little - - mono-traversable-keys + - bv-little < 0 + - mono-traversable-keys ^>= 0.2.0 "Avi Press @aviaviavi": - - curl-runnings - - cryptocompare + - curl-runnings ^>= 0.16.0 + - cryptocompare ^>= 0.1.2 "Jack Kiefer @JackKiefer": - - herms + - herms < 0 "Sergey Vinokurov @sergv": - - bencoding + - bencoding < 0 - emacs-module < 0 # compilation failure ghc 8.10.1 #5436/closed - - tasty-ant-xml + - tasty-ant-xml ^>= 1.1.8 "Eugene Smolanka @esmolanka": - - sexp-grammar - - invertible-grammar + - sexp-grammar ^>= 2.3.3.1 + - invertible-grammar ^>= 0.1.3.2 "Maximilian Tagher @MaxGabriel": - - aeson-iproute - - persistent-iproute + - aeson-iproute ^>= 0.2.1 + - persistent-iproute ^>= 0.2.5 "Damian Nadales @capitanbatata": - - hierarchy + - hierarchy < 0 "Kofi Gumbs @hkgumbs": - - codec-beam + - codec-beam ^>= 0.2.0 "Chris Parks @cdparks": - - closed + - closed ^>= 0.2.0.1 "Chris Coffey @ChrisCoffey": - - servant-tracing - - cuckoo-filter - - confcrypt + - servant-tracing ^>= 0.1.0.2 + - cuckoo-filter < 0 + - confcrypt < 0 "Rick Owens @owensmurray": - - om-elm + - om-elm < 0 "ALeX Kazik @alexkazik": - - exomizer - - qnap-decrypt - - qrcode-core - - qrcode-juicypixels + - exomizer ^>= 1.0.0 + - qnap-decrypt < 0 + - qrcode-core ^>= 0.9.4 + - qrcode-juicypixels ^>= 0.8.2 "Reed Oei @ReedOei": - - fuzzy-dates + - fuzzy-dates ^>= 0.1.1.2 "Matthew Farkas-Dyck @strake": - - Fin - - alg - - category - - constraint - - dual - - either-both - - filtrable - - foldable1 - - hs-functors - - lenz - - natural-induction - - peano - - unconstrained - - util + - Fin < 0 + - alg ^>= 0.2.13.1 + - category ^>= 0.2.5.0 + - constraint ^>= 0.1.4.0 + - dual ^>= 0.1.1.1 + - either-both ^>= 0.1.1.1 + - filtrable ^>= 0.1.6.0 + - foldable1 ^>= 0.1.0.0 + - hs-functors < 0 + - lenz < 0 + - natural-induction ^>= 0.2.0.0 + - peano ^>= 0.1.0.1 + - unconstrained ^>= 0.1.0.2 + - util ^>= 0.1.17.1 "Ben Sima @bensima": - - yesod-text-markdown + - yesod-text-markdown ^>= 0.1.10 "Alexander Krupenkin @akru": - - web3 + - web3 < 0 "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": - - can-i-haz - - enum-subset-generate + - can-i-haz ^>= 0.3.1.0 + - enum-subset-generate < 0 "Trevis Elser @telser": - - sendfile + - sendfile ^>= 0.7.11.1 "Kristen Kozak @grayjay": - - json-rpc-server - - json-rpc-client + - json-rpc-server < 0 + - json-rpc-client < 0 "Magnus Therning @magthe": - - hsini + - hsini ^>= 0.5.1.2 "Baojun Wang @wangbj": - - elf + - elf ^>= 0.31 "Tom Oram @tomphp": - - cfenv + - cfenv ^>= 0.1.0.0 "Owen Lynch @olynch": - - natural-sort + - natural-sort ^>= 0.1.2 "John Biesnecker @biesnecker": - - async-pool + - async-pool ^>= 0.9.1 "Zoltan Kelemen @kelemzol": - - fswatch + - fswatch < 0 "Matthew Wraith @wraithm": - - prometheus - - prometheus-wai-middleware - - hgrev - - seqid - - seqid-streams + - prometheus ^>= 2.2.2 + - prometheus-wai-middleware ^>= 1.0.1.0 + - hgrev < 0 + - seqid ^>= 0.6.2 + - seqid-streams ^>= 0.7.2 "Daniel Gorin @jcpetruzza": - - barbies - - data-hash + - barbies ^>= 2.0.3.0 + - data-hash ^>= 0.2.0.1 "Eduard Sergeev @EduardSergeev": - - monad-memo + - monad-memo ^>= 0.5.3 "Wanja Chresta @wchresta": - - matrix-static + - matrix-static ^>= 0.3 "Jean-Pierre Rupp @xenog": - - json-rpc - - rfc1751 - - murmur3 - - nqe - - secp256k1-haskell - - rocksdb-haskell - - rocksdb-haskell-jprupp - - rocksdb-query - - haskoin-core - - haskoin-node - - haskoin-store + - json-rpc ^>= 1.0.3 + - rfc1751 ^>= 0.1.3 + - murmur3 ^>= 1.0.5 + - nqe ^>= 0.6.3 + - secp256k1-haskell ^>= 0.6.0 + - rocksdb-haskell ^>= 1.0.1 + - rocksdb-haskell-jprupp ^>= 2.1.3 + - rocksdb-query ^>= 0.4.2 + - haskoin-core ^>= 0.21.0 + - haskoin-node < 0 + - haskoin-store < 0 "asakamirai @asakamirai": - - kazura-queue + - kazura-queue ^>= 0.1.0.4 "Eric Torreborre @etorreborre": - - registry + - registry < 0 "Ryota Kameoka @ryota-ka": - - duration + - duration ^>= 0.2.0.0 "Takenobu Tani @takenobu-hs": - - ghci-hexcalc + - ghci-hexcalc ^>= 0.1.1.0 "Nikos Karagianndis @nkarag": - - DBFunctor + - DBFunctor ^>= 0.1.2.1 "Marat Khafizov @xafizoff": - - n2o - - n2o-nitro - - n2o-protocols - - n2o-web + - n2o ^>= 0.11.1 + - n2o-nitro ^>= 0.11.2 + - n2o-protocols < 0 + - n2o-web < 0 "David Smith @shmish111": - - bazel-runfiles + - bazel-runfiles ^>= 0.12 "Rob Rix @robrix": - - fused-effects + - fused-effects ^>= 1.1.1.1 "Josef Thorne @Grendel-Grendel-Grendel": - - focuslist + - focuslist ^>= 0.1.0.2 "Pavan Rikhi @prikhi": - - hs-php-session - - wordpress-auth - - servant-auth-wordpress - - ca-province-codes - - mx-state-codes - - sitemap-gen - - tasty-wai - - stack-templatizer - - immortal-queue - - wai-middleware-clacks - - hledger-stockquotes - - bnb-staking-csvs - - solana-staking-csvs - - cointracking-imports + - hs-php-session ^>= 0.0.9.3 + - wordpress-auth ^>= 1.0.0.1 + - servant-auth-wordpress ^>= 1.0.0.2 + - ca-province-codes ^>= 1.0.0.0 + - mx-state-codes ^>= 1.0.0.0 + - sitemap-gen ^>= 0.1.0.0 + - tasty-wai ^>= 0.1.1.1 + - stack-templatizer ^>= 0.1.0.2 + - immortal-queue ^>= 0.1.0.1 + - wai-middleware-clacks ^>= 0.1.0.1 + - hledger-stockquotes ^>= 0.1.2.0 + - bnb-staking-csvs ^>= 0.2.0.0 + - solana-staking-csvs ^>= 0.1.1.0 + - cointracking-imports ^>= 0.1.0.1 "David Baynard @dbaynard": - - time-qq - - ucam-webauth - - ucam-webauth-types + - time-qq < 0 + - ucam-webauth < 0 + - ucam-webauth-types < 0 "Erick Gonzalez @codemonkeylabs-de": - - eap - - failable - - ttl-hashtables - - radius - - structured-cli + - eap ^>= 0.9.0.2 + - failable ^>= 1.2.4.0 + - ttl-hashtables ^>= 1.4.1.0 + - radius ^>= 0.7.1.0 + - structured-cli ^>= 2.7.0.1 "Jan Path @janpath": - - smallcheck-series + - smallcheck-series < 0 "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": - - oeis2 + - oeis2 ^>= 1.0.6 "David Himmelstrup @lemmih": - - chiphunk - - reanimate-svg - - reanimate - - earcut - - vector-circular + - chiphunk ^>= 0.1.4.0 + - reanimate-svg ^>= 0.13.0.1 + - reanimate < 0 + - earcut < 0 + - vector-circular < 0 # required by reanimate as of 0.4.2.0 - - hgeometry >= 0.12.0.2 - - hgeometry-combinatorial - - approximate-equality # required by hgeometry-combinatorial - - type-level-natural-number # required by approximate-equality + - hgeometry < 0 + - hgeometry-combinatorial < 0 + - approximate-equality ^>= 1.1.0.2 # required by hgeometry-combinatorial + - type-level-natural-number ^>= 2.0 # required by approximate-equality "Vitaly Bragilevsky @bravit": - - Chart - - Chart-diagrams + - Chart < 0 + - Chart-diagrams < 0 "Juri ChomĂ© @2mol": - - msgpack - - msgpack-rpc - - msgpack-idl - - msgpack-aeson - - int-cast + - msgpack < 0 + - msgpack-rpc < 0 + - msgpack-idl < 0 + - msgpack-aeson < 0 + - int-cast ^>= 0.2.0.0 "Akihito Kirisaki @kirisaki": - - caster + - caster ^>= 0.0.3.0 "Felix Paulusma @Vlix": - - safe-json + - safe-json ^>= 1.1.2.0 "Olle Fredriksson @ollef": - - rope-utf16-splay + - rope-utf16-splay ^>= 0.3.2.0 "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table + - pandoc-csv2table ^>= 1.0.9 "Elben Shira @elben": - - pencil + - pencil < 0 "Ivan Malison @IvanMalison": - - ConfigFile - - dbus-hslogger - - gi-cairo-connector - - gi-cairo-render - - gtk-sni-tray - - gtk-strut - - rate-limit - - status-notifier-item - - taffybar - - time-units - - xml-helpers - - xdg-desktop-entry + - ConfigFile ^>= 1.1.4 + - dbus-hslogger ^>= 0.1.0.1 + - gi-cairo-connector ^>= 0.1.1 + - gi-cairo-render ^>= 0.1.1 + - gtk-sni-tray ^>= 0.1.8.0 + - gtk-strut ^>= 0.1.3.0 + - rate-limit ^>= 1.4.2 + - status-notifier-item ^>= 0.3.1.0 + - taffybar < 0 + - time-units ^>= 1.0.0 + - xml-helpers ^>= 1.0.0 + - xdg-desktop-entry ^>= 0.1.1.1 "ARATA Mizuki @minoki": - - unboxing-vector + - unboxing-vector ^>= 0.2.0.0 "Brandon Chinn @brandon-leapyear": - - aeson-schemas - - github-rest - - graphql-client - - hpc-lcov - - th-test-utils + - aeson-schemas ^>= 1.3.5 + - github-rest ^>= 1.1.2 + - graphql-client < 0 + - hpc-lcov < 0 + - th-test-utils ^>= 1.1.1 "Brandon Chinn @brandonchinn178": - - persistent-mtl - - fourmolu + - persistent-mtl ^>= 0.3.0.0 + - fourmolu ^>= 0.4.0.0 "Akshay Mankar @akshaymankar": - - jsonpath + - jsonpath ^>= 0.2.0.0 "James Brock @jamesdbrock": - - replace-megaparsec - - replace-attoparsec + - replace-megaparsec ^>= 1.4.4.0 + - replace-attoparsec ^>= 1.4.5.0 "Robbie McMichael @robbiemcmichael": - - http-client-overrides + - http-client-overrides ^>= 0.1.1.0 "Ian Graves @igraves": - - monad-resumption + - monad-resumption ^>= 0.1.4.0 "Marius Ghita @mhitza": - - minimal-configuration + - minimal-configuration ^>= 0.1.4 "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql - - morpheus-graphql-core - - morpheus-graphql-client - - morpheus-graphql-subscriptions - - morpheus-graphql-app + - morpheus-graphql < 0 + - morpheus-graphql-core < 0 + - morpheus-graphql-client < 0 + - morpheus-graphql-subscriptions < 0 + - morpheus-graphql-app < 0 "Satoshi Egi @egisatoshi": - - backtracking - - egison - - mini-egison - - sweet-egison - - egison-pattern-src - - egison-pattern-src-th-mode + - backtracking ^>= 0.1.0 + - egison < 0 + - mini-egison < 0 + - sweet-egison < 0 + - egison-pattern-src < 0 + - egison-pattern-src-th-mode < 0 "Travis Cardwell @TravisCardwell": - - literatex - - ttc + - literatex ^>= 0.2.0.0 + - ttc ^>= 1.1.0.2 "Jasper Woudenberg @jwoudenberg": - - bugsnag-hs - - junit-xml - - wai-feature-flags - - tasty-test-reporter - - pretty-diff + - bugsnag-hs ^>= 0.2.0.7 + - junit-xml ^>= 0.1.0.2 + - wai-feature-flags ^>= 0.1.0.2 + - tasty-test-reporter ^>= 0.1.1.4 + - pretty-diff ^>= 0.4.0.3 "Eric Conlon @ejconlon": - - blanks - - climb - - linenoise - - little-rio - - little-logger + - blanks ^>= 0.5.0 + - climb ^>= 0.3.3 + - linenoise ^>= 0.3.2 + - little-rio ^>= 0.2.2 + - little-logger < 0 # Maintainership with @23Skidoo - - ekg - - ekg-core - - ekg-json - - ekg-statsd + - ekg < 0 + - ekg-core < 0 + - ekg-json < 0 + - ekg-statsd < 0 "Jorah Gao @gqk007": - - aeson-default - - vformat - - vformat-time - - vformat-aeson - - hkd-default + - aeson-default ^>= 0.9.1.0 + - vformat ^>= 0.14.1.0 + - vformat-time ^>= 0.1.0.0 + - vformat-aeson ^>= 0.1.0.1 + - hkd-default ^>= 1.1.0.0 "Shintaro Sakata @chemirea": - - utf8-conversions + - utf8-conversions < 0 "Alessandro Marrella @amarrella": - - kubernetes-webhook-haskell + - kubernetes-webhook-haskell ^>= 0.2.0.3 "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": - - hpc-codecov + - hpc-codecov ^>= 0.3.0.0 "Hiromi Ishii @konn": - - equational-reasoning - - ghc-typelits-presburger - - singletons-presburger - - type-natural - - subcategories - - sized + - equational-reasoning ^>= 0.7.0.1 + - ghc-typelits-presburger ^>= 0.6.1.0 + - singletons-presburger ^>= 0.6.1.0 + - type-natural ^>= 1.1.0.0 + - subcategories ^>= 0.1.1.0 + - sized ^>= 1.0.0.0 "Frank Doepper @woffs": - - amqp-utils - - magic + - amqp-utils ^>= 0.6.3.2 + - magic ^>= 1.1 "Ziyang Liu @zliu41": - - apply-refact - - hadoop-streaming - - indexed-containers - - math-extras - - min-max-pqueue - - multi-containers + - apply-refact ^>= 0.9.3.0 + - hadoop-streaming ^>= 0.2.0.3 + - indexed-containers ^>= 0.1.0.2 + - math-extras ^>= 0.1.1.0 + - min-max-pqueue ^>= 0.1.0.2 + - multi-containers ^>= 0.2 "Vaclav Svejcar @vaclavsvejcar": - headroom < 0 # https://github.com/commercialhaskell/stackage/issues/6342 - - vcs-ignore + - vcs-ignore ^>= 0.0.1.0 "Adrian Sieber @ad-si": - - ulid + - ulid < 0 "Rickey Visinski @rickeyski": - - slack-api + - slack-api < 0 "Dobromir Nikolov @dnikolovv": - - it-has + - it-has < 0 "Gabriele Sales @gbrsales": - - cabal-appimage + - cabal-appimage ^>= 0.3.0.3 "Dominik Schrempf @dschrempf": - - circular - - covariance - - dirichlet - - elynx - - elynx-markov - - elynx-nexus - - elynx-seq - - elynx-tools - - elynx-tree - - glasso - - mcmc - - pava - - slynx - - tlynx + - circular ^>= 0.4.0.1 + - covariance ^>= 0.1.0.5 + - dirichlet ^>= 0.1.0.5 + - elynx < 0 + - elynx-markov < 0 + - elynx-nexus ^>= 0.6.1.0 + - elynx-seq < 0 + - elynx-tools < 0 + - elynx-tree ^>= 0.6.1.0 + - glasso ^>= 0.1.0 + - mcmc ^>= 0.6.1.0 + - pava ^>= 0.1.1.2 + - slynx < 0 + - tlynx < 0 "Eric Rochester @erochest": - - text-regex-replace + - text-regex-replace ^>= 0.1.1.4 "Masahiro Honma @hiratara": - - string-random + - string-random ^>= 0.1.4.1 "Michael B. Gale @mbg": - - c14n - - katip-logstash - - logstash - - monad-logger-logstash - - moss - - wai-rate-limit - - wai-rate-limit-redis - - wai-saml2 + - c14n ^>= 0.1.0.1 + - katip-logstash ^>= 0.1.0.2 + - logstash ^>= 0.1.0.3 + - monad-logger-logstash ^>= 0.2.0.2 + - moss ^>= 0.2.0.0 + - wai-rate-limit ^>= 0.1.0.0 + - wai-rate-limit-redis ^>= 0.1.0.0 + - wai-saml2 ^>= 0.2.1.2 "Jun Narumi @narumij": - - matrix-as-xyz - - hall-symbols - - symmetry-operations-symbols + - matrix-as-xyz ^>= 0.1.2.2 + - hall-symbols ^>= 0.1.0.6 + - symmetry-operations-symbols ^>= 0.0.2.1 "Hideaki Kawai @kayhide": - - wakame + - wakame ^>= 0.1.0.0 "Michael Williams @mlcfp": - - zenacy-html - - zenacy-unicode + - zenacy-html ^>= 2.0.4 + - zenacy-unicode ^>= 1.0.1 "Maxim Koltsov @maksbotan": - - openapi3 - - servant-openapi3 + - openapi3 ^>= 3.1.0 + - servant-openapi3 ^>= 2.0.1.2 "Song Zhang @HaskellZhangSong": - - derive-topdown + - derive-topdown < 0 "NoRedInk ": - - nri-env-parser - - nri-http - - nri-kafka - - nri-observability - - nri-prelude - - nri-postgresql - - nri-redis - - nri-test-encoding + - nri-env-parser ^>= 0.1.0.7 + - nri-http ^>= 0.1.0.3 + - nri-kafka ^>= 0.1.0.2 + - nri-observability ^>= 0.1.1.3 + - nri-prelude ^>= 0.6.0.5 + - nri-postgresql ^>= 0.1.0.3 + - nri-redis ^>= 0.1.0.3 + - nri-test-encoding < 0 "Behrang Norouzinia @behrang": - - jalaali + - jalaali ^>= 1.0.0.0 "Alexander Batischev @Minoru": - - hakyll-convert + - hakyll-convert ^>= 0.3.0.4 "Edward Nerd @nerded1337": - - zydiskell + - zydiskell < 0 "Alejandro Peralta Bazas @aleperaltabazas": - - hocon + - hocon ^>= 0.1.0.4 "Joshua Booth @jnbooth": - - bitwise-enum + - bitwise-enum ^>= 1.0.1.0 "Shlomo Shuck @sjshuck": - - pcre2 + - pcre2 ^>= 2.0.3 "Emil Axelsson <78emil@gmail.com> @emax": - - tree-view + - tree-view ^>= 0.5.1 "Samuel GĂ©lineau @gelisam": - - haskell-awk - - hint - - recursion-schemes + - haskell-awk ^>= 1.2.0.1 + - hint ^>= 0.9.0.5 + - recursion-schemes ^>= 5.2.2.2 "Kyriakos Papachrysanthou @3kyro": - - keep-alive + - keep-alive ^>= 0.2.0.0 "Brooklyn Zelenka @expede": - - rescue + - rescue ^>= 0.4.2.1 "Artem Pelenitsyn @ulysses4ever": - - alex-meta - - happy-meta - - BNFC-meta + - alex-meta ^>= 0.3.0.13 + - happy-meta ^>= 0.2.0.11 + - BNFC-meta ^>= 0.6.1 "Tomasz Maciosowski @t4ccer": - - wai-session-redis + - wai-session-redis ^>= 0.1.0.4 "Rory Tyler Hayford @ngua": - - ipa + - ipa ^>= 0.3.1.1 "Andreas Herrmann @aherrmann": - - capability + - capability ^>= 0.5.0.0 "Dustin Sallings @dustin": - net-mqtt < 0 # compile fail attoparsec 0.14 - - net-mqtt-lens + - net-mqtt-lens < 0 "David A Roberts @davidar": - - streamt + - streamt ^>= 0.5.0.0 "Martin Sosic @Martinsos": - - strong-path + - strong-path ^>= 1.1.1.0 "Arnaud Spiwack @aspiwack": - - linear-base + - linear-base ^>= 0.1.0 "Ollie Charles @ocharles": - - rel8 + - rel8 ^>= 1.2.1.0 "Grzegorz Milka @gregorias": - - trimdent + - trimdent ^>= 0.1.0.0 "xmonad ": - - X11 - - xmonad - - xmonad-contrib + - X11 ^>= 1.10.2 + - xmonad ^>= 0.17.0 + - xmonad-contrib ^>= 0.17.0 "Marcellus Siegburg @marcellussiegburg": - - call-alloy + - call-alloy ^>= 0.2.2.0 "Rickard Andersson @GoNZooo": - - gotyno-hs - - reddit-scrape + - gotyno-hs ^>= 1.1.0 + - reddit-scrape ^>= 0.0.1 "James Cranch @jcranch": - - tophat + - tophat ^>= 1.0.5.0 "Jan Synacek @jsynacek": - - hpqtypes - - hpqtypes-extras - - fields-json - - log-base - - unjson + - hpqtypes ^>= 1.9.2.1 + - hpqtypes-extras ^>= 1.13.1.0 + - fields-json ^>= 0.4.0.0 + - log-base ^>= 0.11.0.0 + - unjson ^>= 0.15.3 "Daan Leijen @daanx": - - isocline + - isocline ^>= 1.0.5 "Chase @TotallyNotChase": - - valida - - valida-base + - valida ^>= 1.1.0 + - valida-base ^>= 0.2.0 "Andrew Miller @A1kmm": - - polysemy-webserver + - polysemy-webserver ^>= 0.2.1.1 "Simon Shine @sshine": - - evm-opcodes + - evm-opcodes ^>= 0.1.0 "Francesco Ariis @ffaf1": - - ansi-terminal-game - - lentil - - linebreak - - timers-tick - - unidecode + - ansi-terminal-game ^>= 1.8.0.0 + - lentil ^>= 1.5.3.2 + - linebreak ^>= 1.1.0.1 + - timers-tick ^>= 0.5.0.1 + - unidecode ^>= 0.1.0.4 "Chris Smith ": - - HMock - - explainable-predicates + - HMock ^>= 0.5.0.0 + - explainable-predicates ^>= 0.1.2.0 "Tim Emiola @adetokunbo": - - hspec-tmp-proc - - tmp-proc - - wai-middleware-delegate + - hspec-tmp-proc ^>= 0.5.0.1 + - tmp-proc ^>= 0.5.0.1 + - wai-middleware-delegate ^>= 0.1.2.4 "Francisco Vallarino @fjvallarino": - - monomer - - nanovg + - monomer ^>= 1.2.0.0 + - nanovg ^>= 0.8.0.0 "Grandfathered dependencies": - - snappy - - quicklz - - Boolean - - Decimal - - Diff - - FloatingHex - - GenericPretty - - Glob - - HDBC - - HDBC-session - - HTTP - - HasBigDecimal - - HsOpenSSL - - HsYAML - - JuicyPixels-scale-dct - - MemoTrie - - NumInstances - - Only - - ParsecTools - - QuickCheck - - RSA - - Stream - - aeson-compat - - aeson-extra - - aeson-optics - - alsa-mixer - - ansi-terminal - - appar - - arrows - - asn1-encoding - - asn1-parse - - asn1-types - - assoc - - attoparsec - - auto-update - - base-noprelude - - base64-bytestring - - base64-bytestring-type - - base64-string - - bimap - - bin # req'd by boring - - binary-orphans - - binary-parser - - binary-tagged - - bindings-DSL - - bitarray - - blaze-builder - - blaze-svg - - blaze-textual - - boring - - brick - - buffer-builder - - byte-order - - byteable - - bytestring-builder - - bzlib - - c2hs - - ca-province-codes - - cabal-doctest - - call-stack - - casing - - cassava-megaparsec - - cborg - - cereal - - cereal-text - - cereal-vector - - chunked-data - - cipher-aes128 - - cipher-camellia - - cipher-des - - classy-prelude - - classy-prelude-conduit - - clientsession - - cmark-gfm - - colour - - concurrent-extra - - conduit - - config-ini - - configurator - - constraints-extras - - contravariant-extras - - control-monad-free - - control-monad-omega - - convertible - - cookie - - cpphs - - crypt-sha512 - - crypto-api - - crypto-api-tests - - crypto-cipher-tests - - crypto-cipher-types - - crypto-numbers - - crypto-pubkey - - crypto-random - - cryptohash-cryptoapi - - cryptohash-sha256 - - cryptohash-sha512 - - css-text - - csv - - cubicbezier - - data-binary-ieee754 - - data-bword - - data-checked - - data-clist - - data-default - - data-default-class - - data-default-instances-containers - - data-default-instances-dlist - - data-default-instances-old-locale - - data-dword - - data-endian - - data-inttrie - - data-lens-light - - data-memocombinators - - data-msgpack-types - - data-serializer - - data-textual - - dec - - deepseq-generics - - deferred-folds - - dense-linear-algebra - - deque - - dictionary-sharing - - direct-sqlite - - discount - - dlist - - dlist-instances - - dlist-nonempty - - double-conversion - - dual-tree - - easy-file - - easytest - - ed25519 - - edit-distance - - elm-bridge - - enclosed-exceptions - - entropy - - erf - - errors - - expiring-cache-map - - extensible-exceptions - - fail - - fast-logger - - fast-math - - fib - - file-embed - - file-embed-lzma - - filemanip - - fin - - fingertree - - fmlist - - friendly-time - - functor-classes-compat - - functor-combinators - - generic-arbitrary - - generics-sop-lens - - ghc-byteorder - - ghc-compact - - ghc-paths - - ghc-prof - - github - - groom - - groups - - hackage-security - - hashable - - haskell-gi-overloading - - haskell-lexer - - haskell-lsp-types - - haskell-src-exts - - haxl - - heap - - hex - - hmatrix - - hmatrix-gsl - - hostname - - hourglass - - hsc2hs - - hscolour - - hslogger - - hsp - - hspec-attoparsec - - hspec-contrib - - hspec-expectations - - hspec-expectations-lifted - - hspec-meta - - hspec-smallcheck - - html - - html-entities - - http-client-tls - - http-date - - http-reverse-proxy - - http-types - - http2 - - httpd-shed - - hw-json-simd - - hw-string-parse - - hxt - - hxt-charproperties - - hxt-http - - hxt-regex-xmlschema - - hxt-unicode - - iconv - - ieee754 - - indexed - - infer-license - - insert-ordered-containers - - inspection-testing - - integer-logarithms - - io-streams-haproxy - - ixset-typed - - json - - json-alt - - kleene - - language-haskell-extract - - largeword - - lattices - - lazy-csv - - lazysmallcheck - - libBF - - libyaml - - lifted-async - - lifted-base - - loch-th - - lockfree-queue - - log-base - - logging-facade - - lrucache - - lsp - - lsp-types - - lukko - - lz4 - - lzma - - lzma-clib - - managed - - math-functions - - mersenne-random - - mersenne-random-pure64 - - mfsolve - - microstache - - mmap - - mmorph - - mockery - - monad-control - - monad-logger - - monad-loops - - monad-time - - monads-tf - - mono-traversable-instances - - mono-traversable-keys - - multiset - - mwc-random - - names-th - - nanospec - - nettle - - network - - network-bsd - - network-byte-order - - network-info - - network-ip - - network-run - - network-uri < 2.7.0.0 || > 2.7.0.0 # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. - - newtype - - nicify-lib - - old-locale - - old-time - - one-liner - - operational - - optional-args - - options - - optparse-applicative - - parallel - - path-pieces - - pcg-random - - pipes-bytestring - - pipes-group - - placeholders - - poll - - polyparse - - postgresql-libpq - - postgresql-simple - - postgresql-simple-url - - pretty-hex - - pretty-show - - prettyprinter-convert-ansi-wl-pprint - - primes - - primitive - - primitive-unaligned - - process-extras - - product-isomorphic - - project-template - - protobuf - - pureMD5 - - quickcheck-instances - - quickcheck-io - - quickcheck-simple - - quickcheck-unicode - - ral # req'd by boring - - random - - random-shuffle - - range-set-list - - raw-strings-qq - - readable - - regex-applicative-text - - regex-pcre-builtin - - regex-tdfa-text - - relapse - - relational-schemas - - resolv - - resource-pool - - resourcet - - rfc5051 - - rio - - rio-orphans - - safecopy - - scientific - - securemem - - selective - - semialign - - semialign-indexed - - semialign-optics - - serialise - - servant-client-core - - servant-multipart-client - - servant-swagger-ui - - servant-swagger-ui-core - - servant-swagger-ui-redoc - - servant-yaml - - setenv - - shakespeare - - shell-escape - - silently - - simple-reflect - - simple-sendfile - - singleton-bool - - size-based - - skein - - snap-core - - some - - special-values - - splice - - split - - splitmix - - sql-words - - stateref - - statistics - - step-function - - stm-delay - - storable-complex - - streaming-cassava - - strict - - strict-list - - string-qq - - stringbuilder - - structured - - sundown - - syb - - system-fileio - - system-filepath - - tabular - - tar - - tasty-lua - - tasty-th - - tdigest - - template-haskell-compat-v0208 - - temporary - - temporary-rc - - temporary-resourcet - - test-framework - - test-framework-hunit - - test-framework-quickcheck2 - - test-framework-smallcheck - - test-framework-th - - testing-feat - - testing-type-modifiers - - text-icu - - text-latin1 - - text-postgresql - - text-printer - - text-short - - text-zipper - - tf-random - - th-extras - - th-lift-instances - - th-utilities - - these - - these-lens < 1.0.1 || > 1.0.1 - - these-optics < 1.0.1 || > 1.0.1 - - threads - - thyme - - time-locale-compat - - time-parsers - - timeit - - tls-session-manager - - token-bucket - - tonatona - - transformers-base - - tree-diff - - trivial-constraint - - true-name - - tuple-th - - type-fun - - type-hint - - uglymemo - - unbounded-delays - - unicode-collation - - universe - - universe-base - - universe-dependent-sum - - universe-instances-base - - universe-instances-extended - - universe-instances-trans - - universe-reverse-instances - - universe-some - - unix-time - - url - - utf8-light - - utf8-string - - uuid-types - - vault - - vec - - vector - - vector-algorithms - - vector-binary-instances - - vector-space - - vector-th-unbox - - vty - - wai - - wai-app-static - - wai-conduit - - wai-eventsource - - wai-handler-launch - - wai-logger - - wai-session - - warp - - wcwidth - - with-location - - wizards - - word-wrap - - word8 - - x509 - - x509-store - - x509-system - - x509-validation - - xml - - xml-conduit - - xml-conduit-writer - - xml-hamlet - - xml-types - - xss-sanitize - - yeshql-core - - yeshql-hdbc - - yesod-core - - yesod-form - - yesod-persistent - - zlib - - zlib-bindings + - snappy ^>= 0.2.0.2 + - quicklz ^>= 1.5.0.11 + - Boolean ^>= 0.2.4 + - Decimal ^>= 0.5.2 + - Diff ^>= 0.4.0 + - FloatingHex ^>= 0.5 + - GenericPretty ^>= 1.2.2 + - Glob ^>= 0.10.2 + - HDBC ^>= 2.4.0.3 + - HDBC-session ^>= 0.1.2.0 + - HTTP ^>= 4000.3.16 + - HasBigDecimal ^>= 0.1.1 + - HsOpenSSL ^>= 0.11.7.2 + - HsYAML ^>= 0.2.1.0 + - JuicyPixels-scale-dct ^>= 0.1.2 + - MemoTrie ^>= 0.6.10 + - NumInstances ^>= 1.4 + - Only ^>= 0.1 + - ParsecTools ^>= 0.0.2.0 + - QuickCheck ^>= 2.14.2 + - RSA ^>= 2.4.1 + - Stream ^>= 0.4.7.2 + - aeson-compat ^>= 0.3.10 + - aeson-extra ^>= 0.5.1 + - aeson-optics ^>= 1.1.1 + - alsa-mixer ^>= 0.3.0 + - ansi-terminal ^>= 0.11.1 + - appar ^>= 0.1.8 + - arrows ^>= 0.4.4.2 + - asn1-encoding ^>= 0.9.6 + - asn1-parse ^>= 0.9.5 + - asn1-types ^>= 0.3.4 + - assoc ^>= 1.0.2 + - attoparsec ^>= 0.14.1 + - auto-update ^>= 0.1.6 + - base-noprelude < 0 + - base64-bytestring ^>= 1.2.1.0 + - base64-bytestring-type ^>= 1.0.1 + - base64-string ^>= 0.2 + - bimap ^>= 0.4.0 + - bin ^>= 0.1.1 # req'd by boring + - binary-orphans ^>= 1.0.2 + - binary-parser ^>= 0.5.7 + - binary-tagged ^>= 0.3.1 + - bindings-DSL ^>= 1.0.25 + - bitarray ^>= 0.0.1.1 + - blaze-builder ^>= 0.4.2.2 + - blaze-svg ^>= 0.3.6.1 + - blaze-textual ^>= 0.2.2.1 + - boring ^>= 0.2 + - brick ^>= 0.65 + - buffer-builder ^>= 0.2.4.7 + - byte-order ^>= 0.1.2.0 + - byteable ^>= 0.1.1 + - bytestring-builder ^>= 0.10.8.2.0 + - bzlib ^>= 0.5.1.0 + - c2hs ^>= 0.28.8 + - ca-province-codes ^>= 1.0.0.0 + - cabal-doctest ^>= 1.0.9 + - call-stack ^>= 0.4.0 + - casing ^>= 0.1.4.1 + - cassava-megaparsec ^>= 2.0.4 + - cborg ^>= 0.2.6.0 + - cereal ^>= 0.5.8.2 + - cereal-text ^>= 0.1.0.2 + - cereal-vector ^>= 0.2.0.1 + - chunked-data ^>= 0.3.1 + - cipher-aes128 ^>= 0.7.0.6 + - cipher-camellia ^>= 0.0.2 + - cipher-des ^>= 0.0.6 + - classy-prelude ^>= 1.5.0.2 + - classy-prelude-conduit ^>= 1.5.0 + - clientsession ^>= 0.9.1.2 + - cmark-gfm ^>= 0.2.2 + - colour ^>= 2.3.6 + - concurrent-extra ^>= 0.7.0.12 + - conduit ^>= 1.3.4.2 + - config-ini ^>= 0.2.4.0 + - configurator ^>= 0.3.0.0 + - constraints-extras ^>= 0.3.2.0 + - contravariant-extras ^>= 0.3.5.3 + - control-monad-free ^>= 0.6.2 + - control-monad-omega ^>= 0.3.2 + - convertible ^>= 1.1.1.0 + - cookie ^>= 0.4.5 + - cpphs ^>= 1.20.9.1 + - crypt-sha512 ^>= 0 + - crypto-api ^>= 0.13.3 + - crypto-api-tests ^>= 0.3 + - crypto-cipher-tests ^>= 0.0.11 + - crypto-cipher-types ^>= 0.0.9 + - crypto-numbers < 0 + - crypto-pubkey < 0 + - crypto-random ^>= 0.0.9 + - cryptohash-cryptoapi ^>= 0.1.4 + - cryptohash-sha256 ^>= 0.11.102.1 + - cryptohash-sha512 ^>= 0.11.101.0 + - css-text ^>= 0.1.3.0 + - csv ^>= 0.1.2 + - cubicbezier ^>= 0.6.0.6 + - data-binary-ieee754 ^>= 0.4.4 + - data-bword ^>= 0.1.0.1 + - data-checked ^>= 0.3 + - data-clist ^>= 0.1.2.3 + - data-default ^>= 0.7.1.1 + - data-default-class ^>= 0.1.2.0 + - data-default-instances-containers ^>= 0.0.1 + - data-default-instances-dlist ^>= 0.0.1 + - data-default-instances-old-locale ^>= 0.0.1 + - data-dword ^>= 0.3.2.1 + - data-endian ^>= 0.1.1 + - data-inttrie ^>= 0.1.4 + - data-lens-light ^>= 0.1.2.3 + - data-memocombinators ^>= 0.5.1 + - data-msgpack-types ^>= 0.0.3 + - data-serializer ^>= 0.3.5 + - data-textual ^>= 0.3.0.3 + - dec ^>= 0.0.4 + - deepseq-generics ^>= 0.2.0.0 + - deferred-folds ^>= 0.9.17 + - dense-linear-algebra ^>= 0.1.0.0 + - deque ^>= 0.4.4 + - dictionary-sharing ^>= 0.1.0.0 + - direct-sqlite ^>= 2.3.26 + - discount ^>= 0.1.1 + - dlist ^>= 1.0 + - dlist-instances ^>= 0.1.1.1 + - dlist-nonempty ^>= 0.1.1 + - double-conversion ^>= 2.0.2.0 + - dual-tree ^>= 0.2.3.0 + - easy-file ^>= 0.2.2 + - easytest < 0 + - ed25519 < 0 + - edit-distance ^>= 0.2.2.1 + - elm-bridge < 0 + - enclosed-exceptions ^>= 1.0.3 + - entropy ^>= 0.4.1.7 + - erf ^>= 2.0.0.0 + - errors ^>= 2.3.0 + - expiring-cache-map ^>= 0.0.6.1 + - extensible-exceptions ^>= 0.1.1.4 + - fail ^>= 4.9.0.0 + - fast-logger ^>= 3.1.0 + - fast-math ^>= 1.0.2 + - fib < 0 + - file-embed ^>= 0.0.15.0 + - file-embed-lzma ^>= 0 + - filemanip ^>= 0.3.6.3 + - fin ^>= 0.2 + - fingertree ^>= 0.1.4.2 + - fmlist ^>= 0.9.4 + - friendly-time ^>= 0.4.1 + - functor-classes-compat ^>= 2.0.0.1 + - functor-combinators < 0 + - generic-arbitrary ^>= 0.2.0 + - generics-sop-lens ^>= 0.2.0.1 + - ghc-byteorder ^>= 4.11.0.0.10 + - ghc-compact ^>= 0.1.0.0 + - ghc-paths ^>= 0.1.0.12 + - ghc-prof ^>= 1.4.1.9 + - github ^>= 0.27 + - groom ^>= 0.1.2.1 + - groups ^>= 0.5.3 + - hackage-security < 0 + - hashable ^>= 1.3.5.0 + - haskell-gi-overloading ^>= 1.0 + - haskell-lexer ^>= 1.1 + - haskell-lsp-types ^>= 0.24.0.0 + - haskell-src-exts ^>= 1.23.1 + - haxl < 0 + - heap ^>= 1.0.4 + - hex ^>= 0.2.0 + - hmatrix ^>= 0.20.2 + - hmatrix-gsl ^>= 0.19.0.1 + - hostname ^>= 1.0 + - hourglass ^>= 0.2.12 + - hsc2hs ^>= 0.68.8 + - hscolour ^>= 1.24.4 + - hslogger ^>= 1.3.1.0 + - hsp ^>= 0.10.0 + - hspec-attoparsec ^>= 0.1.0.2 + - hspec-contrib ^>= 0.5.1 + - hspec-expectations ^>= 0.8.2 + - hspec-expectations-lifted ^>= 0.10.0 + - hspec-meta ^>= 2.7.8 + - hspec-smallcheck ^>= 0.5.2 + - html ^>= 1.0.1.2 + - html-entities ^>= 1.1.4.5 + - http-client-tls ^>= 0.3.5.3 + - http-date ^>= 0.0.11 + - http-reverse-proxy ^>= 0.6.0 + - http-types ^>= 0.12.3 + - http2 ^>= 3.0.2 + - httpd-shed ^>= 0.4.1.1 + - hw-json-simd ^>= 0.1.1.0 + - hw-string-parse ^>= 0.0.0.4 + - hxt ^>= 9.3.1.22 + - hxt-charproperties ^>= 9.5.0.0 + - hxt-http ^>= 9.1.5.2 + - hxt-regex-xmlschema ^>= 9.2.0.7 + - hxt-unicode ^>= 9.0.2.4 + - iconv ^>= 0.4.1.3 + - ieee754 ^>= 0.8.0 + - indexed ^>= 0.1.3 + - infer-license ^>= 0.2.0 + - insert-ordered-containers ^>= 0.2.5.1 + - inspection-testing ^>= 0.4.6.0 + - integer-logarithms ^>= 1.0.3.1 + - io-streams-haproxy < 0 + - ixset-typed < 0 + - json ^>= 0.10 + - json-alt < 0 + - kleene < 0 + - language-haskell-extract < 0 + - largeword ^>= 1.2.5 + - lattices ^>= 2.0.3 + - lazy-csv ^>= 0.5.1 + - lazysmallcheck ^>= 0.6 + - libBF ^>= 0.6.2 + - libyaml ^>= 0.1.2 + - lifted-async ^>= 0.10.2.2 + - lifted-base ^>= 0.2.3.12 + - loch-th ^>= 0.2.2 + - lockfree-queue ^>= 0.2.3.1 + - log-base ^>= 0.11.0.0 + - logging-facade ^>= 0.3.1 + - lrucache ^>= 1.2.0.1 + - lsp < 0 + - lsp-types < 0 + - lukko ^>= 0.1.1.3 + - lz4 ^>= 0.2.3.1 + - lzma ^>= 0.0.0.3 + - lzma-clib ^>= 5.2.2 + - managed ^>= 1.0.9 + - math-functions ^>= 0.3.4.2 + - mersenne-random ^>= 1.0.0.1 + - mersenne-random-pure64 ^>= 0.2.2.0 + - mfsolve ^>= 0.3.2.0 + - microstache ^>= 1.0.2 + - mmap ^>= 0.5.9 + - mmorph ^>= 1.1.5 + - mockery ^>= 0.3.5 + - monad-control ^>= 1.0.3.1 + - monad-logger ^>= 0.3.36 + - monad-loops ^>= 0.4.3 + - monad-time ^>= 0.3.1.0 + - monads-tf ^>= 0.1.0.3 + - mono-traversable-instances ^>= 0.1.1.0 + - mono-traversable-keys ^>= 0.2.0 + - multiset ^>= 0.3.4.3 + - mwc-random ^>= 0.15.0.2 + - names-th ^>= 0.3.0.1 + - nanospec ^>= 0.2.2 + - nettle ^>= 0.3.0 + - network ^>= 3.1.2.5 + - network-bsd ^>= 2.8.1.0 + - network-byte-order ^>= 0.1.6 + - network-info ^>= 0.2.0.10 + - network-ip ^>= 0.3.0.3 + - network-run ^>= 0.2.4 + - network-uri ^>= 2.6.4.1 && (<2.7.0.0 || >2.7.0.0) # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. + - newtype < 0 + - nicify-lib ^>= 1.0.1 + - old-locale ^>= 1.0.0.7 + - old-time ^>= 1.1.0.3 + - one-liner ^>= 2.0 + - operational < 0 + - optional-args ^>= 1.0.2 + - options ^>= 1.2.1.1 + - optparse-applicative ^>= 0.16.1.0 + - parallel ^>= 3.2.2.0 + - path-pieces ^>= 0.2.1 + - pcg-random ^>= 0.1.3.7 + - pipes-bytestring ^>= 2.1.7 + - pipes-group ^>= 1.0.12 + - placeholders ^>= 0.1 + - poll ^>= 0.0.0.2 + - polyparse ^>= 1.13 + - postgresql-libpq ^>= 0.9.4.3 + - postgresql-simple ^>= 0.6.4 + - postgresql-simple-url ^>= 0.2.1.0 + - pretty-hex ^>= 1.1 + - pretty-show ^>= 1.10 + - prettyprinter-convert-ansi-wl-pprint ^>= 1.1.2 + - primes ^>= 0.2.1.0 + - primitive ^>= 0.7.3.0 + - primitive-unaligned ^>= 0.1.1.1 + - process-extras ^>= 0.7.4 + - product-isomorphic < 0 + - project-template ^>= 0.2.1.0 + - protobuf ^>= 0.2.1.3 + - pureMD5 ^>= 2.1.4 + - quickcheck-instances ^>= 0.3.27 + - quickcheck-io ^>= 0.2.0 + - quickcheck-simple ^>= 0.1.1.1 + - quickcheck-unicode ^>= 1.0.1.0 + - ral ^>= 0.2 # req'd by boring + - random ^>= 1.2.1 + - random-shuffle ^>= 0.0.4 + - range-set-list ^>= 0.1.3.1 + - raw-strings-qq ^>= 1.1 + - readable ^>= 0.3.1 + - regex-applicative-text < 0 + - regex-pcre-builtin ^>= 0.95.2.3.8.44 + - regex-tdfa-text < 0 + - relapse < 0 + - relational-schemas < 0 + - resolv ^>= 0.1.2.0 + - resource-pool ^>= 0.2.3.2 + - resourcet ^>= 1.2.4.3 + - rfc5051 ^>= 0.2 + - rio ^>= 0.1.21.0 + - rio-orphans ^>= 0.1.2.0 + - safecopy ^>= 0.10.4.2 + - scientific ^>= 0.3.7.0 + - securemem ^>= 0.1.10 + - selective ^>= 0.4.2 + - semialign ^>= 1.2.0.1 + - semialign-indexed ^>= 1.2 + - semialign-optics ^>= 1.2 + - serialise ^>= 0.2.4.0 + - servant-client-core ^>= 0.18.3 + - servant-multipart-client ^>= 0.12.1 + - servant-swagger-ui ^>= 0.3.5.3.52.5 + - servant-swagger-ui-core ^>= 0.3.5 + - servant-swagger-ui-redoc ^>= 0.3.4.1.22.3 + - servant-yaml < 0 + - setenv ^>= 0.1.1.3 + - shakespeare ^>= 2.0.25 + - shell-escape ^>= 0.2.0 + - silently ^>= 1.2.5.2 + - simple-reflect ^>= 0.3.3 + - simple-sendfile ^>= 0.2.30 + - singleton-bool ^>= 0.1.6 + - size-based < 0 + - skein ^>= 1.0.9.4 + - snap-core < 0 + - some ^>= 1.0.3 + - special-values ^>= 0.1.0.0 + - splice ^>= 0.6.1.1 + - split ^>= 0.2.3.4 + - splitmix ^>= 0.1.0.4 + - sql-words ^>= 0.1.6.4 + - stateref ^>= 0.3 + - statistics ^>= 0.15.2.0 + - step-function ^>= 0.2 + - stm-delay ^>= 0.1.1.1 + - storable-complex ^>= 0.2.3.0 + - streaming-cassava ^>= 0.2.0.0 + - strict ^>= 0.4.0.1 + - strict-list ^>= 0.1.6 + - string-qq ^>= 0.0.4 + - stringbuilder ^>= 0.5.1 + - structured ^>= 0.1.1 + - sundown ^>= 0.6 + - syb ^>= 0.7.2.1 + - system-fileio ^>= 0.3.16.4 + - system-filepath ^>= 0.4.14 + - tabular ^>= 0.2.2.8 + - tar ^>= 0.5.1.1 + - tasty-lua ^>= 1.0.0 + - tasty-th ^>= 0.1.7 + - tdigest ^>= 0.2.1.1 + - template-haskell-compat-v0208 ^>= 0.1.7 + - temporary ^>= 1.3 + - temporary-rc ^>= 1.2.0.3 + - temporary-resourcet ^>= 0.1.0.1 + - test-framework ^>= 0.8.2.0 + - test-framework-hunit ^>= 0.3.0.2 + - test-framework-quickcheck2 ^>= 0.3.0.5 + - test-framework-smallcheck ^>= 0.2 + - test-framework-th < 0 + - testing-feat < 0 + - testing-type-modifiers ^>= 0.1.0.1 + - text-icu ^>= 0.7.1.0 + - text-latin1 ^>= 0.3.1 + - text-postgresql ^>= 0.0.3.1 + - text-printer ^>= 0.5.0.2 + - text-short ^>= 0.1.4 + - text-zipper ^>= 0.11 + - tf-random ^>= 0.5 + - th-extras ^>= 0.0.0.5 + - th-lift-instances ^>= 0.1.18 + - th-utilities ^>= 0.2.4.3 + - these ^>= 1.1.1.1 + - these-lens ^>= 1.0.1.2 && (<1.0.1 || >1.0.1) + - these-optics ^>= 1.0.1.2 && (<1.0.1 || >1.0.1) + - threads ^>= 0.5.1.6 + - thyme < 0 + - time-locale-compat ^>= 0.1.1.5 + - time-parsers ^>= 0.1.2.1 + - timeit ^>= 2.0 + - tls-session-manager ^>= 0.0.4 + - token-bucket < 0 + - tonatona < 0 + - transformers-base ^>= 0.4.6 + - tree-diff ^>= 0.2.1 + - trivial-constraint ^>= 0.7.0.0 + - true-name < 0 + - tuple-th ^>= 0.2.5 + - type-fun ^>= 0.1.3 + - type-hint ^>= 0.1 + - uglymemo ^>= 0.1.0.1 + - unbounded-delays ^>= 0.1.1.1 + - unicode-collation ^>= 0.1.3.1 + - universe ^>= 1.2.2 + - universe-base ^>= 1.1.3 + - universe-dependent-sum ^>= 1.3 + - universe-instances-base < 0 + - universe-instances-extended ^>= 1.1.3 + - universe-instances-trans < 0 + - universe-reverse-instances ^>= 1.1.1 + - universe-some ^>= 1.2.1 + - unix-time ^>= 0.4.7 + - url ^>= 2.1.3 + - utf8-light ^>= 0.4.2 + - utf8-string ^>= 1.0.2 + - uuid-types ^>= 1.0.5 + - vault ^>= 0.3.1.5 + - vec ^>= 0.4 + - vector ^>= 0.12.3.1 + - vector-algorithms ^>= 0.8.0.4 + - vector-binary-instances ^>= 0.2.5.2 + - vector-space ^>= 0.16 + - vector-th-unbox ^>= 0.2.2 + - vty ^>= 5.33 + - wai ^>= 3.2.3 + - wai-app-static ^>= 3.1.7.2 + - wai-conduit ^>= 3.0.0.4 + - wai-eventsource ^>= 3.0.0 + - wai-handler-launch ^>= 3.0.3.1 + - wai-logger ^>= 2.3.7 + - wai-session ^>= 0.3.3 + - warp ^>= 3.3.18 + - wcwidth ^>= 0.0.2 + - with-location ^>= 0.1.0 + - wizards ^>= 1.0.3 + - word-wrap ^>= 0.5 + - word8 ^>= 0.1.3 + - x509 ^>= 1.7.5 + - x509-store ^>= 1.6.7 + - x509-system ^>= 1.6.6 + - x509-validation ^>= 1.6.11 + - xml ^>= 1.3.14 + - xml-conduit ^>= 1.9.1.1 + - xml-conduit-writer ^>= 0.1.1.2 + - xml-hamlet ^>= 0.5.0.1 + - xml-types ^>= 0.3.8 + - xss-sanitize ^>= 0.3.7 + - yeshql-core ^>= 4.2.0.0 + - yeshql-hdbc < 0 + - yesod-core ^>= 1.6.21.0 + - yesod-form ^>= 1.7.0 + - yesod-persistent ^>= 1.6.0.7 + - zlib ^>= 0.6.2.3 + - zlib-bindings ^>= 0.1.1.5 # If you stop maintaining a package (either just on stackage, or # completely),you can move it here. It will be disabled if it @@ -5202,47 +5202,47 @@ packages: # # When disabling one of these packages, move it to "Removed packages". "Abandoned packages": - - Earley - - bower-json - - boxes - - cassava - - coercible-utils # 6271 - - curl - - first-class-patterns # #5965/closed - - hashing # 6271 - - hnix-store-core # 6271 - - ilist # #5965/closed - - monadlist # 6271 - - non-empty-sequence - - path # 6271 - - pattern-arrows - - relude # #5965/closed - - shellmet # #5965/closed - - slist # #5965/closed - - type-errors-pretty # #5965/closed - - typerep-map # #5965/closed - - validation-selective # #5965/closed + - Earley ^>= 0.13.0.1 + - bower-json ^>= 1.0.0.1 + - boxes ^>= 0.1.5 + - cassava ^>= 0.5.2.0 + - coercible-utils ^>= 0.1.0 # 6271 + - curl ^>= 1.3.8 + - first-class-patterns ^>= 0.3.2.5 # #5965/closed + - hashing ^>= 0.1.0.1 # 6271 + - hnix-store-core ^>= 0.5.0.0 # 6271 + - ilist ^>= 0.4.0.1 # #5965/closed + - monadlist ^>= 0.0.2 # 6271 + - non-empty-sequence ^>= 0.2.0.4 + - path ^>= 0.9.1 # 6271 + - pattern-arrows ^>= 0.0.2 + - relude ^>= 1.0.0.1 # #5965/closed + - shellmet ^>= 0.0.4.0 # #5965/closed + - slist ^>= 0.2.0.0 # #5965/closed + - type-errors-pretty ^>= 0.0.1.2 # #5965/closed + - typerep-map ^>= 0.4.0.0 # #5965/closed + - validation-selective ^>= 0.1.0.1 # #5965/closed # moved from ethercrow (#6326) - - charsetdetect-ae - - compiler-warnings - - docopt - - dynamic-state - - io-storage - - oo-prototypes - - opentelemetry - - opentelemetry-extra - - opentelemetry-wai - - opentelemetry-lightstep - - planb-token-introspection - - pointedlist - - unordered-intmap - - word-trie - - xdg-basedir - - yi-rope + - charsetdetect-ae ^>= 1.1.0.4 + - compiler-warnings ^>= 0.1.0 + - docopt ^>= 0.7.0.7 + - dynamic-state ^>= 0.3.1 + - io-storage ^>= 0.3 + - oo-prototypes ^>= 0.1.0.0 + - opentelemetry ^>= 0.7.0 + - opentelemetry-extra ^>= 0.7.0 + - opentelemetry-wai ^>= 0.7.0 + - opentelemetry-lightstep ^>= 0.7.0 + - planb-token-introspection < 0 + - pointedlist ^>= 0.6.1 + - unordered-intmap < 0 + - word-trie ^>= 0.3.0 + - xdg-basedir ^>= 0.2.2 + - yi-rope ^>= 0.11 # needed for opentelemetry - - ghc-trace-events # @maoe - - numeric-limits # Lennart Augustsson + - ghc-trace-events ^>= 0.1.2.4 # @maoe + - numeric-limits ^>= 0.1.0.0 # Lennart Augustsson # Packages without maintainers that cause issues, # this is to prevent us from including them by accident. They can @@ -5284,7 +5284,7 @@ packages: "GHC upper bounds": # Need to always match the version shipped with GHC - - Win32 == 2.10.0.0 + - Win32 ^>= 2.10.0.0 && ==2.10.0.0 # Section for packages that have been mass-disabled due to # compilation failures, e.g. after we upgrade GHC. Every package From 4729720073be9245a0350f8b419e5da5b1163c77 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 20 Dec 2021 21:36:36 +0100 Subject: [PATCH 05/14] cleanup --- etc/lts-constraints/lts-constraints.cabal | 67 +++---- etc/lts-constraints/src/BuildConstraints.hs | 66 +++++++ etc/lts-constraints/src/Main.hs | 188 ++++---------------- etc/lts-constraints/src/Snapshot.hs | 44 +++++ etc/lts-constraints/src/Types.hs | 39 ++++ 5 files changed, 222 insertions(+), 182 deletions(-) create mode 100644 etc/lts-constraints/src/BuildConstraints.hs create mode 100644 etc/lts-constraints/src/Snapshot.hs create mode 100644 etc/lts-constraints/src/Types.hs diff --git a/etc/lts-constraints/lts-constraints.cabal b/etc/lts-constraints/lts-constraints.cabal index 9af3b1d0c..9edf39a72 100644 --- a/etc/lts-constraints/lts-constraints.cabal +++ b/etc/lts-constraints/lts-constraints.cabal @@ -1,34 +1,41 @@ -name: lts-constraints -version: 0.1.0.0 +name: lts-constraints +version: 0.1.0.0 + -- synopsis: -- description: -homepage: https://github.com/githubuser/lts-constraints#readme -license: BSD3 -license-file: LICENSE -author: Author name here -maintainer: example@example.com -copyright: 2021 Author name here -category: Web -build-type: Simple -cabal-version: >=1.10 -extra-source-files: README.md +homepage: https://github.com/githubuser/lts-constraints#readme +license: BSD3 +license-file: LICENSE +author: Author name here +maintainer: example@example.com +copyright: 2021 Author name here +category: Web +build-type: Simple +cabal-version: >=1.10 +extra-source-files: README.md executable lts-constraints - ghc-options: -Wall - hs-source-dirs: src - main-is: Main.hs - default-language: Haskell2010 - build-depends: base >= 4.7 && < 5 - , pantry - , Cabal - , rio - , containers - , parsec - , mtl - , aeson - , yaml - , split - , string-conversions - , safe - , mtl - , transformers + ghc-options: -Wall + hs-source-dirs: src + main-is: Main.hs + default-language: Haskell2010 + other-modules: + BuildConstraints + Snapshot + Types + + build-depends: + aeson + , base >=4.7 && <5 + , Cabal + , containers + , mtl + , pantry + , parsec + , rio + , safe + , split + , string-conversions + , text + , transformers + , yaml diff --git a/etc/lts-constraints/src/BuildConstraints.hs b/etc/lts-constraints/src/BuildConstraints.hs new file mode 100644 index 000000000..90e2ce6db --- /dev/null +++ b/etc/lts-constraints/src/BuildConstraints.hs @@ -0,0 +1,66 @@ +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE NamedFieldPuns #-} +{-# OPTIONS -Wno-name-shadowing #-} +module BuildConstraints where + +import Control.Arrow +import Data.Char +import Data.Maybe +import Data.String.Conversions +import Distribution.Text (display, simpleParse) +import Distribution.Types.VersionRange (VersionRange, normaliseVersionRange, anyVersion, intersectVersionRanges, majorBoundVersion, earlierVersion) +import RIO.Map (Map) +import RIO.Text (Text) +import qualified Data.Text as T +import qualified Distribution.Types.Version as C (mkVersion) +import qualified RIO.Map as M + +import Types + +takeDropWhile :: (Char -> Bool) -> Text -> Maybe (Text, Text) +takeDropWhile p s = if T.null a then Nothing else Just (a, b) + where + (a, b) = takeDropWhile_ p s + +takeDropWhile_ :: (Char -> Bool) -> Text -> (Text, Text) +takeDropWhile_ p s = (T.takeWhile p s, T.dropWhile p s) + +takePrefix :: Text -> Text -> Maybe (Text, Text) +takePrefix p s = + if p `T.isPrefixOf` s + then Just (p, T.drop (T.length p) s) + else Nothing + +takePackageName :: Text -> Maybe (PackageName, Text) +takePackageName = fmap (first mkPackageName) . takeDropWhile (/= ' ') + +maybeTakeVersionRange :: Text -> (Maybe VersionRange, Text) +maybeTakeVersionRange s = (simpleParse $ cs range, comment) + where + (range, comment) = takeDropWhile_ (/= '#') s + +parsePackageDecl :: Text -> Maybe PackageDecl +parsePackageDecl s = do + (prefix, s0) <- takePrefix " - " s + (package, s1) <- takePackageName s0 + let (range, s2) = maybeTakeVersionRange s1 + pure PackageDecl { prefix, package, range = fromMaybe anyVersion range, suffix = s2 } + +handlePackage :: Map PackageName Version -> PackageDecl -> Text +handlePackage snap PackageDecl { prefix, package, range, suffix } = + prefix <> (cs . display . unPackageName) package <> rng <> suff + where + suff :: Text + suff = if T.null suffix then suffix else " " <> suffix + + rng = case (majorBoundVersion . unVersion <$> snapshotVersion) `intersect` range of + Just rng | rng == anyVersion -> "" + Nothing -> "" + Just rng -> (" " <>) . (\(a,b) -> a <> " " <> b) . takeDropWhile_ (not . isDigit) . cs $ display rng + snapshotVersion = M.lookup package snap + + intersect Nothing _ = Just . earlierVersion $ C.mkVersion [0] -- package not in snapshot + intersect (Just a) b = + if b == anyVersion -- drop `&& -any` + then Just a + else Just $ normaliseVersionRange (intersectVersionRanges a b) diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs index 2c54fb283..8b22e7e36 100644 --- a/etc/lts-constraints/src/Main.hs +++ b/etc/lts-constraints/src/Main.hs @@ -1,30 +1,20 @@ -{-# LANGUAGE TypeApplications #-} -{-# LANGUAGE DeriveAnyClass #-} -{-# LANGUAGE DeriveGeneric #-} -{-# LANGUAGE NamedFieldPuns #-} -{-# LANGUAGE TupleSections #-} +{-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE OverloadedStrings #-} {-# OPTIONS -Wno-name-shadowing #-} -module Main where +module Main (main) where -import Control.Arrow import Control.Monad -import Control.Monad.State -import Data.Aeson -import Data.Char -import Data.List -import Data.List.Split -import Data.Maybe -import Data.String.Conversions -import Distribution.Text (display, simpleParse) -import Distribution.Types.VersionRange (VersionRange, normaliseVersionRange, anyVersion, intersectVersionRanges, majorBoundVersion, earlierVersion) -import GHC.Generics -import RIO () +import Control.Monad.IO.Class (MonadIO (..)) +import Control.Monad.State (MonadState (..), runStateT) +import Data.Text (Text) import RIO.Map (Map) -import System.IO -import qualified Data.Yaml as Y -import qualified Distribution.Types.PackageName as C (PackageName, mkPackageName) -import qualified Distribution.Types.Version as C (Version, mkVersion) -import qualified RIO.Map as M +import System.IO (openFile, IOMode (..), hFlush, hClose) +import qualified Data.Text as T +import qualified Data.Text.IO as T + +import BuildConstraints (parsePackageDecl, handlePackage) +import Snapshot (snapshotMap, loadSnapshot) +import Types (PackageName, Version) src :: String src = "../../build-constraints.yaml" @@ -32,143 +22,37 @@ src = "../../build-constraints.yaml" target :: String target = "../../lts-build-constraints.yaml" -newtype PackageName = PackageName { unPackageName :: C.PackageName } - deriving (Eq, Generic, Ord, FromJSONKey, Show) - -instance FromJSON PackageName where - parseJSON = fmap (PackageName . C.mkPackageName) . parseJSON - -newtype Version = Version { unVersion :: C.Version } - deriving (Generic, Show) - -instance FromJSON Version where - parseJSON v = do - s <- parseJSON @ String v - case simpleParse s of - Nothing -> fail "Invalid Version" - Just v -> pure $ Version v - - -data PackageDecl = PackageDecl - { prefix :: String - , package :: PackageName - , range :: VersionRange - , suffix :: String - } - -takeDropWhile :: (Char -> Bool) -> String -> Maybe (String, String) -takeDropWhile p s = if null a then Nothing else Just (a, b) - where - (a, b) = takeDropWhile_ p s - -takeDropWhile_ :: (Char -> Bool) -> String -> (String, String) -takeDropWhile_ p s = (takeWhile p s, dropWhile p s) - -takePrefix :: String -> String -> Maybe (String, String) -takePrefix p s = - if p `isPrefixOf` s - then Just (p, drop (length p) s) - else Nothing - -takePackageName :: String -> Maybe (PackageName, String) -takePackageName = fmap (first (PackageName . C.mkPackageName)) . takeDropWhile (/= ' ') - -maybeTakeVersionRange :: String -> (Maybe VersionRange, String) -maybeTakeVersionRange s = (simpleParse range, comment) - where - (range, comment) = takeDropWhile_ (/= '#') s - -p_packageDecl :: String -> Maybe PackageDecl -p_packageDecl s = do - (prefix, s') <- takePrefix " - " s - (package, s'') <- takePackageName s' - let (range, s''') = maybeTakeVersionRange s'' - pure PackageDecl { prefix, package, range = fromMaybe anyVersion range, suffix = s''' } - -handlePackage :: Map PackageName Version -> PackageDecl -> String -handlePackage snap PackageDecl { prefix, package, range, suffix } = - prefix ++ display (unPackageName package) ++ rng ++ suff - where - suff = if null suffix then suffix else (' ': suffix) - - - rng = case intersect (majorBoundVersion . unVersion <$> snapshotVersion) range of - Just rngI | rngI == anyVersion -> "" - Nothing -> "" - Just rngI -> (' ' :) . (\(a,b) -> a <> " " <> b) . takeDropWhile_ (not . isDigit) $ display rngI - snapshotVersion = M.lookup package snap - - intersect Nothing _ = Just . earlierVersion $ C.mkVersion [0] -- package not in snapshot - intersect (Just a) b = - if b == anyVersion -- drop `&& -any` - then Just a - else Just $ normaliseVersionRange (intersectVersionRanges a b) - - -data Snapshot = Snapshot - { packages :: [SnapshotPackage] - } deriving (FromJSON, Generic, Show) - -data SnapshotPackage = SnapshotPackage - { hackage :: PackageVersion - } deriving (FromJSON, Generic, Show) - -data PackageVersion = PackageVersion - { pvPackage :: PackageName - , pvVersion :: Version - } deriving Show - -instance FromJSON PackageVersion where - parseJSON s0 = do - s1 <- parseJSON @ String s0 - let s2 = takeWhile (/= '@') s1 - let xs = splitOn "-" s2 - pvPackage <- parseJSON $ String $ cs $ intercalate "-" (init xs) - pvVersion <- parseJSON $ String $ cs $ last xs - pure PackageVersion { pvPackage, pvVersion } - - -snapshotMap :: Snapshot -> Map PackageName Version -snapshotMap = M.fromList . map ((pvPackage &&& pvVersion) . hackage) . packages - -loadSnapshot :: FilePath -> IO (Either Y.ParseException Snapshot) -loadSnapshot f = Y.decodeFileEither f - data State = LookingForLibBounds | ProcessingLibBounds | Done -io :: MonadIO m => IO a -> m a -io = liftIO - main :: IO () main = do - snapshot_ <- loadSnapshot "../../nightly-2012-12-11.yaml" - let snapshot = case snapshot_ of - Left err -> error $ show err - Right r -> r - let map = snapshotMap snapshot + map <- snapshotMap <$> loadSnapshot "../../nightly-2012-12-11.yaml" output <- openFile target WriteMode - let putLine = io . hPutStrLn output - lines <- lines <$> readFile src + let putLine = liftIO . T.hPutStrLn output + lines <- T.lines <$> T.readFile src void $ flip runStateT LookingForLibBounds $ do - forM_ lines $ \line -> do - st <- get - case st of - LookingForLibBounds -> do - when (line == "packages:") $ - put ProcessingLibBounds - putLine line - ProcessingLibBounds -> - if line == "# end of packages" - then do - put Done - putLine line - else - case p_packageDecl line of - Just p -> putLine $ handlePackage map p - Nothing -> putLine line - Done -> putLine line + forM_ lines $ putLine <=< processLine map hFlush output hClose output + +processLine :: MonadState State m => Map PackageName Version -> Text -> m Text +processLine map line = do + st <- get + case st of + LookingForLibBounds -> do + when (line == "packages:") $ + put ProcessingLibBounds + pure line + ProcessingLibBounds -> + if line == "# end of packages" + then do + put Done + pure line + else + case parsePackageDecl line of + Just p -> pure $ handlePackage map p + Nothing -> pure line + Done -> pure line diff --git a/etc/lts-constraints/src/Snapshot.hs b/etc/lts-constraints/src/Snapshot.hs new file mode 100644 index 000000000..d2c98ecdd --- /dev/null +++ b/etc/lts-constraints/src/Snapshot.hs @@ -0,0 +1,44 @@ +{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE DeriveAnyClass #-} +{-# LANGUAGE NamedFieldPuns #-} +{-# LANGUAGE OverloadedStrings #-} +{-# OPTIONS -Wno-name-shadowing #-} +module Snapshot (loadSnapshot, snapshotMap) where + +import Control.Arrow +import Data.Aeson +import GHC.Generics +import RIO.Map (Map) +import qualified Data.Text as T +import qualified Data.Yaml as Y +import qualified RIO.Map as M + +import Types + +data Snapshot = Snapshot + { packages :: [SnapshotPackage] + } deriving (FromJSON, Generic, Show) + +data SnapshotPackage = SnapshotPackage + { hackage :: PackageVersion + } deriving (FromJSON, Generic, Show) + +data PackageVersion = PackageVersion + { pvPackage :: PackageName + , pvVersion :: Version + } deriving Show + +instance FromJSON PackageVersion where + parseJSON s0 = do + s1 <- parseJSON s0 + let s2 = T.takeWhile (/= '@') s1 + let xs = T.splitOn "-" s2 + pvPackage <- parseJSON $ String $ T.intercalate "-" (init xs) + pvVersion <- parseJSON $ String $ last xs + pure PackageVersion { pvPackage, pvVersion } + +snapshotMap :: Snapshot -> Map PackageName Version +snapshotMap = M.fromList . map ((pvPackage &&& pvVersion) . hackage) . packages + +loadSnapshot :: FilePath -> IO Snapshot +loadSnapshot = fmap (either (error . show) id) . Y.decodeFileEither diff --git a/etc/lts-constraints/src/Types.hs b/etc/lts-constraints/src/Types.hs new file mode 100644 index 000000000..4e14ad9bb --- /dev/null +++ b/etc/lts-constraints/src/Types.hs @@ -0,0 +1,39 @@ +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE DeriveAnyClass #-} +{-# LANGUAGE DeriveGeneric #-} +{-# OPTIONS -Wno-name-shadowing #-} +module Types where + +import Control.Monad +import Data.Aeson +import Data.String.Conversions.Monomorphic +import Distribution.Text (simpleParse) +import Distribution.Types.VersionRange (VersionRange) +import GHC.Generics +import RIO.Text (Text) +import qualified Distribution.Types.PackageName as C (PackageName, mkPackageName) +import qualified Distribution.Types.Version as C (Version) + +newtype PackageName = PackageName { unPackageName :: C.PackageName } + deriving (Eq, Generic, Ord, FromJSONKey, Show) + +mkPackageName :: Text -> PackageName +mkPackageName = PackageName . C.mkPackageName . fromStrictText + +instance FromJSON PackageName where + parseJSON = fmap (PackageName . C.mkPackageName) . parseJSON + +newtype Version = Version { unVersion :: C.Version } + deriving (Generic, Show) + +instance FromJSON Version where + parseJSON = + maybe (fail "Invalid Version") (pure . Version) . simpleParse <=< parseJSON + + +data PackageDecl = PackageDecl + { prefix :: Text + , package :: PackageName + , range :: VersionRange + , suffix :: Text + } From 7d952e6ad4956f132b597875162d193d54741b71 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 15 Dec 2023 17:30:12 +0100 Subject: [PATCH 06/14] Update for newer GHC and newer nightly snapshot --- etc/lts-constraints/cabal.project | 6 +- etc/lts-constraints/src/Main.hs | 2 +- etc/lts-constraints/stack.yaml | 2 +- etc/lts-constraints/stack.yaml.lock | 8 +- lts-build-constraints.yaml | 9508 ++++++++++++++++----------- 5 files changed, 5505 insertions(+), 4021 deletions(-) diff --git a/etc/lts-constraints/cabal.project b/etc/lts-constraints/cabal.project index a432e71c3..37f48c838 100644 --- a/etc/lts-constraints/cabal.project +++ b/etc/lts-constraints/cabal.project @@ -1,6 +1,2 @@ -source-repository-package - type: git - location: git://github.com/commercialhaskell/pantry.git - packages: ./lts-constraints.cabal -with-compiler: ghc-8.10.7 +with-compiler: ghc-9.4.7 diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs index 8b22e7e36..b46080472 100644 --- a/etc/lts-constraints/src/Main.hs +++ b/etc/lts-constraints/src/Main.hs @@ -29,7 +29,7 @@ data State main :: IO () main = do - map <- snapshotMap <$> loadSnapshot "../../nightly-2012-12-11.yaml" + map <- snapshotMap <$> loadSnapshot "../../../stackage-snapshots/nightly/2023/12/15.yaml" output <- openFile target WriteMode let putLine = liftIO . T.hPutStrLn output lines <- T.lines <$> T.readFile src diff --git a/etc/lts-constraints/stack.yaml b/etc/lts-constraints/stack.yaml index ef03d7c00..f62d238d8 100644 --- a/etc/lts-constraints/stack.yaml +++ b/etc/lts-constraints/stack.yaml @@ -1,4 +1,4 @@ resolver: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/24.yaml packages: - . diff --git a/etc/lts-constraints/stack.yaml.lock b/etc/lts-constraints/stack.yaml.lock index cc26a0084..16308d5de 100644 --- a/etc/lts-constraints/stack.yaml.lock +++ b/etc/lts-constraints/stack.yaml.lock @@ -6,8 +6,8 @@ packages: [] snapshots: - completed: - size: 586296 - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml - sha256: 63539429076b7ebbab6daa7656cfb079393bf644971156dc349d7c0453694ac2 + sha256: abcc4a65c15c7c2313f1a87f01bfd4d910516e1930b99653eef1d2d006515916 + size: 640074 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/24.yaml original: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/24.yaml diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml index 4cd0d7938..74a5eb314 100644 --- a/lts-build-constraints.yaml +++ b/lts-build-constraints.yaml @@ -1,6 +1,6 @@ -ghc-major-version: "9.0" +ghc-major-version: "9.6" # new curator is supposed to use exact GHC version -ghc-version: "9.0.1" +ghc-version: "9.6.3" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -10,63 +10,141 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Dominick Samperi @djsamperi": + - mathlist ^>= 0.2.0.0 + + "Alexey Tochin @alexeytochin": + - simple-expr ^>= 0.1.1.0 + - inf-backprop ^>= 0.1.0.2 + + "Felix Springer @jumper149": + - deriving-trans ^>= 0.9.1.0 + - monad-control-identity ^>= 0.2.0.0 + - wai-control ^>= 0.2.0.0 + + "Eric Schorn @eric-schorn": + - pasta-curves < 0 + + "Martin Bednar @martin-bednar": + - wai-middleware-bearer ^>= 1.0.3 + + "Xy Ren @re-xyr": + - cleff ^>= 0.3.3.0 + - cleff-plugin < 0 + - rec-smallarray < 0 + + "Janus Troelsen @ysangkok": + - ListZipper ^>= 1.2.0.2 + - timezone-olson-th ^>= 0.1.0.11 + + "Paul Burns @onslaughtq": + - rollbar ^>= 1.1.3 + + "David Burkett @Disco-Dave": + - katip-wai ^>= 0.1.2.2 + "Lukas Epple @sternenseemann": - socket ^>= 0.8.3.0 - - spacecookie ^>= 1.0.0.1 + - spacecookie ^>= 1.0.0.2 - gopher-proxy ^>= 0.1.1.3 - - filepath-bytestring ^>= 1.4.2.1.9 && <1.4.2.1.10 # https://github.com/commercialhaskell/stackage/issues/6355 + - filepath-bytestring ^>= 1.4.2.1.13 - download-curl ^>= 0.1.4 - - cabal2nix ^>= 2.18.0 - - distribution-nixpkgs ^>= 1.6.2 - - hackage-db ^>= 2.1.2 + - cabal2nix ^>= 2.19.1 + - distribution-nixpkgs ^>= 1.7.0.1 + - hackage-db ^>= 2.1.3 - language-nix ^>= 2.2.0 - - jailbreak-cabal ^>= 1.3.5 + - jailbreak-cabal ^>= 1.4 "Profpatsch @Profpatsch": - - error ^>= 0.2.1.2 + - error ^>= 1.0.0.0 - yarn-lock ^>= 0.6.5 "James Sully @sullyj3": - - buttplug-hs-core ^>= 0.1.0.1 + - buttplug-hs-core < 0 "Manuel Schneckenreither @schnecki": - - experimenter ^>= 0.1.0.12 - - api-maker ^>= 0.1.0.0 - - easy-logger ^>= 0.1.0.4 + - experimenter < 0 # 0.1.0.14 https://github.com/schnecki/experimenter/issues/1 + - api-maker < 0 # 0.1.0.6 https://github.com/schnecki/api-maker/issues/1 + - easy-logger ^>= 0.1.0.7 + - welford-online-mean-variance ^>= 0.2.0.0 "Kamil Dworakowski @luntain": - - error-or ^>= 0.2.0.0 + - error-or ^>= 0.3.0 - error-or-utils ^>= 0.2.0 - inbox ^>= 0.2.0 - - mock-time ^>= 0.1.0 + - mock-time < 0 # 0.1.0 compile fail https://github.com/luntain/error-or-bundle/issues/4 "Liang-Ting Chen @L-TChen": - - geniplate-mirror ^>= 0.7.8 + - geniplate-mirror < 0 "Andreas Abel @andreasabel": - - BNFC ^>= 2.9.3 - - Sit ^>= 0.2021.1.18 - - STMonadTrans ^>= 0.4.6 - - Agda ^>= 2.6.2.1 - - agda2lagda ^>= 0.2021.6.1 - - cabal-clean ^>= 0.1.20210924 - - ListLike ^>= 4.7.6 - - haskell-src ^>= 1.0.3.1 - - fix-whitespace ^>= 0.0.7 - - hs-tags ^>= 0.1.5.2 - - goldplate ^>= 0.2.0 - - hasktags ^>= 0.72.0 + - Agda ^>= 2.6.4.1 + - agda2lagda ^>= 0.2023.6.9 + - BNFC ^>= 2.9.5 + - cabal-clean ^>= 0.2.20230609 + - fix-whitespace ^>= 0.1 + - goldplate ^>= 0.2.1.1 + - hackage-cli ^>= 0.1.0.1 + - hasktags ^>= 0.73.0 + - hs-tags < 0 + - java-adt ^>= 1.0.20231204 + - Sit ^>= 0.2023.8.3 + + - alex ^>= 3.4.0.1 && >3.2.7 + - happy ^>= 1.20.1.1 && (<1.21.0 || >1.21.0) + - haskell-src ^>= 1.0.4 + - ListLike ^>= 4.7.8.2 + - MissingH ^>= 1.6.0.1 - regex-base ^>= 0.94.0.2 - regex-compat ^>= 0.95.2.1 - regex-pcre ^>= 0.95.0.0 - regex-posix ^>= 0.96.0.1 - regex-posix-clib ^>= 2.7 - - regex-tdfa ^>= 1.3.1.1 - - java-adt ^>= 0.2018.11.4 - - tasty-silver ^>= 3.3.1 + - regex-tdfa ^>= 1.3.2.2 + - shelly ^>= 1.12.1 + - STMonadTrans ^>= 0.4.7 + - tasty-silver ^>= 3.3.1.3 + - acid-state ^>= 0.16.1.3 + - rss ^>= 3000.2.0.7 + - brotli ^>= 0.0.0.1 + - brotli-streams ^>= 0.0.0.0 + - xor ^>= 0.0.1.2 + - http-io-streams ^>= 0.1.6.3 + - github ^>= 0.29 + - microaeson ^>= 0.1.0.1 + - cassava ^>= 0.5.3.0 + - ini ^>= 0.4.2 + - cryptohash-md5 ^>= 0.11.101.0 + - cryptohash-sha1 ^>= 0.11.101.0 + - cryptohash-sha256 ^>= 0.11.102.1 + - cryptohash-sha512 ^>= 0.11.102.0 + - newtype ^>= 0.2.2.0 + - resolv ^>= 0.2.0.2 + - blaze-builder ^>= 0.4.2.3 + - netrc ^>= 0.2.0.0 + - equivalence ^>= 0.4.1 + + # Some "grandfathered dependencies" I took over because I contributed to them at some time. + # Feel free to snatch them from me! + - regex-pcre-builtin ^>= 0.95.2.3.8.44 + - test-framework ^>= 0.8.2.0 + - c2hs ^>= 0.28.8 + - cabal-doctest ^>= 1.0.9 + - hackage-security ^>= 0.6.2.3 + - haskell-lexer ^>= 1.1.1 + - lifted-async ^>= 0.10.2.5 + - polyparse ^>= 1.13 + - silently ^>= 1.2.5.3 + - text-icu ^>= 0.8.0.4 + - vector-binary-instances ^>= 0.2.5.2 + - map-syntax ^>= 0.3 + - heist ^>= 1.1.1.2 + - snap ^>= 1.1.3.3 + - unix-compat ^>= 0.7.1 + "Diogo Biazus ": - - hasql-notifications ^>= 0.2.0.0 + - hasql-notifications ^>= 0.2.0.6 "David James @davjam": - MapWith < 0 @@ -81,28 +159,36 @@ packages: - ghc-clippy-plugin < 0 "Daniel Rolls @danielrolls": - - byte-count-reader ^>= 0.10.1.7 + - byte-count-reader ^>= 0.10.1.10 + - shellify ^>= 0.11.0.0 "Allan Lukwago @epicallan": - servant-errors < 0 "Christian Charukiewicz @charukiewicz": - - isbn ^>= 1.1.0.2 + - isbn ^>= 1.1.0.4 "Koz Ross @kozross": - medea < 0 + "Jappie Klooster @jappeace": + - yesod-middleware-csp ^>= 1.2.0 + - persistent-lens ^>= 1.0.0 + - mail-pool < 0 + - keter ^>= 2.1.2 + - zxcvbn-hs ^>= 0.3.6 + "Marcin RzeĆșnicki @marcin-rzeznicki": - hspec-tables < 0 - - stackcollapse-ghc ^>= 0.0.1.4 + - stackcollapse-ghc < 0 - libjwt-typed < 0 "Mauricio Fierro @mauriciofierrom": - dialogflow-fulfillment < 0 "Mihai Giurgeanu @mihaigiurgeanu": - - sqlcli ^>= 0.2.2.0 - - sqlcli-odbc ^>= 0.2.0.1 + - sqlcli < 0 + - sqlcli-odbc < 0 # not a maintainer - logging ^>= 3.0.5 @@ -110,21 +196,20 @@ packages: - plaid ^>= 0.1.0.4 "Geoffrey Mainland @mainland": - - exception-mtl ^>= 0.4.0.1 - - exception-transformers ^>= 0.4.0.11 + - exception-mtl ^>= 0.4.0.2 + - exception-transformers ^>= 0.4.0.12 - mainland-pretty ^>= 0.7.1 - - ref-fd ^>= 0.5 + - ref-fd ^>= 0.5.0.1 - ref-tf ^>= 0.5.0.1 - - srcloc ^>= 0.6 + - srcloc ^>= 0.6.0.1 - symbol ^>= 0.2.4 "Patrick Bahr ": - - equivalence ^>= 0.3.5 - - compdata < 0 - - Rattus ^>= 0.5.0.1 + - compdata ^>= 0.13.1 + - Rattus ^>= 0.5.1.1 "Rob Stewart @robstewart57": - - gitlab-haskell ^>= 0.3.2.0 + - gitlab-haskell < 0 "Callan McGill @callanmcgill": - perfect-vector-shuffle < 0 @@ -133,12 +218,12 @@ packages: - generic-monoid ^>= 0.1.0.1 "Tobias Reinhart @TobiReinhart": - - sparse-tensor ^>= 0.2.1.5 + - sparse-tensor < 0 "Stephan Schiffels @stschiff": - - sequence-formats < 0 + - sequence-formats ^>= 1.8.0.0 - pipes-ordered-zip ^>= 1.2.1 - - sequenceTools < 0 + - sequenceTools ^>= 1.5.3.1 "YongJoon Joe @QuietJoon": - doldol ^>= 0.4.1.2 @@ -149,33 +234,33 @@ packages: - lens-regex-pcre ^>= 1.1.0.0 - lens-csv ^>= 0.1.1.0 - selections ^>= 0.3.0.0 - - slick ^>= 1.1.2.2 + - slick ^>= 1.2.1.0 - unipatterns ^>= 0.0.0.0 "Emily Pillmore @topos": - - base16 ^>= 0.3.0.2 - - base16-lens ^>= 0.1.3.2 - - base32 ^>= 0.2.1.0 - - base32-lens ^>= 0.1.1.1 - - base64 ^>= 0.4.2.3 - - base64-lens ^>= 0.3.1 - - lens-process ^>= 0.4.0.0 - - microlens-process ^>= 0.2.0.2 - - nonempty-vector ^>= 0.2.1.0 - - smash ^>= 0.1.2 - - smash-aeson ^>= 0.1.0.0 - - smash-microlens ^>= 0.1.0.0 + - base16 ^>= 1.0 + - base16-lens < 0 + - base32 ^>= 0.4 + - base32-lens < 0 + - base64 ^>= 0.4.2.4 + - base64-lens < 0 + - lens-process < 0 + - microlens-process < 0 + - nonempty-vector ^>= 0.2.3 + - smash < 0 + - smash-aeson < 0 + - smash-microlens < 0 - smash-lens < 0 - - strict-tuple < 0 + - strict-tuple ^>= 0.1.5.3 - strict-tuple-lens < 0 "Matthieu Monsch @mtth": - flags-applicative ^>= 0.1.0.3 - more-containers ^>= 0.2.2.2 - - tracing ^>= 0.0.7.2 + - tracing ^>= 0.0.7.3 "Robert Vollmert @robx": - - configurator-pg < 0 + - configurator-pg ^>= 0.2.9 - postgrest < 0 "Sandy Maguire @isovector": @@ -184,30 +269,26 @@ packages: - prospect ^>= 0.1.0.0 - do-notation ^>= 0.1.0.2 - unagi-chan ^>= 0.4.1.4 - - type-errors ^>= 0.2.0.0 + - type-errors ^>= 0.2.0.2 "Matej Niznik @TheMatten": - - polysemy ^>= 1.6.0.0 - - polysemy-plugin ^>= 0.4.1.1 - - polysemy-zoo < 0 - loopbreaker < 0 "William Yao @williamyaoh": - - string-interpolate ^>= 0.3.1.1 + - string-interpolate ^>= 0.3.2.1 "Roel van Dijk @roelvandijk": - - terminal-progress-bar ^>= 0.4.1 + - terminal-progress-bar ^>= 0.4.2 "Marek Fajkus @turboMaCk": - wai-enforce-https ^>= 1.0.0.0 - - aeson-combinators ^>= 0.0.5.0 + - aeson-combinators ^>= 0.1.1.0 "Fernando Freire @dogonthehorizon": - [] - # - hal # #4288/closed + - hal ^>= 1.0.0.1 "Nathan Fairhurst @iamfromspace": - - hal ^>= 0.4.8 + - hal ^>= 1.0.0.1 "Daniel Taskoff @dtaskoff": - hlibcpuid ^>= 0.2.0 @@ -215,10 +296,10 @@ packages: - system-info ^>= 0.5.2 "Dzianis Kabanau @kobargh": - - template-toolkit ^>= 0.1.1.0 + - template-toolkit < 0 "Christopher Davenport @ChristopherDavenport": - - nonemptymap ^>= 0.0.6.0 + - nonemptymap < 0 - hinfo ^>= 0.0.3.0 "Joerg Winter @clojj": @@ -237,11 +318,12 @@ packages: "Preetham Gujjula @pgujjula": - modular ^>= 0.1.0.8 - list-predicate ^>= 0.1.0.1 + - primecount ^>= 0.1.0.1 "Guillaume Bouchard @guibou": - - krank ^>= 0.2.3 + - krank < 0 # 0.3.0 https://github.com/guibou/krank/issues/97 - pretty-terminal ^>= 0.1.0.0 - - PyF ^>= 0.10.1.0 + - PyF ^>= 0.11.2.1 "Erik Schnetter @eschnett": - mpi-hs ^>= 0.7.2.0 @@ -252,10 +334,10 @@ packages: - control-dsl ^>= 0.2.1.3 "Laurent P. RenĂ© de Cotret @LaurentRDC": - - pandoc-plot ^>= 1.3.0 + - pandoc-plot ^>= 1.8.0 "Andrew Newman @andrewfnewman": - - geojson ^>= 4.0.2 + - geojson ^>= 4.1.1 "Mateusz Karbowy @obszczymucha": - parsec-numbers ^>= 0.1.0 @@ -270,50 +352,53 @@ packages: - valor ^>= 1.0.0.0 "Scott N. Walck @walck": - - cyclotomic ^>= 1.1.1 - - learn-physics ^>= 0.6.5 - - TypeCompose ^>= 0.9.14 - - # @ghorn - - not-gloss ^>= 0.7.7.0 - - spatial-math ^>= 0.5.0.1 + - cyclotomic ^>= 1.1.2 + - learn-physics ^>= 0.6.6 + - SpatialMath ^>= 0.2.7.1 + - Vis ^>= 0.7.7.0 + - LPFP ^>= 1.1.1 + - LPFP-core ^>= 1.1.1 "Phil de Joux @philderbeast": - siggy-chardust ^>= 1.0.0 - - detour-via-sci < 0 - - hpack-dhall ^>= 0.5.3 + - detour-via-sci ^>= 1.0.0 + - hpack-dhall < 0 "Matthew Ahrens @mpahrens": - forkable-monad ^>= 0.2.0.3 - - butter ^>= 0.1.0.6 + - butter < 0 # 0.1.0.6 text 1.2.5.0 exports `elem` https://github.com/System-Indystress/Butter/issues/4 "Iris Ward @AdituV": - typenums ^>= 0.1.4 "Jude Taylor @pikajude": - - th-printf ^>= 0.7 + - th-printf ^>= 0.8 "Christian Marie @christian-marie": - - git-vogue < 0 + - git-vogue < 0 # 0.3.0.2 compile fail "Manuel BĂ€renz @turion": - - dunai ^>= 0.8.1 - - rhine < 0 - - rhine-gloss < 0 - - finite-typelits ^>= 0.1.4.2 - - essence-of-live-coding ^>= 0.2.5 - - essence-of-live-coding-gloss ^>= 0.2.5 - - essence-of-live-coding-pulse ^>= 0.2.5 + - dunai < 0 # 0.12.0 9.6 compile fail https://github.com/ivanperez-keera/dunai/discussions/368 + - essence-of-live-coding < 0 # 0.2.7 compile fail https://github.com/turion/essence-of-live-coding/issues/107 + - essence-of-live-coding-gloss < 0 + - essence-of-live-coding-pulse < 0 - essence-of-live-coding-quickcheck < 0 + - essence-of-live-coding-warp < 0 + - finite-typelits ^>= 0.1.6.0 + - has-transformers ^>= 0.1.0.4 + - monad-schedule ^>= 0.1.2.1 - pulse-simple ^>= 0.1.14 - - simple-affine-space ^>= 0.1.1 + - rhine < 0 + - rhine-gloss < 0 + - simple-affine-space ^>= 0.2.1 + - time-domain ^>= 0.1.0.2 "Paul Johnson @PaulJohnson": - geodetics ^>= 0.1.2 - Ranged-sets ^>= 0.4.0 "Travis Athougies @tathougies": - - beam-core < 0 + - beam-core ^>= 0.10.1.0 - beam-migrate < 0 - beam-mysql < 0 - beam-postgres < 0 @@ -329,20 +414,24 @@ packages: - buchhaltung < 0 "Tom McLaughlin @thomasjm": - - aeson-typescript ^>= 0.3.0.1 - - fsnotify ^>= 0.3.0.1 - - sandwich ^>= 0.1.0.9 - - sandwich-quickcheck ^>= 0.1.0.6 - - sandwich-slack ^>= 0.1.0.6 - - sandwich-webdriver < 0 - - slack-progressbar ^>= 0.1.0.1 + - aeson-typescript ^>= 0.6.1.0 + - fsnotify ^>= 0.4.1.0 + - myers-diff ^>= 0.3.0.0 + - sandwich ^>= 0.2.1.0 + - sandwich-hedgehog ^>= 0.1.3.0 + - sandwich-quickcheck ^>= 0.1.0.7 + - sandwich-slack ^>= 0.1.2.0 + - sandwich-webdriver ^>= 0.2.3.1 + - slack-progressbar < 0 # 0.1.0.1 https://github.com/codedownio/slack-progressbar/issues/1 + - system-linux-proc ^>= 0.1.1.1 # @erikd + - webdriver ^>= 0.12.0.0 "Paulo Tanaka @paulot": # on behalf of Bryan O'Sullivan @bos: - zstd ^>= 0.1.3.0 "Jacek Galowicz @tfc": - - hamtsolo ^>= 1.0.3 + - hamtsolo ^>= 1.0.4 "Ferdinand van Walree @Ferdinand-vW": - tuple-sop ^>= 0.3.1.0 @@ -350,29 +439,26 @@ packages: - sessiontypes-distributed < 0 "Jacob Thomas Errington @tsani": - - servant-github-webhook ^>= 0.4.2.0 - - pushbullet-types ^>= 0.4.1.0 + - servant-github-webhook < 0 + - pushbullet-types < 0 "Theodore Lief Gannon @tejon": - aeson-yak ^>= 0.1.1.3 - safe-foldable ^>= 0.1.0.0 - "Jaro Reinders @Noughtmare": - - haskell-lsp-client < 0 - "Florian Knupfer @knupfer": - type-of-html ^>= 1.6.2.0 - type-of-html-static ^>= 0.1.0.2 - - chronos-bench < 0 + - chronos-bench ^>= 0.2.0.2 "Mikolaj Konarski @Mikolaj": - - sdl2-ttf ^>= 2.1.2 - - enummapset ^>= 0.6.0.3 - - assert-failure ^>= 0.1.2.5 - - minimorph ^>= 0.3.0.0 - - miniutter ^>= 0.5.1.1 - - LambdaHack ^>= 0.10.3.0 - - Allure ^>= 0.10.3.0 + - sdl2-ttf ^>= 2.1.3 + - enummapset ^>= 0.7.2.0 + - assert-failure ^>= 0.1.3.0 + - minimorph ^>= 0.3.0.1 + - miniutter ^>= 0.5.1.2 + - LambdaHack ^>= 0.11.0.1 + - Allure ^>= 0.11.0.0 "JĂŒrgen Keck @j-keck": - wreq-stringless ^>= 0.5.9.1 @@ -381,7 +467,7 @@ packages: - FPretty < 0 "Maarten Faddegon @MaartenFaddegon": - - libgraph ^>= 1.14 + - libgraph < 0 - Hoed < 0 "Agustin Camino @acamino": @@ -391,14 +477,13 @@ packages: - qchas ^>= 1.1.0.1 "Patrick Pelletier @ppelleti": - - mercury-api ^>= 0.1.0.2 - - normalization-insensitive ^>= 2.0.2 + - mercury-api < 0 + - normalization-insensitive < 0 "Jacob Stanley @jacobstanley": - - hedgehog ^>= 1.0.5 + - hedgehog ^>= 1.4 - hedgehog-quickcheck ^>= 0.1.1 - - transformers-bifunctors ^>= 0.1 - - unix-compat ^>= 0.5.3 + - transformers-bifunctors < 0 "Walter Schulze @awalterschulze": - katydid < 0 @@ -412,24 +497,24 @@ packages: - openexr-write ^>= 0.1.0.2 "Pasqualino Assini @tittoassini": - # - zm - - flat ^>= 0.4.4 - - model ^>= 0.5 + - zm < 0 + - flat ^>= 0.6 + - model < 0 "Jose Iborra @pepeiborra": - # - arrowp-qq # build failure https://github.com/pepeiborra/arrowp/issues/8 + - arrowp-qq < 0 - haskell-src-exts-util ^>= 0.2.5 - - hexml-lens < 0 + - hexml-lens ^>= 0.2.2 - hp2pretty ^>= 0.10 - floatshow ^>= 0.2.4 - - ghc-check ^>= 0.5.0.6 + - ghc-check ^>= 0.5.0.8 "Roman Gonzalez @roman": - componentm ^>= 0.0.0.2 - componentm-devel ^>= 0.0.0.2 - teardown ^>= 0.5.0.1 - - etc ^>= 0.4.1.0 - - capataz ^>= 0.2.1.0 + - etc < 0 + - capataz < 0 "Richard Cook @rcook": - hidden-char < 0 @@ -445,183 +530,206 @@ packages: - accelerate-fftw < 0 - accelerate-fourier < 0 - accelerate-utility < 0 - - align-audio ^>= 0.0 + - align-audio ^>= 0.0.0.1 - alsa-core ^>= 0.5.0.1 - alsa-pcm ^>= 0.6.1.1 - - alsa-seq ^>= 0.6.0.8 - - apportionment ^>= 0.0.0.3 - - audacity ^>= 0.0.2 + - alsa-seq ^>= 0.6.0.9 + - apportionment ^>= 0.0.0.4 + - audacity ^>= 0.0.2.1 - battleship-combinatorics ^>= 0.0.1 - - bibtex ^>= 0.1.0.6 - - board-games ^>= 0.3 + - bibtex ^>= 0.1.0.7 + - board-games ^>= 0.4 + - boomwhacker ^>= 0.0.1 - buffer-pipe ^>= 0.0 - - cabal-flatpak ^>= 0.1.0.2 + - cabal-flatpak < 0 + - cabal-sort ^>= 0.1.2 - calendar-recycling ^>= 0.0.0.1 - - checksum ^>= 0.0 - - combinatorial ^>= 0.1.0.1 - - comfort-graph ^>= 0.0.3.1 - - comfort-array ^>= 0.5.1 + - checksum ^>= 0.0.0.1 + - coinor-clp ^>= 0.0.0.1 + - combinatorial ^>= 0.1.1 + - comfort-graph ^>= 0.0.4 + - comfort-array ^>= 0.5.3 - comfort-array-shape ^>= 0.0 - - comfort-fftw ^>= 0.0 + - comfort-fftw ^>= 0.0.0.1 + - comfort-glpk ^>= 0.1 - concurrent-split ^>= 0.0.1.1 - cutter ^>= 0.0 - - data-accessor ^>= 0.2.3 - - data-accessor-mtl ^>= 0.2.0.4 + - data-accessor ^>= 0.2.3.1 + - data-accessor-mtl ^>= 0.2.0.5 - data-accessor-template < 0 - - data-accessor-transformers ^>= 0.2.1.7 - - data-ref ^>= 0.0.2 + - data-accessor-transformers ^>= 0.2.1.8 + - data-ref ^>= 0.1 - doctest-exitcode-stdio ^>= 0.0 - - doctest-extract ^>= 0.1 + - doctest-extract ^>= 0.1.1.1 - doctest-lib ^>= 0.1 - - dsp ^>= 0.2.5.1 + - dsp ^>= 0.2.5.2 - enumset ^>= 0.1 - - equal-files ^>= 0.0.5.3 - - event-list ^>= 0.1.2 - - explicit-exception ^>= 0.1.10 - - fixed-length ^>= 0.2.3 + - equal-files ^>= 0.0.5.4 + - event-list ^>= 0.1.2.1 + - explicit-exception ^>= 0.2 + - fixed-length ^>= 0.2.3.1 - fftw-ffi ^>= 0.1 - - gnuplot ^>= 0.5.6.1 - - group-by-date ^>= 0.1.0.4 + - ghostscript-parallel ^>= 0.0 + - gnuplot ^>= 0.5.7 + - group-by-date ^>= 0.1.0.5 - guarded-allocation ^>= 0.0.1 - - iff ^>= 0.0.6 + - iff ^>= 0.0.6.1 - interpolation ^>= 0.1.1.2 - - jack ^>= 0.7.2 + - jack ^>= 0.7.2.2 - latex ^>= 0.1.0.4 - lazyio ^>= 0.1.0.4 + - linear-programming ^>= 0.0.0.1 - markov-chain ^>= 0.0.3.4 - - midi ^>= 0.2.2.2 + - midi ^>= 0.2.2.4 - midi-alsa ^>= 0.2.1 - - midi-music-box < 0 + - midi-music-box ^>= 0.0.1.2 - mbox-utility ^>= 0.0.3.1 - - med-module ^>= 0.1.2.1 + - med-module ^>= 0.1.3 - monoid-transformer ^>= 0.0.4 - - non-empty ^>= 0.3.3 + - non-empty ^>= 0.3.5 - non-negative ^>= 0.1.2 - - numeric-prelude ^>= 0.4.3.3 + - numeric-prelude ^>= 0.4.4 - numeric-quest ^>= 0.2.0.2 - - pathtype ^>= 0.8.1.1 - - pooled-io ^>= 0.0.2.2 - - probability ^>= 0.2.7 - - quickcheck-transformer ^>= 0.3.1.1 - - sample-frame ^>= 0.0.3 - - sample-frame-np ^>= 0.0.4.1 + - ods2csv ^>= 0.1 + - pathtype ^>= 0.8.1.2 + - pooled-io ^>= 0.0.2.3 + - probability ^>= 0.2.8 + - quickcheck-transformer ^>= 0.3.1.2 + - reactive-banana-bunch ^>= 1.0.0.1 + - reactive-midyim ^>= 0.4.1.1 + - reactive-balsa ^>= 0.4.0.1 + - reactive-jack ^>= 0.4.1.2 + - sample-frame ^>= 0.0.4 + - sample-frame-np ^>= 0.0.5 - set-cover ^>= 0.1.1 - shell-utility ^>= 0.1 - sound-collage ^>= 0.2.1 - - sox ^>= 0.2.3.1 - - soxlib ^>= 0.0.3.1 + - sox ^>= 0.2.3.2 + - soxlib ^>= 0.0.3.2 - split-record ^>= 0.1.1.4 - - spreadsheet ^>= 0.1.3.8 + - spreadsheet ^>= 0.1.3.10 - stm-split ^>= 0.0.2.1 - - storable-record ^>= 0.0.6 - - storable-tuple ^>= 0.0.3.3 - - storablevector ^>= 0.2.13.1 - - synthesizer-core ^>= 0.8.2.1 - - synthesizer-dimensional ^>= 0.8.1 + - storable-record ^>= 0.0.7 + - storable-tuple ^>= 0.1 + - storablevector ^>= 0.2.13.2 + - synthesizer-core ^>= 0.8.3 + - synthesizer-dimensional ^>= 0.8.1.1 - synthesizer-alsa ^>= 0.5.0.6 - - synthesizer-midi ^>= 0.6.1.1 - - tagchup ^>= 0.4.1.1 + - synthesizer-midi ^>= 0.6.1.2 + - tagchup ^>= 0.4.1.2 - tfp ^>= 1.0.2 - unicode ^>= 0.0.1.1 - - unique-logic ^>= 0.4 + - unique-logic ^>= 0.4.0.1 - unique-logic-tf ^>= 0.5.1 - unsafe ^>= 0.0 - - utility-ht ^>= 0.0.16 - - xml-basic ^>= 0.1.3.1 + - utility-ht ^>= 0.0.17 + - wraxml ^>= 0.5 + - xml-basic ^>= 0.1.3.2 - youtube ^>= 0.2.1.1 - prelude-compat ^>= 0.0.0.2 - fft ^>= 0.1.8.7 - carray ^>= 0.1.6.8 - - lapack-ffi-tools ^>= 0.1.2.1 + - lapack-ffi-tools ^>= 0.1.3.1 - netlib-ffi ^>= 0.1.1 - blas-ffi ^>= 0.1 - lapack-ffi ^>= 0.0.3 - netlib-carray ^>= 0.1 - - blas-carray ^>= 0.1.0.1 + - blas-carray ^>= 0.1.0.2 - lapack-carray ^>= 0.0.3 - netlib-comfort-array ^>= 0.0.0.2 - blas-comfort-array ^>= 0.0.0.3 - lapack-comfort-array ^>= 0.0.1 - - lapack ^>= 0.5 - - lapack-hmatrix ^>= 0.0.0.1 - - hmm-lapack ^>= 0.5 + - comfort-blas ^>= 0.0.1 + - lapack ^>= 0.5.1 + - lapack-hmatrix ^>= 0.0.0.2 + - hmm-lapack ^>= 0.5.0.1 - magico ^>= 0.0.2.3 - resistor-cube ^>= 0.0.1.4 - linear-circuit ^>= 0.1.0.4 # Not a maintainer - - cabal-plan ^>= 0.7.2.1 - - topograph ^>= 1.0.0.1 + - cabal-plan ^>= 0.7.3.0 + - topograph ^>= 1.0.0.2 - ix-shapable ^>= 0.1.0 - - hsshellscript ^>= 3.5.0 + - hsshellscript < 0 # 3.5.0 compile fail https://github.com/commercialhaskell/stackage/issues/6762 - hyper ^>= 0.2.1.1 - - storable-endian ^>= 0.2.6 + - storable-endian ^>= 0.2.6.1 + - glpk-headers ^>= 0.5.1 + - derive-storable ^>= 0.3.1.0 "Jeremy Barisch-Rooney @barischrooneyj": - - threepenny-gui-flexbox < 0 + - threepenny-gui-flexbox < 0 # 0.4.2 compile fail https://github.com/jerbaroo/threepenny-gui-flexbox/issues/5 "Romain Edelmann @redelmann": - distribution < 0 "Nikita Tchayka @nickseagull": - ramus ^>= 0.1.2 - - require ^>= 0.4.11 + - require < 0 - tintin < 0 - # - aws-lambda-haskell-runtime # https://github.com/commercialhaskell/stackage/pull/4299 + - aws-lambda-haskell-runtime < 0 "Simon Jakobi @sjakobi": - - threepenny-gui < 0 - - newtype-generics ^>= 0.6.1 + - threepenny-gui ^>= 0.9.4.0 + - newtype-generics ^>= 0.6.2 - bsb-http-chunked ^>= 0.0.0.4 - hspec-parsec ^>= 0 - - checkers ^>= 0.5.6 - - unordered-containers ^>= 0.2.16.0 + - checkers ^>= 0.6.0 + - unordered-containers ^>= 0.2.19.1 - prettyprinter ^>= 1.7.1 - prettyprinter-ansi-terminal ^>= 1.1.3 - prettyprinter-compat-wl-pprint ^>= 1.0.1 - prettyprinter-compat-ansi-wl-pprint ^>= 1.0.2 - prettyprinter-compat-annotated-wl-pprint ^>= 1.1 - - prettyprinter-convert-ansi-wl-pprint ^>= 1.1.2 + - prettyprinter-convert-ansi-wl-pprint < 0 + - HsYAML ^>= 0.2.1.3 + - HsYAML-aeson ^>= 0.2.0.1 "Joe M @joe9": - - logger-thread < 0 + - logger-thread ^>= 0.1.0.2 - text-generic-pretty < 0 "Li-yao Xia @Lysxia": - ap-normalize ^>= 0.1.0.1 - boltzmann-samplers ^>= 0.1.1.0 + - diff-loc ^>= 0.1.0.0 - first-class-families ^>= 0.8.0.1 - - generic-data ^>= 0.9.2.1 + - fcf-family ^>= 0.2.0.0 + - generic-data ^>= 1.1.0.0 - generic-data-surgery ^>= 0.3.0.0 - - generic-functor ^>= 0.2.0.0 + - generic-functor ^>= 1.1.0.0 - generic-random ^>= 1.5.0.1 - scanf ^>= 0.1.0.0 - show-combinators ^>= 0.2.0.0 - - type-map < 0 - - quickcheck-higherorder ^>= 0.1.0.0 + - type-map ^>= 0.1.7.0 + - quickcheck-higherorder ^>= 0.1.0.1 - test-fun ^>= 0.1.0.0 + "Solomon Bothwell @solomon-b": + - monoidal-functors ^>= 0.2.3.0 + "Tobias Dammers @tdammers": - - ginger < 0 + - ginger ^>= 0.10.5.2 - yeshql < 0 "Yair Chuchem @yairchu": - generic-constraints ^>= 1.1.1.1 + - git-mediate ^>= 1.0.9 - List ^>= 0.6.2 - ListTree ^>= 0.2.3 "Marco Zocca @ocramz": - - ad-delcont ^>= 0.3.0.0 - - sparse-linear-algebra ^>= 0.3.1 + - ad-delcont ^>= 0.5.0.0 + - sparse-linear-algebra < 0 - depq ^>= 0.4.2 - matrix-market-attoparsec ^>= 0.1.1.3 - - splitmix-distributions ^>= 0.9.0.0 + - splitmix-distributions ^>= 1.0.0 - rp-tree ^>= 0.7.1 - - xeno ^>= 0.4.3 - - bytestring-mmap ^>= 0.2.2 # required by xeno - - datasets ^>= 0.4.0 + - xeno ^>= 0.6 + - bytestring-mmap < 0 # 0.2.2 required by xeno # not ghc 9.6 ready + - datasets < 0 - lucid-extras ^>= 0.2.2 - mnist-idx-conduit ^>= 0.4.0.0 - - rigel-viz ^>= 0.2.0.0 + - rigel-viz < 0 "Joseph Canero @caneroj1": - sqlite-simple-errors < 0 @@ -629,7 +737,7 @@ packages: - stm-supply ^>= 0.2.0.0 - filter-logger ^>= 0.6.0.0 - tile ^>= 0.3.0.0 - - mbtiles ^>= 0.6.0.0 + - mbtiles < 0 # 0.6.0.0 compile fail "James M.C. Haver II @mchaver": - quickcheck-arbitrary-adt ^>= 0.3.1.0 @@ -638,13 +746,13 @@ packages: "Winter Han @winterland1989": - if ^>= 0.1.0.0 - - tcp-streams ^>= 1.0.1.1 + - tcp-streams < 0 # 1.0.1.1 https://github.com/didi-FP/tcp-streams/issues/9 - tcp-streams-openssl < 0 - - wire-streams ^>= 0.1.1.0 - - binary-parsers ^>= 0.2.4.0 + - wire-streams < 0 + - binary-parsers < 0 - binary-ieee754 ^>= 0.1.0.0 - word24 < 0 - - mysql-haskell < 0 + - mysql-haskell ^>= 1.1.3 - mysql-haskell-openssl < 0 - data-has ^>= 0.4.0.0 - unboxed-ref ^>= 0.4.0.0 @@ -653,25 +761,30 @@ packages: - bench-show < 0 - monad-recorder < 0 - packcheck ^>= 0.6.0 - - streamly ^>= 0.8.1.1 - - unicode-transforms ^>= 0.3.8 && <0.4 # https://github.com/commercialhaskell/stackage/issues/6337 + - streamly ^>= 0.10.0 + - streamly-core ^>= 0.2.0 + - unicode-transforms ^>= 0.4.0.1 - xls < 0 + "Ranjeet Ranjan @rnjtranjan": + - streamly-process < 0 + - streamly-examples < 0 + "Pranay Sashank @pranaysashank": - fusion-plugin-types ^>= 0.1.0 - - fusion-plugin ^>= 0.2.3 + - fusion-plugin ^>= 0.2.7 "Adithya Kumar @adithyaov": - - unicode-data ^>= 0.1.0.1 + - unicode-data ^>= 0.4.0.1 "Aleksey Uimanov @s9gf4ult": - # - postgresql-query # build errors - - hreader ^>= 1.1.0 + - postgresql-query ^>= 3.10.0 + - hreader ^>= 1.1.1 - hset ^>= 2.2.0 - base58-bytestring ^>= 0.1.0 "Aaron Taylor @hamsterdam": - - kawhi ^>= 0.3.0 + - kawhi < 0 "Schell Scivally @schell": - renderable ^>= 0.2.0.1 @@ -684,26 +797,26 @@ packages: - symengine ^>= 0.1.2.0 "alpheccar @alpheccar": - - HPDF ^>= 1.5.3 + - HPDF ^>= 1.6.2 "Dmitry Bogatov @iu-guest": - once ^>= 0.4 - mbug < 0 "David Johnson @dmjio": - - miso ^>= 1.7.1.0 - - envy ^>= 2.1.0.0 + - miso ^>= 1.8.3.0 + - envy ^>= 2.1.2.0 - s3-signer ^>= 0.5.0.0 - google-translate < 0 - hackernews < 0 - ses-html ^>= 0.4.0.0 - - stripe-haskell ^>= 2.6.2 - - stripe-http-client ^>= 2.6.2 - - stripe-core ^>= 2.6.2 + - stripe-haskell < 0 + - stripe-http-client < 0 + - stripe-core < 0 - stripe-tests < 0 "Piotr Mlodawski @pmlodawski": - - error-util < 0 # MonadFail + - error-util < 0 # 0.0.1.2 MonadFail - signal ^>= 0.1.0.4 "Michael Snoyman michael@snoyman.com @snoyberg": @@ -711,76 +824,74 @@ packages: - case-insensitive ^>= 1.2.1.0 - classy-prelude-yesod ^>= 1.5.0 - conduit-combinators ^>= 1.3.0 - - conduit-extra ^>= 1.3.5 + - conduit-extra ^>= 1.3.6 - hebrew-time ^>= 0.1.2 - markdown ^>= 0.1.17.5 - mime-mail ^>= 0.5.1 - mime-mail-ses ^>= 0.4.3 - - mime-types ^>= 0.1.0.9 - - network-conduit-tls ^>= 1.3.2 - - persistent ^>= 2.13.2.1 - - persistent-mysql ^>= 2.13.0.2 - - persistent-postgresql ^>= 2.13.2.1 - - persistent-sqlite ^>= 2.13.0.3 + - mime-types ^>= 0.1.2.0 + - network-conduit-tls ^>= 1.4.0 + - persistent ^>= 2.14.6.0 + - persistent-mysql ^>= 2.13.1.5 + - persistent-postgresql ^>= 2.13.6.1 + - persistent-sqlite ^>= 2.13.3.0 - persistent-template ^>= 2.12.0.0 - - persistent-test ^>= 2.13.0.3 - - store ^>= 0.7.14 - - wai-extra ^>= 3.1.7 + - persistent-test ^>= 2.13.1.3 + - store ^>= 0.7.18 + - wai-extra ^>= 3.1.13.0 - wai-websockets ^>= 3.0.1.2 - - warp-tls ^>= 3.3.2 - - yesod ^>= 1.6.1.2 - - authenticate ^>= 1.3.5 + - warp-tls ^>= 3.4.3 + - yesod ^>= 1.6.2.1 + - authenticate ^>= 1.3.5.2 - html-conduit ^>= 1.3.2.2 - - yesod-auth < 0 + - yesod-auth ^>= 1.6.11.2 - authenticate-oauth ^>= 1.7 - - yesod-bin ^>= 1.6.1 + - yesod-bin < 0 # 1.6.2.2 https://github.com/yesodweb/yesod/issues/1804 - yesod-eventsource ^>= 1.6.0.1 - yesod-gitrepo ^>= 0.3.0 - yesod-newsfeed ^>= 1.7.0.0 - yesod-sitemap ^>= 1.6.0 - yesod-static ^>= 1.6.1.0 - - yesod-test ^>= 1.6.12 + - yesod-test ^>= 1.6.16 - yesod-websockets ^>= 0.3.0.3 - cereal-conduit ^>= 0.8.0 - binary-conduit ^>= 1.3.1 - - lzma-conduit ^>= 1.2.2 - - mutable-containers ^>= 0.3.4 + - lzma-conduit < 0 + - mutable-containers ^>= 0.3.4.1 - hpc-coveralls < 0 - monad-unlift < 0 - monad-unlift-ref < 0 - - yaml ^>= 0.11.7.0 + - yaml ^>= 0.11.11.2 - servius ^>= 1.2.3.0 - cryptonite-conduit ^>= 0.2.2 - - streaming-commons ^>= 0.2.2.3 + - streaming-commons ^>= 0.2.2.6 - - alex ^>= 3.2.6 - - async ^>= 2.2.4 + - async ^>= 2.2.5 - base16-bytestring ^>= 1.0.2.0 - - csv-conduit ^>= 0.7.3.0 + - csv-conduit < 0 - executable-hash ^>= 0.2.0.4 - executable-path ^>= 0.0.3.1 - foreign-store ^>= 0.2 - - formatting ^>= 7.1.3 - - gtk2hs-buildtools ^>= 0.13.8.2 - - happy ^>= 1.20.0 - - hybrid-vectors ^>= 0.2.2 + - formatting ^>= 7.2.0 + - gtk2hs-buildtools ^>= 0.13.10.0 + - hybrid-vectors ^>= 0.2.4 - indents ^>= 0.5.0.1 - - language-c ^>= 0.9.0.1 - - persistent-mongoDB ^>= 2.13.0.0 + - language-c ^>= 0.9.2 + - persistent-mongoDB ^>= 2.13.0.1 - pretty-class ^>= 1.0.1.1 - - th-expand-syns ^>= 0.4.9.0 - - th-lift ^>= 0.8.2 + - th-expand-syns ^>= 0.4.11.0 + - th-lift ^>= 0.8.4 - quickcheck-assertions ^>= 0.3.0 - wai-middleware-crowd < 0 - monad-logger-json ^>= 0.1.0.0 - - safe-exceptions ^>= 0.1.7.2 - - fsnotify-conduit ^>= 0.1.1.1 - - pid1 ^>= 0.1.3.0 - - typed-process ^>= 0.2.8.0 + - safe-exceptions ^>= 0.1.7.4 + - fsnotify-conduit < 0 # 0.1.1.1 compile fail https://github.com/commercialhaskell/stackage/issues/6768 + - pid1 ^>= 0.1.3.1 + - typed-process ^>= 0.2.11.1 - say ^>= 0.1.0.1 - - unliftio-core ^>= 0.2.0.1 - - unliftio ^>= 0.2.20 + - unliftio-core ^>= 0.2.1.0 + - unliftio ^>= 0.2.25.0 - hinotify ^>= 0.4.1 - hfsevents ^>= 0.1.6 @@ -788,22 +899,22 @@ packages: - windns ^>= 0.1.0.1 - mono-traversable ^>= 1.0.15.3 - - http-client ^>= 0.7.9 - - http-conduit ^>= 2.3.8 - - githash ^>= 0.1.6.2 - - - time-manager ^>= 0.0.0 - - pantry < 0 - - mega-sdist < 0 - - http-download ^>= 0.2.0.0 - - hi-file-parser ^>= 0.1.2.0 - - rio-prettyprint ^>= 0.1.1.0 + - http-client ^>= 0.7.15 + - http-conduit ^>= 2.3.8.3 + - githash ^>= 0.1.7.0 + + - time-manager ^>= 0.0.1 + - pantry ^>= 0.9.3.1 + - mega-sdist ^>= 0.4.3.0 + - http-download ^>= 0.2.1.0 + - hi-file-parser ^>= 0.1.6.0 + - rio-prettyprint ^>= 0.1.7.0 - packdeps < 0 "Brandon Barker @bbarker": - unexceptionalio ^>= 0.5.1 - - unexceptionalio-trans ^>= 0.5.1 - - zio ^>= 0.1.0.2 + - unexceptionalio-trans < 0 # 0.5.1 # fails to compile https://github.com/singpolyma/unexceptionalio-trans/issues/2 + - zio < 0 "Omari Norman @massysett": - rainbow ^>= 0.34.2.2 @@ -815,50 +926,50 @@ packages: - squeather ^>= 0.8.0.0 "Neil Mitchell @ndmitchell": - - hlint ^>= 3.3.4 - - hoogle ^>= 5.0.18.2 - - shake ^>= 0.19.6 + - hlint ^>= 3.6.1 + - hoogle < 0 + - shake ^>= 0.19.7 - tagsoup ^>= 0.14.8 - - cmdargs ^>= 0.10.21 + - cmdargs ^>= 0.10.22 - safe ^>= 0.3.19 - uniplate ^>= 1.6.13 - nsis ^>= 0.3.3 - js-jquery ^>= 3.3.1 - js-flot ^>= 0.8.3 - js-dgtable ^>= 0.5.2 - - extra ^>= 1.7.10 - - ghcid ^>= 0.8.7 + - extra ^>= 1.7.14 + - ghcid ^>= 0.8.9 - hexml ^>= 0.3.4 - - profiterole ^>= 0.1 - - record-dot-preprocessor ^>= 0.2.13 - - filepattern ^>= 0.1.2 + - profiterole < 0 + - record-dot-preprocessor < 0 + - filepattern ^>= 0.1.3 - record-hasfield ^>= 1.0 - rattle ^>= 0.2 - - hie-bios ^>= 0.8.0 - fuzzy ^>= 0.1.0.1 - "Digital Asset ": - - ghc-lib ^>= 9.0.1.20210324 - - ghc-lib-parser ^>= 9.0.1.20210324 + "Digital Asset @shayne-fletcher": + - ghc-lib ^>= 9.6.3.20231121 + - ghc-lib-parser ^>= 9.6.3.20231121 - "Shayne Fletcher ": - - ghc-lib-parser-ex ^>= 9.0.0.4 + "Shayne Fletcher @shayne-fletcher": + - ghc-lib-parser-ex ^>= 9.6.0.2 "Karl Ostmo @kostmo": - - perfect-hash-generator ^>= 0.2.0.6 + - perfect-hash-generator ^>= 1.0.0 "Alan Zimmerman @alanz": - - ghc-exactprint ^>= 0.6.4 && <1.1 # needs GHC 9.2 #6177/closed - - haskell-lsp < 0 - - hjsmin ^>= 0.2.0.4 + - ghc-exactprint ^>= 1.7.0.1 + - hjsmin ^>= 0.2.1 - language-javascript ^>= 0.7.1.0 - Strafunski-StrategyLib < 0 - "Luke Lau @bubba": - - lsp-test < 0 + "Michael Peyton Jones ": + - lsp-types ^>= 2.1.0.0 + - lsp ^>= 2.3.0.0 + - lsp-test ^>= 0.16.0.1 "Alfredo Di Napoli @adinapoli": - - mandrill ^>= 0.5.5.0 + - mandrill ^>= 0.5.7.0 "Jon Schoning @jonschoning": - pinboard < 0 @@ -866,40 +977,40 @@ packages: "Jasper Van der Jeugt @jaspervdj": - blaze-html ^>= 0.9.1.2 - - blaze-markup ^>= 0.8.2.8 - - stylish-haskell < 0 - - profiteur ^>= 0.4.6.0 - - psqueues ^>= 0.2.7.3 + - blaze-markup ^>= 0.8.3.0 + - stylish-haskell ^>= 0.14.5.0 + - profiteur < 0 + - psqueues ^>= 0.2.8.0 - websockets ^>= 0.12.7.3 - - websockets-snap < 0 + - websockets-snap ^>= 0.10.3.1 "Jasper Van der Jeugt @jaspervdj & Alexander Batischev @Minoru": - - hakyll ^>= 4.15.1.0 + - hakyll ^>= 4.16.2.0 "Sibi Prabakaran @psibi": - download ^>= 0.3.2.7 - textlocal ^>= 0.1.0.5 - shell-conduit ^>= 5.0.0 - tldr ^>= 0.9.2 - - fb ^>= 2.1.1 + - fb ^>= 2.1.1.1 - yesod-fb ^>= 0.6.1 - - yesod-auth-fb < 0 + - yesod-auth-fb < 0 # 1.1.0.1 compile fail - hourglass-orphans ^>= 0.1.0.0 - wai-slack-middleware ^>= 0.2.0 - sysinfo ^>= 0.1.1 - - xmonad-extras ^>= 0.17.0 - - shelly ^>= 1.9.0 - - persistent-redis ^>= 2.13.0.0 - - fakedata ^>= 1.0.1 + - xmonad-extras < 0 + - persistent-redis ^>= 2.13.0.1 + - fakedata ^>= 1.0.3 - fakedata-parser ^>= 0.1.0.0 - fakedata-quickcheck ^>= 0.2.0 - - streamly-bytestring ^>= 0.1.4 + - streamly-bytestring < 0 + - crypton-conduit ^>= 0.2.3 - "haskell-openal": + "haskell-openal @svenpanne": - OpenAL ^>= 1.7.0.5 - ALUT ^>= 2.4.0.3 - "haskell-opengl": + "haskell-opengl @svenpanne": - OpenGL ^>= 3.0.3.0 - GLURaw ^>= 2.0.0.5 - GLUT ^>= 2.7.0.16 @@ -912,10 +1023,10 @@ packages: - uuid ^>= 1.3.15 "Philipp Middendorf @pmiddend": - - clock ^>= 0.8.2 + - clock ^>= 0.8.4 "Stefan Wehr @skogsbaer": - - HTF ^>= 0.14.0.6 + - HTF ^>= 0.15.0.1 - xmlgen ^>= 0.6.2.2 - stm-stats < 0 - large-hashable < 0 @@ -924,239 +1035,247 @@ packages: - parseargs ^>= 0.2.0.9 "Vincent Hanquez @vincenthz": - - basement ^>= 0.0.12 + - basement ^>= 0.0.16 - bytedump ^>= 1.0 - cipher-aes ^>= 0.2.11 - cipher-rc4 ^>= 0.1.4 - - connection ^>= 0.3.1 - - cprng-aes ^>= 0.6.1 + - connection < 0 + - cprng-aes < 0 - cpu ^>= 0.1.2 - cryptocipher < 0 - cryptohash ^>= 0.11.9 - - cryptonite ^>= 0.29 + - cryptonite ^>= 0.30 - cryptonite-openssl ^>= 0.7 - crypto-pubkey-types ^>= 0.4.3 - crypto-random-api ^>= 0.2.0 - - foundation ^>= 0.0.26.1 + - foundation ^>= 0.0.30 - gauge ^>= 0.2.5 - - git < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build + - git < 0 # 0.3.0 compile fail MonadFail - hit < 0 - - memory ^>= 0.16.0 + - memory ^>= 0.18.0 - language-java ^>= 0.2.9 - - libgit ^>= 0.3.1 + - libgit < 0 # 0.3.1 compile fail https://github.com/vincenthz/hs-libgit/issues/7 - pem ^>= 0.2.4 - - siphash ^>= 1.0.3 + - siphash < 0 - socks ^>= 0.6.1 - tasty-kat ^>= 0.0.3 - - tls ^>= 1.5.5 - - tls-debug ^>= 0.4.8 - - vhd < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - xenstore < 0 # sClose not in scope + - tls ^>= 1.8.0 + - tls-debug < 0 + - vhd < 0 # 0.2.2 compile fail: Missing Semigroup Checksum + - xenstore < 0 # 0.1.1 compile fail: sClose not in scope "Chris Done @chrisdone": - labels ^>= 0.3.3 - ace ^>= 0.6 - check-email ^>= 1.0.2 - freenect ^>= 1.2.1 - - frisby ^>= 0.2.4 + - frisby ^>= 0.2.5 - gd ^>= 3000.7.3 - hostname-validate ^>= 1.0.0 - - ini ^>= 0.4.1 - - lucid ^>= 2.9.12.1 - - pdfinfo ^>= 1.5.4 + - lucid ^>= 2.11.20230408 + - lucid2 ^>= 0.0.20230706 + - pdfinfo < 0 - pure-io < 0 - - sourcemap ^>= 0.1.6.1 - - hindent ^>= 5.3.2 - - descriptive ^>= 0.9.5 + - sourcemap ^>= 0.1.7 + - descriptive < 0 - wrap ^>= 0.0.0 - - path ^>= 0.9.1 - - weigh ^>= 0.0.16 + - path ^>= 0.9.5 + - weigh ^>= 0.0.17 - odbc < 0 - structured-haskell-mode < 0 - - casa-client ^>= 0.0.1 + - casa-client ^>= 0.0.2 - casa-types ^>= 0.0.2 "Alberto G. Corona @agocorona": - RefSerialize ^>= 0.4.0 - - TCache ^>= 0.12.1 + - TCache < 0 # 0.13.3 compile fail - Workflow < 0 - MFlow < 0 - - transient ^>= 0.7.0.0 + - transient < 0 # 0.7.0.0 # fails to compile (#7017) - transient-universe < 0 - axiom < 0 "Edward Kmett @ekmett": - - ad ^>= 4.4.1 - - adjunctions ^>= 4.4 + - ad ^>= 4.5.4 + - adjunctions ^>= 4.4.2 - algebra ^>= 4.3.1 - - ansi-wl-pprint ^>= 0.6.9 + - ansi-wl-pprint ^>= 1.0.2 - approximate ^>= 0.3.5 - - bifunctors ^>= 5.5.11 + - bifunctors ^>= 5.6.1 - bits ^>= 0.6 - - bound ^>= 2.0.4 - - bytes ^>= 0.17.1 - - charset ^>= 0.3.9 + - bound ^>= 2.0.7 + - bytes ^>= 0.17.3 + - charset ^>= 0.3.10 - comonad ^>= 5.0.8 - compensated ^>= 0.8.3 - compressed < 0 - concurrent-supply ^>= 0.1.8 - - constraints ^>= 0.13.2 + - constraints ^>= 0.13.4 - contravariant ^>= 1.5.5 - distributive ^>= 0.6.2.1 - - discrimination ^>= 0.4.1 - - either ^>= 5.0.1.1 + - discrimination ^>= 0.5 + - either ^>= 5.0.2 - eq ^>= 4.3 - - ersatz ^>= 0.4.10 + - ersatz ^>= 0.5 - fixed ^>= 0.3 - - folds ^>= 0.7.7 - - free ^>= 5.1.7 + - folds ^>= 0.7.8 + - free ^>= 5.2 - gl ^>= 0.9 - - graphs ^>= 0.7.1 + - graphs ^>= 0.7.2 - half ^>= 0.3.1 - heaps ^>= 0.4 - - hybrid-vectors ^>= 0.2.2 - - hyperloglog ^>= 0.4.5 + - hybrid-vectors ^>= 0.2.4 + - hyperloglog ^>= 0.4.6 - hyphenation ^>= 0.8.2 - - indexed-traversable ^>= 0.1.2 + - indexed-traversable ^>= 0.1.3 - integration ^>= 0.2.1 - - intern ^>= 0.9.4 + - intern ^>= 0.9.5 - intervals ^>= 0.9.2 - - kan-extensions ^>= 5.2.3 + - kan-extensions ^>= 5.2.5 - keys ^>= 3.12.3 - lca ^>= 0.4 - - lens ^>= 5.0.1 + - lens ^>= 5.2.3 - lens-action ^>= 0.2.6 - - lens-aeson ^>= 1.1.3 + - lens-aeson ^>= 1.2.3 - lens-properties ^>= 4.11.1 - - linear ^>= 1.21.8 + - linear ^>= 1.22 - linear-accelerate < 0 - log-domain ^>= 0.13.2 - - machines ^>= 0.7.2 - - monadic-arrays ^>= 0.2.2 - - monad-products ^>= 4.0.1 + - machines ^>= 0.7.3 + - monadic-arrays < 0 + - monad-products < 0 - monad-st ^>= 0.2.4.1 # - mtl take the one that ships with GHC - nats ^>= 1.1.2 - numeric-extras ^>= 0.1 - - parsers ^>= 0.12.10 - - pointed ^>= 5.0.3 + - parsers ^>= 0.12.11 + - pointed ^>= 5.0.4 - profunctors ^>= 5.6.2 - promises ^>= 0.3 - - rcu ^>= 0.2.5 + - rcu ^>= 0.2.7 - reducers ^>= 3.12.4 - - reflection ^>= 2.1.6 - - semigroupoid-extras ^>= 5 - - semigroupoids ^>= 5.3.6 - - semigroups ^>= 0.19.2 + - reflection ^>= 2.1.7 + - semigroupoid-extras < 0 + - semigroupoids ^>= 6.0.0.1 + - semigroups ^>= 0.20 - speculation < 0 - - streams ^>= 3.3 - - structs ^>= 0.1.6 - - tagged ^>= 0.8.6.1 - - tagged-transformer ^>= 0.8.1 - - transformers-compat ^>= 0.6.6 && <0.7 # https://github.com/commercialhaskell/stackage/issues/6137 - - trifecta ^>= 2.1.2 + - streams ^>= 3.3.2 + - structs ^>= 0.1.9 + - tagged ^>= 0.8.7 + - tagged-transformer ^>= 0.8.2 + - transformers-compat ^>= 0.7.2 + - trifecta ^>= 2.1.3 - unique ^>= 0.0.1 - - vector-instances ^>= 3.4 + - vector-instances ^>= 3.4.2 - void ^>= 0.7.3 - wl-pprint-extras < 0 - - wreq ^>= 0.5.3.3 + - wreq ^>= 0.5.4.2 - wl-pprint-terminfo < 0 - zippers ^>= 0.3.2 - - zlib-lens ^>= 0.1.2.1 + - zlib-lens < 0 "Andrew Farmer @xich": - - scotty ^>= 0.12 - - wai-middleware-static ^>= 0.9.1 + - scotty ^>= 0.20.1 + - wai-middleware-static ^>= 0.9.2 "Simon Hengel @sol": - - hspec ^>= 2.8.5 - - hspec-core ^>= 2.8.5 - - hspec-discover ^>= 2.8.5 + - hpack ^>= 0.36.0 + - hspec ^>= 2.11.7 + - hspec-api ^>= 2.11.7 + - hspec-core ^>= 2.11.7 + - hspec-discover ^>= 2.11.7 - hspec-wai ^>= 0.11.1 - - hspec-wai-json < 0 + - hspec-wai-json ^>= 0.11.0 - aeson-qq ^>= 0.8.4 - interpolate ^>= 0.2.1 - - doctest ^>= 0.18.2 - - base-compat ^>= 0.11.2 + - doctest ^>= 0.22.2 + - base-compat ^>= 0.13.1 "Mario Blazevic @blamario": - - monad-parallel ^>= 0.7.2.5 - - monad-coroutine ^>= 0.9.1.3 - - monoid-subclasses ^>= 1.1.2 - - rank2classes ^>= 1.4.3 - - input-parsers ^>= 0.2.3.1 - - incremental-parser ^>= 0.5.0.2 - - construct ^>= 0.3.0.2 + - monad-parallel ^>= 0.8 + - monad-coroutine ^>= 0.9.2 + - monoid-subclasses ^>= 1.2.4.1 + - rank2classes ^>= 1.5.3 + - input-parsers ^>= 0.3.0.2 + - incremental-parser < 0 + - construct < 0 "Brent Yorgey @byorgey": - - active ^>= 0.2.0.15 - - diagrams ^>= 1.4.0.1 - - diagrams-builder < 0 - - diagrams-cairo < 0 - - diagrams-canvas < 0 - - diagrams-contrib ^>= 1.4.4 - - diagrams-core ^>= 1.5.0 - - diagrams-gtk < 0 - - diagrams-html5 < 0 - - diagrams-lib ^>= 1.4.4 - - diagrams-postscript < 0 - - diagrams-rasterific ^>= 1.4.2.1 + - active ^>= 0.2.0.18 + - statestack ^>= 0.3.1.1 + - diagrams ^>= 1.4.1 + - diagrams-builder ^>= 0.8.0.6 + - diagrams-cairo ^>= 1.4.2.1 + - diagrams-canvas ^>= 1.4.1.2 + - diagrams-contrib ^>= 1.4.5.1 + - diagrams-core ^>= 1.5.1.1 + - diagrams-gtk ^>= 1.4 + - diagrams-html5 ^>= 1.4.2 + - diagrams-lib ^>= 1.4.6 + - diagrams-postscript ^>= 1.5.1.1 + - diagrams-rasterific ^>= 1.4.2.3 - diagrams-solve ^>= 0.1.3 - - diagrams-svg ^>= 1.4.3 + - diagrams-svg ^>= 1.4.3.1 - force-layout ^>= 0.4.0.6 - SVGFonts ^>= 1.8.0.1 - - haxr ^>= 3000.11.4.1 - - MonadRandom ^>= 0.5.3 - - monoid-extras ^>= 0.6.1 + - haxr ^>= 3000.11.5 + - MonadRandom ^>= 0.6 + - monoid-extras ^>= 0.6.2 "Vincent Berthoux @Twinside": - - JuicyPixels ^>= 3.3.6 + - JuicyPixels ^>= 3.3.8 - FontyFruity ^>= 0.5.3.5 - Rasterific ^>= 0.7.5.4 - svg-tree ^>= 0.6.2.4 - rasterific-svg ^>= 0.3.3.2 - - asciidiagram ^>= 1.3.3.3 + - asciidiagram < 0 "Patrick Brisbin @pbrisbin": - - bugsnag-haskell ^>= 0.0.4.2 - - gravatar ^>= 0.8.0 + - bugsnag-haskell ^>= 0.0.4.4 + - bugsnag ^>= 1.1.0.0 + - bugsnag-wai ^>= 1.0.0.1 + - bugsnag-yesod ^>= 1.0.1.0 + - gravatar ^>= 0.8.1 - load-env ^>= 0.2.1.0 - - yesod-auth-oauth2 < 0 - - yesod-markdown ^>= 0.12.6.12 - - yesod-paginator ^>= 1.1.1.0 + - shellwords ^>= 0.1.3.1 + - yesod-markdown ^>= 0.12.6.13 + - yesod-paginator ^>= 1.1.2.2 "Freckle Engineering @pbrisbin @mjgpy3 @stevenxl": - - bcp47 < 0 - - bcp47-orphans < 0 - - faktory ^>= 1.1.2.0 - - graphula ^>= 2.0.1.0 - - hspec-expectations-json ^>= 1.0.0.4 - - yesod-page-cursor ^>= 2.0.0.9 - - yesod-routes-flow ^>= 3.0.0.1 - - nonempty-zipper ^>= 1.0.0.3 - - sendgrid-v3 < 0 - - yesod-auth-oauth2 < 0 - - hspec-junit-formatter ^>= 1.0.3.0 && <1.1 # https://github.com/freckle/freckle-app/issues/43 - - aws-xray-client < 0 - - aws-xray-client-wai < 0 - - freckle-app ^>= 1.0.0.4 + - Blammo ^>= 1.1.2.1 + - aws-sns-verify ^>= 0.0.0.3 + - aws-xray-client ^>= 0.1.0.2 + - aws-xray-client-persistent ^>= 0.1.0.5 + - aws-xray-client-wai ^>= 0.1.0.2 + - bcp47 ^>= 0.2.0.6 + - bcp47-orphans ^>= 0.1.0.6 + - faktory ^>= 1.1.2.5 + - graphula ^>= 2.1.0.0 + - hspec-expectations-json ^>= 1.0.2.1 + - hspec-junit-formatter ^>= 1.1.0.2 + - nonempty-zipper ^>= 1.0.0.4 + - scientist ^>= 0.0.0.0 + - sendgrid-v3 ^>= 1.0.0.1 + - yesod-auth-oauth2 ^>= 0.7.1.3 + - yesod-page-cursor ^>= 2.0.1.0 + - yesod-routes-flow ^>= 3.0.0.2 "Felipe Lessa @meteficha": - - fb ^>= 2.1.1 + - fb ^>= 2.1.1.1 - nonce ^>= 1.0.7 - - serversession ^>= 1.0.2 + - serversession ^>= 1.0.3 - serversession-backend-persistent < 0 - - serversession-backend-redis < 0 - - serversession-frontend-wai ^>= 1.0 - # - serversession-frontend-yesod # conduit 1.3, yesod 1.6 - # - thumbnail-plus # https://github.com/prowdsponsor/thumbnail-plus/issues/5 - - yesod-auth-fb < 0 + - serversession-backend-redis ^>= 1.0.5 + - serversession-frontend-wai ^>= 1.0.1 + - serversession-frontend-yesod ^>= 1.0.1 + - thumbnail-plus < 0 + - yesod-auth-fb < 0 # 1.10.1 compile fail - yesod-fb ^>= 0.6.1 "Alexander Altman @pthariensflame": # Maintaining on behalf of @roelvandijk: - base-unicode-symbols ^>= 0.2.4.2 - - containers-unicode-symbols ^>= 0.3.1.3 + - containers-unicode-symbols < 0 # My own packages: - ChannelT ^>= 0.0.0.7 @@ -1170,82 +1289,87 @@ packages: - accelerate-llvm-native < 0 - accelerate-llvm-ptx < 0 - accelerate-examples < 0 - - repa ^>= 3.4.1.4 + - repa < 0 - repa-algorithms < 0 - - repa-io ^>= 3.4.1.1 - - gloss ^>= 1.13.2.1 - - gloss-rendering ^>= 1.13.1.1 - - gloss-algorithms ^>= 1.13.0.2 + - repa-io < 0 + - gloss ^>= 1.13.2.2 + - gloss-rendering ^>= 1.13.1.2 + - gloss-algorithms ^>= 1.13.0.3 - gloss-examples < 0 - - gloss-raster ^>= 1.13.1.2 + - gloss-raster < 0 - gloss-accelerate < 0 - gloss-raster-accelerate < 0 - colour-accelerate < 0 - lens-accelerate < 0 - mwc-random-accelerate < 0 - - cuda ^>= 0.11.0.0 - - cufft ^>= 0.10.0.0 - - cublas ^>= 0.6.0.0 - - cusparse ^>= 0.3.0.0 - - cusolver ^>= 0.3.0.0 - - nvvm ^>= 0.10.0.0 - - wide-word ^>= 0.1.1.2 # @erikd + - cuda ^>= 0.11.0.1 + - cufft < 0 # 0.10.0.0 compile fail (#7198) + - cublas < 0 # 0.6.0.0 compile fail (#7198) + - cusparse < 0 # 0.3.0.0 compile fail (#7198) + - cusolver < 0 + - nvvm ^>= 0.10.0.1 + - wide-word ^>= 0.1.6.0 # @erikd "Dan Burton @DanBurton": - ANum ^>= 0.2.0.2 - basic-prelude ^>= 0.7.0 - composition ^>= 1.0.2.2 - - haskell-src-meta ^>= 0.8.7 + - haskell-src-meta ^>= 0.8.13 - io-memoize ^>= 1.1.1.0 - - lens-family-th ^>= 0.5.2.1 + - lens-family-th < 0 - numbers ^>= 3000.2.0.2 - - rev-state ^>= 0.1.2 + - rev-state < 0 - runmemo ^>= 1.0.0.1 - - tardis ^>= 0.4.3.0 + - tardis < 0 # 0.4.4.0 # fails to compile https://github.com/DanBurton/tardis/issues/15 - yesod-gitrev ^>= 0.2.2 # @mr's packages - ftp-client < 0 - ftp-client-conduit < 0 # other: real maintainers pls steal these back - - text-format < 0 # needed by liquid-fixpoint + - text-format ^>= 0.3.2.1 # needed by liquid-fixpoint - liquid-fixpoint < 0 - "Daniel Casanueva @Daniel-Diaz": - - bimap-server ^>= 0.1.0.1 + "Daniel Casanueva @Daniel-Diaz": - binary-list ^>= 1.1.1.2 - - byteset ^>= 0.1.1.0 + - bounded-qsem ^>= 0.1.0.1 + - byteset ^>= 0.1.1.1 - Clipboard ^>= 2.3.2.0 - - gmail-simple ^>= 0.1.0.2 + - fgl-arbitrary ^>= 0.2.0.6 + - gmail-simple ^>= 0.1.0.5 + - graphviz ^>= 2999.20.2.0 - grouped-list < 0 - - haskintex ^>= 0.8.0.0 - - HaTeX ^>= 3.22.3.0 + - haskintex ^>= 0.8.0.2 + - HaTeX ^>= 3.22.4.1 + - hetzner ^>= 0.6.0.0 - include-file ^>= 0.1.0.4 - - matrix ^>= 0.3.6.1 - - pcre-light ^>= 0.4.1.0 - - phantom-state ^>= 0.2.1.2 + - journalctl-stream ^>= 0.6.0.5 + - mailtrap ^>= 0.1.2.0 + - matrix ^>= 0.3.6.3 + - mysql-json-table ^>= 0.1.2.0 + - pcre-light ^>= 0.4.1.2 + - phantom-state ^>= 0.2.1.4 - post-mess-age ^>= 0.2.1.0 - - sorted-list ^>= 0.2.1.0 + - sorted-list ^>= 0.2.2.0 - "Gabriella Gonzalez @Gabriel439": - - optparse-generic ^>= 1.4.7 + "Gabriella Gonzalez @Gabriella439": + - optparse-generic ^>= 1.5.2 - pipes ^>= 4.3.16 - pipes-extras ^>= 1.0.15 - pipes-http ^>= 1.0.6 - pipes-parse ^>= 3.0.9 - - pipes-concurrency ^>= 2.0.12 - - pipes-safe ^>= 2.3.3 - - turtle ^>= 1.5.23 - - foldl ^>= 1.4.12 - - bench ^>= 1.0.12 - - dhall ^>= 1.40.2 - - dhall-bash ^>= 1.0.39 - - dhall-json ^>= 1.7.9 + - pipes-concurrency ^>= 2.0.14 + - pipes-safe ^>= 2.3.5 + - turtle ^>= 1.6.2 + - foldl ^>= 1.4.15 + - bench < 0 + - dhall ^>= 1.42.1 + - dhall-bash ^>= 1.0.41 + - dhall-json < 0 - dhall-lsp-server < 0 - - dhall-yaml ^>= 1.2.9 - - aeson-yaml ^>= 1.1.0.1 # req'd by dhall-json + - dhall-yaml < 0 - dhall-nix < 0 - - nix-derivation ^>= 1.1.2 - - list-transformer ^>= 1.0.7 + - nix-derivation ^>= 1.1.3 + - list-transformer ^>= 1.1.0 "Andrew Thaddeus Martin @andrewthad": - colonnade ^>= 1.2.0.2 @@ -1255,97 +1379,99 @@ packages: "Chris Allen @bitemyapp": - machines-directory < 0 - machines-io < 0 - - bloodhound ^>= 0.18.0.0 + - bloodhound ^>= 0.21.0.0 "Adam Bergmark @bergmark": - - aeson ^>= 1.5.6.0 + - aeson ^>= 2.1.2.1 - HUnit ^>= 1.6.2.0 - - attoparsec-iso8601 ^>= 1.0.2.0 - - feed ^>= 1.3.2.0 + - attoparsec-iso8601 ^>= 1.1.0.1 + - feed ^>= 1.3.2.1 - time-compat ^>= 1.9.6.1 - - through-text ^>= 0.1.0.0 + - through-text < 0 # Not my packages - HStringTemplate ^>= 0.8.8 - - language-ecmascript < 0 - spoon ^>= 0.3.1 - - tagshare ^>= 0.0 + - tagshare < 0 # 0.0 # fails to compile (#7017) "Benedict Aas @Shou": - - boolean-like ^>= 0.1.1.0 - - type-operators ^>= 0.2.0.0 + - boolean-like < 0 + - type-operators < 0 "Sebastiaan Visser @sebastiaanvisser": - - clay ^>= 0.13.3 + - clay ^>= 0.14.0 - fclabels ^>= 2.0.5.1 "Robert Klotzner @eskimor": - - purescript-bridge ^>= 0.14.0.0 - - servant-purescript < 0 # #6091/closed + - purescript-bridge ^>= 0.15.0.0 + - servant-purescript < 0 # 0.10.0.0 compile fail #6091/closed - servant-subscriber ^>= 0.7.0.0 "Rodrigo Setti @rodrigosetti": - - messagepack ^>= 0.5.4 + - messagepack ^>= 0.5.5 - messagepack-rpc < 0 "Boris Lykah @lykahb": - - groundhog ^>= 0.11.0 + - groundhog < 0 - groundhog-inspector < 0 - groundhog-mysql < 0 - - groundhog-postgresql ^>= 0.11 - - groundhog-sqlite ^>= 0.11.0 + - groundhog-postgresql < 0 + - groundhog-sqlite < 0 - groundhog-th < 0 "Janne Hellsten @nurpax": - - sqlite-simple ^>= 0.4.18.0 + - sqlite-simple ^>= 0.4.18.2 "Michal J. Gajda @mgajda": - - iterable ^>= 3.0 + - iterable < 0 - FenwickTree ^>= 0.1.2.1 - json-autotype < 0 "Dom De Re @domdere": - - cassava-conduit ^>= 0.6.0 + - cassava-conduit ^>= 0.6.5 "Dominic Steinitz @idontgetoutmuch": - monad-bayes < 0 - - random-fu < 0 + - random-fu ^>= 0.3.0.1 "Ben Gamari @bgamari": - vector-fftw < 0 - - cborg-json ^>= 0.2.3.0 - - language-dot ^>= 0.1.1 + - cborg-json ^>= 0.2.6.0 + - language-dot ^>= 0.1.2 "Roman Cheplyaka @feuerbach": - action-permutations ^>= 0.0.0.1 - - amqp ^>= 0.22.0 + - amqp ^>= 0.22.2 - heredoc ^>= 0.2.0.0 - immortal ^>= 0.3 - regex-applicative ^>= 0.3.4 - lexer-applicative ^>= 2.1.0.2 - - tasty ^>= 1.4.2.1 - - tasty-golden ^>= 2.3.4 - - tasty-hunit ^>= 0.10.0.3 + - tasty ^>= 1.4.3 + - tasty-golden ^>= 2.3.5 + - tasty-hunit ^>= 0.10.1 - tasty-quickcheck ^>= 0.10.2 - tasty-smallcheck ^>= 0.8.2 - - tasty-html ^>= 0.4.1.4 + - tasty-html ^>= 0.4.2.1 - time-lens ^>= 0.4.0.2 - - timezone-olson ^>= 0.2.0 - - timezone-series ^>= 0.1.9 - - traverse-with-class < 0 + - timezone-olson ^>= 0.2.1 + - timezone-series ^>= 0.1.13 + - traverse-with-class ^>= 1.0.1.1 - tuples-homogenous-h98 ^>= 0.1.1.0 "George Giorgidze @giorgidze": - - YampaSynth < 0 + - YampaSynth < 0 # 0.2 compile fail - set-monad ^>= 0.3.0.0 "Phil Hargett @hargettp": - courier < 0 "Aycan iRiCAN @aycanirican": - - hdaemonize ^>= 0.5.6 + - hdaemonize ^>= 0.5.7 - hweblib ^>= 0.6.3 "Joachim Breitner @nomeata": + - arbtt < 0 + - rec-def ^>= 0.2.2 + - bytestring-progress < 0 # dependency of arbtt - circle-packing ^>= 0.1.0.6 - haskell-spacegoo < 0 - tasty-expected-failure ^>= 0.12.3 @@ -1360,33 +1486,33 @@ packages: - DAV ^>= 1.3.4 - hopenpgp-tools < 0 - opensource ^>= 0.1.1.0 - - debian ^>= 4.0.2 - - cabal-debian < 0 + - debian ^>= 4.0.5 + - cabal-debian ^>= 5.2.2 # dependencies: - - monad-chronicle ^>= 1.0.0.1 + - monad-chronicle ^>= 1.0.1 "Piyush P Kurur @piyush-kurur": - raaz < 0 - naqsha < 0 "Joey Hess @joeyh": - - git-annex < 0 - - concurrent-output ^>= 1.10.14 + - git-annex ^>= 10.20231129 + - concurrent-output ^>= 1.10.20 - mountpoints ^>= 1.0.2 - disk-free-space ^>= 0.1.0.1 "Colin Woodbury @fosskers": - - aur ^>= 7.0.7 - - aura ^>= 3.2.5 + - aur < 0 + - aura < 0 - bounded-queue ^>= 1.0.0 - - kanji ^>= 3.4.1 - - language-bash ^>= 0.9.2 - - microlens-aeson ^>= 2.3.1 + - kanji < 0 + - language-bash < 0 + - microlens-aeson ^>= 2.5.1 - pipes-random ^>= 1.0.0.5 - - servant-xml ^>= 1.0.1.4 + - servant-xml ^>= 1.0.2 - streaming-attoparsec ^>= 1.0.0.1 - - versions ^>= 5.0.1 - - vectortiles ^>= 1.5.1 + - versions ^>= 6.0.3 + - vectortiles < 0 "Ketil Malde @ketil-malde": - biocore < 0 @@ -1406,69 +1532,58 @@ packages: - RNAlien < 0 - biocore < 0 - bimaps ^>= 0.1.0.2 - - BiobaseBlast ^>= 0.3.3.0 - - BiobaseENA ^>= 0.0.0.2 + - BiobaseBlast < 0 + - BiobaseENA < 0 - BiobaseEnsembl ^>= 0.2.0.1 - - BiobaseFasta ^>= 0.4.0.1 + - BiobaseFasta < 0 - BiobaseHTTP < 0 - - BiobaseTypes ^>= 0.2.1.0 - - BiobaseXNA ^>= 0.11.1.1 + - BiobaseTypes < 0 + - BiobaseXNA < 0 - DPutils ^>= 0.1.1.0 - - ForestStructures ^>= 0.0.1.0 + - ForestStructures ^>= 0.0.1.1 - OrderedBits ^>= 0.0.2.0 - - PrimitiveArray ^>= 0.10.1.1 + - PrimitiveArray < 0 # 0.10.1.1 compile fail - SciBaseTypes ^>= 0.1.1.0 - - Taxonomy ^>= 2.2.0 + - Taxonomy < 0 - ViennaRNAParser ^>= 1.3.3 - either-unwrap ^>= 1.1 "Silk ": - - aeson-utils < 0 - - arrow-list < 0 - attoparsec-expr ^>= 0.1.1.2 - - code-builder < 0 - generic-xmlpickler < 0 - - hxt-pickle-utils < 0 - imagesize-conduit ^>= 1.1 - - json-schema < 0 - multipart ^>= 0.2.1 - - rest-client < 0 - - rest-core < 0 - - rest-gen < 0 - - rest-happstack < 0 - - rest-snap < 0 - - rest-stringmap < 0 - - rest-types < 0 - - rest-wai < 0 - tostring ^>= 0.2.1.1 - uri-encode ^>= 1.5.0.7 "Simon Michael @simonmichael": - - quickbench ^>= 1.0.1 + - quickbench < 0 - regex-compat-tdfa < 0 - - shelltestrunner ^>= 1.9 + - shelltestrunner ^>= 1.10 # The hledger project aims to keep the latest release of the core # "hledger-lib" and "hledger" packages in stackage nightly at all times. # When other hledger-* packages (or minor non-hledger packages) have # incompatible bounds, we would prefer they be disabled temporarily, # rather than disabling the latest hledger-lib and hledger. # (#3494/closed, #5779/closed) - - hledger ^>= 1.24.99 - - hledger-lib ^>= 1.24.99 - - hledger-ui ^>= 1.24.99 - - hledger-web ^>= 1.24.99 + - hledger ^>= 1.32.1 + - hledger-lib ^>= 1.32.1 + - hledger-ui < 0 + - hledger-web ^>= 1.32.1 + - breakpoint ^>= 0.1.3.0 "Mihai Maruseac @mihaimaruseac": - - io-manager ^>= 0.1.0.3 + - hindent ^>= 6.1.1 + - io-manager ^>= 0.1.0.4 "Dimitri Sabadie @phaazon": - - al ^>= 0.1.4.2 + - al < 0 - event < 0 - - hid ^>= 0.2.2 - - monad-journal ^>= 0.8.1 - - smoothie ^>= 0.4.2.11 + - hid < 0 + - monad-journal < 0 + - smoothie < 0 - wavefront < 0 - - zero ^>= 0.1.5 + - zero < 0 "Thomas Schilling @nominolo": - ghc-syb-utils < 0 @@ -1485,229 +1600,215 @@ packages: "Paul Rouse @paul-rouse": - mysql ^>= 0.2.1 - - mysql-simple ^>= 0.4.7 - - sphinx < 0 # Could not find module Network - - xmlhtml ^>= 0.2.5.2 - - yesod-auth-hashdb < 0 + - mysql-simple ^>= 0.4.9 + - sphinx < 0 # 0.6.0.2 compile fail: Could not find module Network + - xmlhtml ^>= 0.2.5.4 + - yesod-auth-hashdb ^>= 1.7.1.7 "Toralf Wittner @twittner": - - bytestring-conversion ^>= 0.3.1 - - cql < 0 - - cql-io < 0 - - redis-resp < 0 + - bytestring-conversion ^>= 0.3.2 + - cql ^>= 4.0.4 + - cql-io ^>= 1.1.1 + - redis-resp ^>= 1.0.0 - redis-io < 0 - - swagger ^>= 0.3.0 - - tinylog ^>= 0.15.0 + - swagger < 0 + - tinylog < 0 - wai-predicates < 0 - wai-routing < 0 - zeromq4-haskell ^>= 0.8.0 "Alejandro Serrano @serras": - - djinn-lib ^>= 0.0.1.3 + - djinn-lib ^>= 0.0.1.4 - djinn-ghc < 0 - - generics-mrsop < 0 # MonadFail - - kind-apply ^>= 0.3.2.0 - - kind-generics ^>= 0.4.1.2 - - kind-generics-th ^>= 0.2.2.2 + - generics-mrsop < 0 # 2.3.0 compile fail: TyVarBndr + - kind-apply ^>= 0.4.0.0 + - kind-generics ^>= 0.5.0.0 + - kind-generics-th ^>= 0.2.3.3 - simplistic-generics < 0 - wl-pprint ^>= 1.2.1 - AC-Angle ^>= 1.0 - language-protobuf ^>= 1.0.1 - - generic-aeson ^>= 0.2.0.13 + - generic-aeson < 0 - parameterized ^>= 0.5.0.0 - tracing-control < 0 - - primitive-unlifted ^>= 1.0.0.0 - - stm-lifted ^>= 2.5.0.0 - - monad-primitive ^>= 0.1 - - mwc-random-monad ^>= 0.7.3.1 + - primitive-unlifted ^>= 2.1.0.0 && (<1.0.0.0 || >1.0.0.0) + - stm-lifted < 0 + - monad-primitive < 0 # 0.1 compile fail ghc-9.6 + - mwc-random-monad < 0 "Flavio Corpa @kutyel": - - language-avro ^>= 0.1.3.1 + - language-avro ^>= 0.1.4.0 "Matvey Aksenov @supki": - - terminal-size ^>= 0.3.2.1 - - envparse ^>= 0.4.1 + - terminal-size ^>= 0.3.4 + - envparse ^>= 0.5.0 "Luis G. Torres @giogadi": - - kdt < 0 + - kdt ^>= 0.2.5 "Pavel Krajcevski @Mokosha": - netwire ^>= 5.0.3 - netwire-input ^>= 0.0.7 - - netwire-input-glfw ^>= 0.0.11 + - netwire-input-glfw < 0 # 0.0.11 compile fail https://github.com/Mokosha/netwire-input-glfw/issues/5 - yoga ^>= 0.0.0.5 - freetype2 ^>= 0.2.0 - HCodecs ^>= 0.5.2 - netcode-io ^>= 0.0.3 - reliable-io ^>= 0.0.2 - "Emanuel Borsboom @borsboom": - - BoundedChan ^>= 1.0.3.0 - - broadcast-chan < 0 - - fuzzcheck ^>= 0.1.1 - - here ^>= 1.2.13 - - hlibgit2 ^>= 0.18.0.16 - - gitlib-libgit2 < 0 - - interpolatedstring-perl6 ^>= 1.0.2 - - iproute ^>= 1.7.12 - - missing-foreign ^>= 0.1.1 - - MissingH ^>= 1.4.3.0 - - multimap ^>= 1.2.1 - - parallel-io ^>= 0.3.5 - - text-binary ^>= 0.2.1.1 - - Chart-cairo < 0 - - ghc-events ^>= 0.17.0.1 - - monad-extras ^>= 0.6.0 - - optparse-simple ^>= 0.1.1.4 - - hpack ^>= 0.34.6 - - bindings-uname ^>= 0.1 - - stack < 0 # see #3563/closed - "Michael Sloan @mgsloan": - - store ^>= 0.7.14 - - store-core ^>= 0.4.4.4 - - store-streaming ^>= 0.2.0.3 - - th-orphans ^>= 0.13.12 + - store ^>= 0.7.18 + - store-core ^>= 0.4.4.6 + - store-streaming ^>= 0.2.0.5 + - th-orphans ^>= 0.13.14 - th-reify-many ^>= 0.1.10 - - th-utilities ^>= 0.2.4.3 + - th-utilities ^>= 0.2.5.0 "Nikita Volkov @nikita-volkov": - - acc ^>= 0.2.0.1 - - attoparsec-data ^>= 1.0.5.2 - - attoparsec-time ^>= 1.0.2 - - base-prelude ^>= 1.4 - - bytestring-strict-builder ^>= 0.4.5.5 - - bytestring-tree-builder ^>= 0.2.7.9 - - cases ^>= 0.1.4.1 - - deferred-folds ^>= 0.9.17 - - deque ^>= 0.4.4 - - domain ^>= 0.1.1.2 - - domain-core ^>= 0.1 - - domain-optics ^>= 0.1.0.1 - - focus ^>= 1.0.3 - - hasql ^>= 1.4.5.3 - - hasql-optparse-applicative ^>= 0.3.0.6 - - hasql-pool ^>= 0.5.2 - - hasql-th < 0 # 0.4.0.9 TH compile error - - hasql-transaction ^>= 1.0.1 - - headed-megaparsec ^>= 0.2.0.1 && <0.2.0.2 # https://github.com/commercialhaskell/stackage/issues/6348 - - jsonifier ^>= 0.1.2 - - list-t ^>= 1.0.5.1 - - mtl-prelude ^>= 2.0.3.1 - - neat-interpolation ^>= 0.5.1.2 - - optima ^>= 0.4.0.2 + - acc ^>= 0.2.0.3 + - aeson-unqualified-ast ^>= 1.0.0.3 + - aeson-value-parser ^>= 0.19.7.2 + - attoparsec-data ^>= 1.0.5.4 + - attoparsec-time ^>= 1.0.3.1 + - base-prelude ^>= 1.6.1.1 + - bytestring-strict-builder ^>= 0.4.5.7 + - bytestring-tree-builder ^>= 0.2.7.11 + - cases ^>= 0.1.4.2 + - cereal-unordered-containers ^>= 0.1.0.1 + - deferred-folds ^>= 0.9.18.6 + - deque ^>= 0.4.4.1 + - domain ^>= 0.1.1.5 + - domain-aeson ^>= 0.1.1.2 + - domain-cereal ^>= 0.1.0.1 + - domain-core ^>= 0.1.0.4 + - domain-optics ^>= 0.1.0.4 + - focus ^>= 1.0.3.2 + - hasql ^>= 1.6.3.4 + - hasql-optparse-applicative ^>= 0.7.1.1 + - hasql-pool ^>= 0.10.0.1 + - hasql-th ^>= 0.4.0.19 + - hasql-transaction ^>= 1.0.1.2 + - headed-megaparsec ^>= 0.2.1.3 + - isomorphism-class ^>= 0.1.0.12 + - jsonifier ^>= 0.2.1.3 + - list-t ^>= 1.0.5.7 + - mtl-prelude ^>= 2.0.3.2 + - neat-interpolation ^>= 0.5.1.4 + - optima ^>= 0.4.0.5 - partial-handler ^>= 1.0.3 - - postgresql-binary ^>= 0.12.4.1 - - postgresql-syntax ^>= 0.4 - - primitive-extras ^>= 0.10.1.2 - - ptr-poker ^>= 0.1.2 - - rebase ^>= 1.13.2 && <1.14 # https://github.com/commercialhaskell/stackage/issues/6348 - - rerebase ^>= 1.13.2 && <1.14 # https://github.com/commercialhaskell/stackage/issues/6348 - - slave-thread ^>= 1.1.0.1 - - stm-containers ^>= 1.2 - - stm-hamt ^>= 1.2.0.7 - - template-haskell-compat-v0208 ^>= 0.1.7 - - text-builder ^>= 0.6.6.3 - - th-lego ^>= 0.2.3 - - vector-builder ^>= 0.3.8.2 - - yaml-unscrambler ^>= 0.1.0.4 && <0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/6348 - - xml-parser ^>= 0.1.0.1 + - postgresql-binary ^>= 0.13.1.2 + - postgresql-syntax ^>= 0.4.1.1 + - primitive-extras ^>= 0.10.1.10 + - ptr-poker ^>= 0.1.2.14 + - rebase ^>= 1.20.2 + - rerebase ^>= 1.20.2 + - slave-thread ^>= 1.1.0.3 + - stm-containers ^>= 1.2.0.3 + - stm-hamt ^>= 1.2.0.14 + - template-haskell-compat-v0208 ^>= 0.1.9.3 + - text-builder ^>= 0.6.7.2 + - text-builder-dev ^>= 0.3.4.2 + - th-lego ^>= 0.3.0.3 + - vector-builder ^>= 0.3.8.5 + - vector-extras ^>= 0.2.8.1 + - yaml-unscrambler ^>= 0.1.0.18 + - xml-parser < 0 "Iustin Pop @iustin": - - prefix-units ^>= 0.2.0 + - prefix-units ^>= 0.3.0.1 "Alexander Thiemann @agrafix": - Spock < 0 - - Spock-core < 0 + - Spock-core < 0 # 0.14.0.1 https://github.com/agrafix/Spock/issues/184 - Spock-api ^>= 0.14.0.0 - Spock-api-server < 0 - Spock-worker < 0 - graph-core ^>= 0.3.0.0 - - hvect ^>= 0.4.0.0 - - reroute ^>= 0.6.0.0 + - hvect ^>= 0.4.0.1 + - reroute ^>= 0.7.0.0 - users ^>= 0.5.0.0 - users-persistent < 0 - - users-postgresql-simple ^>= 0.5.0.2 + - users-postgresql-simple < 0 # 0.5.0.2 # fails to compile (#7017) - users-test ^>= 0.5.0.1 - validate-input ^>= 0.5.0.0 - - ignore < 0 # compile fail https://github.com/agrafix/ignore/issues/5 + - ignore < 0 # 0.1.1.0 compile fail https://github.com/agrafix/ignore/issues/5 - blaze-bootstrap ^>= 0.1.0.1 - dataurl ^>= 0.1.0.0 - psql-helpers ^>= 0.1.0.0 - - superbuffer ^>= 0.3.1.1 + - superbuffer ^>= 0.3.1.2 - timespan ^>= 0.4.0.0 - - distance < 0 # compile fail (GHC 8.4) + - distance < 0 # 0.1.0.0 compile fail: Semigroup Distance - async-extra ^>= 0.2.0.0 - format-numbers ^>= 0.1.0.1 - - highjson ^>= 0.5.0.0 + - highjson < 0 - highjson-swagger < 0 - highjson-th < 0 - fileplow ^>= 0.1.0.0 "Joey Eremondi @JoeyEremondi": - - digest ^>= 0.0.1.3 + - digest ^>= 0.0.2.0 - elm-core-sources ^>= 1.0.0 - language-glsl ^>= 0.3.0 - prettyclass ^>= 1.0.0.0 - QuasiText ^>= 0.1.2.6 - - union-find ^>= 0.2 - - zip-archive ^>= 0.4.1 + - union-find < 0 + - zip-archive ^>= 0.4.3 "Arthur Fayzrakhmanov @geraldus": - yesod-form-richtext < 0 - ghcjs-perch ^>= 0.3.3.3 "Tom Ellis @tomjaguarpaw": - - opaleye ^>= 0.8.0.1 - - product-profunctors ^>= 0.11.0.3 + - opaleye ^>= 0.10.2.0 + - product-profunctors ^>= 0.11.1.1 - strict-wrapper ^>= 0.0.0.0 "Samplecount stefan@samplecount.com @kaoskorobase": - shake-language-c ^>= 0.12.0 "David Turner @davecturner": - - alarmclock ^>= 0.7.0.5 - - bank-holidays-england ^>= 0.2.0.6 + - alarmclock ^>= 0.7.0.6 + - bank-holidays-england ^>= 0.2.0.9 "Haskell Servant ": - - servant ^>= 0.18.3 + - servant ^>= 0.20.1 - servant-blaze ^>= 0.9.1 - - servant-cassava ^>= 0.10.1 - - servant-client ^>= 0.18.3 - - servant-client-core ^>= 0.18.3 - - servant-conduit ^>= 0.15.1 - - servant-docs ^>= 0.11.9 - - servant-foreign ^>= 0.15.4 - - servant-http-streams ^>= 0.18.3 + - servant-cassava < 0 + - servant-client ^>= 0.20 + - servant-client-core ^>= 0.20 + - servant-conduit ^>= 0.16 + - servant-docs ^>= 0.13 + - servant-foreign ^>= 0.16 + - servant-http-streams ^>= 0.20 - servant-js < 0 - - servant-lucid ^>= 0.9.0.3 - - servant-machines ^>= 0.15.1 + - servant-lucid ^>= 0.9.0.6 + - servant-machines ^>= 0.16 - servant-mock < 0 - servant-multipart ^>= 0.12.1 - servant-multipart-api ^>= 0.12.1 - - servant-pipes ^>= 0.15.3 - - servant-server ^>= 0.18.3 - - servant-swagger < 0 - - servant-swagger-ui ^>= 0.3.5.3.52.5 + - servant-pipes ^>= 0.16 + - servant-server ^>= 0.20 + - servant-swagger ^>= 1.2 + - servant-swagger-ui ^>= 0.3.5.5.0.0 - servant-swagger-ui-core ^>= 0.3.5 "Optics ": - - indexed-profunctors ^>= 0.1.1 - - optics ^>= 0.4 - - optics-core ^>= 0.4 - - optics-extra ^>= 0.4 - - optics-th ^>= 0.4 + - indexed-profunctors ^>= 0.1.1.1 + - optics ^>= 0.4.2.1 + - optics-core ^>= 0.4.1.1 + - optics-extra ^>= 0.4.2.1 + - optics-th ^>= 0.4.1 - optics-vl ^>= 0.2.1 "Alexandr Ruchkin @mvoidex": - hformat ^>= 0.3.3.1 - - simple-log ^>= 0.9.12 + - simple-log < 0 - text-region < 0 - haskell-names < 0 - hsdev < 0 "Aleksey Kliger @lambdageek": - - unbound-generics ^>= 0.4.1 + - unbound-generics < 0 - indentation-core < 0 - indentation-parsec < 0 - clang-compilation-database < 0 @@ -1715,90 +1816,95 @@ packages: "Alois Cochard @aloiscochard": - machines-binary < 0 # on behalf of Bryan O'Sullivan @bos: - - wreq ^>= 0.5.3.3 + - wreq ^>= 0.5.4.2 "Andraz Bajt @edofic": - effect-handlers < 0 - - koofr-client ^>= 1.0.0.3 + - koofr-client < 0 - snowflake ^>= 0.1.1.1 "Leza M. Lutonda @lemol": - - HaskellNet < 0 + - HaskellNet ^>= 0.6.1.2 - HaskellNet-SSL < 0 "Tristan de Cacqueray @tristanC": - - linux-capabilities ^>= 0.1.0.0 + - linux-capabilities ^>= 0.1.1.0 "Jens Petersen @juhp": - - bugzilla-redhat ^>= 0.3.3 - - cabal-file < 0 - - cabal-rpm ^>= 2.0.10 - - cached-json-file ^>= 0.1.0 - - dl-fedora ^>= 0.9.2 - - fedora-dists ^>= 1.1.2 - - fedora-haskell-tools ^>= 0.9 - - hkgr ^>= 0.3 - - http-directory ^>= 0.1.8 && <0.1.9 # https://github.com/juhp/dl-fedora/issues/2 - - http-query ^>= 0.1.1 + - bodhi ^>= 0.1.0 + - bugzilla-redhat ^>= 1.0.1.1 + - cabal-file ^>= 0.1.1 + - cabal-rpm ^>= 2.1.5 + - cached-json-file ^>= 0.1.1 + - copr-api ^>= 0.2.0 + - dl-fedora ^>= 1.0 + - fedora-dists ^>= 2.1.1 + - fedora-haskell-tools ^>= 1.1 + - HaXml ^>= 1.25.13 + - hkgr ^>= 0.4.3.2 + - http-directory ^>= 0.1.10 + - http-query ^>= 0.1.3 + - hwk ^>= 0.6 - koji ^>= 0.0.2 - - pagure-cli ^>= 0.2 - - pkgtreediff ^>= 0.5.0 - - rhbzquery ^>= 0.4.4 - - rpm-nvr ^>= 0.1.1 - - rpmbuild-order ^>= 0.4.5 - - simple-cabal ^>= 0.1.3 - - simple-cmd ^>= 0.2.3 - - simple-cmd-args ^>= 0.1.7 - - HaXml ^>= 1.25.8 - - - async-pool ^>= 0.9.1 + - koji-tool ^>= 1.1.1 + - pagure ^>= 0.1.1 + - pagure-cli ^>= 0.2.1 + - pdc ^>= 0.1.1 + - pkgtreediff ^>= 0.6.0 + - rhbzquery < 0 # 0.4.4 https://github.com/juhp/rhbzquery/issues/1 + - rpm-nvr ^>= 0.1.2 + - rpmbuild-order ^>= 0.4.10 + - simple-cabal ^>= 0.1.3.1 + - simple-cmd ^>= 0.2.7 + - simple-cmd-args ^>= 0.1.8 + - simple-prompt ^>= 0.2.2 + - stack-all ^>= 0.4.2 + - stack-clean-old ^>= 0.5 + - darcs < 0 - idris < 0 - - libffi ^>= 0.1 - - cairo < 0 - - glib < 0 - - gio < 0 - - pango < 0 - - gtk3 < 0 + - libffi ^>= 0.2.1 + - cairo ^>= 0.13.10.0 + - glib ^>= 0.13.10.0 + - gio ^>= 0.13.10.0 + - pango ^>= 0.13.10.0 + - gtk3 ^>= 0.15.8 - ghcjs-codemirror ^>= 0.0.0.2 - ghcjs-dom < 0 - - jsaddle < 0 + - jsaddle ^>= 0.9.8.3 - vado < 0 - vcswrapper < 0 - - ShellCheck ^>= 0.8.0 + - ShellCheck ^>= 0.9.0 - binary-shared ^>= 0.8.3 - xdg-userdirs ^>= 0.1.0.2 - # please take these - - cryptohash-md5 ^>= 0.11.101.0 - - cryptohash-sha1 ^>= 0.11.101.0 "Renzo Carbonara @k0001": - - df1 ^>= 0.4 + - df1 ^>= 0.4.2 - di ^>= 1.3 - di-core ^>= 1.0.4 - di-df1 ^>= 1.2.1 - di-handle ^>= 1.0.1 - - di-monad ^>= 1.3.1 - - exinst < 0 + - di-monad ^>= 1.3.5 + - exinst ^>= 0.9 - flay ^>= 0.4 - network-simple ^>= 0.4.5 - - network-simple-tls ^>= 0.4 + - network-simple-tls < 0 # 0.4.1 compile fail https://github.com/k0001/network-simple/issues/37 - pipes-aeson < 0 - - pipes-attoparsec ^>= 0.5.1.5 - - pipes-binary < 0 + - pipes-attoparsec ^>= 0.6.0 + - pipes-binary ^>= 0.4.4 - pipes-network < 0 - pipes-network-tls < 0 - - safe-money < 0 + - safe-money ^>= 0.9.1 - vector-bytes-instances ^>= 0.1.1 - - xmlbf-xeno ^>= 0.2 - - xmlbf-xmlhtml ^>= 0.2 - - xmlbf ^>= 0.6.1 + - xmlbf-xeno ^>= 0.2.2 + - xmlbf-xmlhtml ^>= 0.2.2 + - xmlbf ^>= 0.7 "Tomas Carnecky @wereHamster": - avers < 0 - avers-api < 0 - avers-server < 0 - - css-syntax < 0 + - css-syntax ^>= 0.1.0.1 - etcd < 0 - github-types ^>= 0.2.1 - github-webhook-handler < 0 @@ -1809,19 +1915,16 @@ packages: - mole < 0 - publicsuffix < 0 - rethinkdb-client-driver < 0 - - snap-blaze < 0 + - snap-blaze ^>= 0.2.1.5 "Alexandr Kurilin @alex_kurilin": - bcrypt ^>= 0.0.11 "Jeffrey Rosenbluth @jeffreyrosenbluth": - - palette ^>= 0.3.0.2 - - diagrams-canvas < 0 + - palette ^>= 0.3.0.3 + - diagrams-canvas ^>= 1.4.1.2 - svg-builder ^>= 0.1.1 - "GabrĂ­el ArthĂșr PĂ©tursson @polarina": - - sdl2 ^>= 2.5.3.0 - "Leon Mergen @solatis": - base32string ^>= 0.9.1 - base58string ^>= 0.10.0 @@ -1832,252 +1935,449 @@ packages: - bitcoin-tx < 0 - bitcoin-types < 0 - hexstring < 0 - - network-attoparsec < 0 # MonadFail - - network-anonymous-i2p < 0 + - network-attoparsec < 0 # 0.12.2 compile fail MonadFail + - network-anonymous-i2p < 0 # 0.10.0 compile fail - network-anonymous-tor < 0 "Timothy Jones @zmthy": - - http-media ^>= 0.8.0.0 + - http-media ^>= 0.8.1.1 "Greg V @myfreeweb": - - pcre-heavy ^>= 1.0.0.2 + - pcre-heavy ^>= 1.0.0.3 - http-link-header ^>= 1.2.1 - - microformats2-parser < 0 - - hspec-expectations-pretty-diff ^>= 0.7.2.5 + - microformats2-parser < 0 # 1.0.2.2 compile fail aeson >= 2 + - hspec-expectations-pretty-diff ^>= 0.7.2.6 - wai-cli ^>= 0.2.3 - magicbane < 0 "Francesco Mazzoli @bitonic": - - language-c-quote ^>= 0.13 + - language-c-quote ^>= 0.13.0.1 "Sönke Hahn @soenkehahn": - generics-eot ^>= 0.4.0.1 - - getopt-generics ^>= 0.13.0.4 + - getopt-generics ^>= 0.13.1.0 - graph-wrapper ^>= 0.2.6.0 - string-conversions ^>= 0.4.0.1 - hspec-checkers ^>= 0.1.0.2 - FindBin ^>= 0.0.5 "Jan Stolarek @jstolarek": - - tasty-program ^>= 1.0.5 + - tasty-program ^>= 1.1.0 "Abhinav Gupta @abhinav": - farmhash < 0 - - pinch ^>= 0.4.1.1 - - sandman < 0 # compilation failure (Cabal 3) + - pinch ^>= 0.5.0.0 + - sandman < 0 # 0.2.0.1 compile fail (Cabal 3) "Adam C. Foltzer @acfoltzer": - gitrev ^>= 1.3.1 - - persistent-refs ^>= 0.4 + - persistent-refs < 0 # 0.4 compile fail https://github.com/acfoltzer/persistent-refs/issues/3 "Luke Taylor @tekul": - - jose-jwt ^>= 0.9.2 + - jose-jwt ^>= 0.9.6 "Brendan Hay @brendanhay": - - amazonka < 0 - - amazonka-core < 0 - - amazonka-test < 0 - - amazonka-apigateway < 0 - - amazonka-application-autoscaling < 0 - - amazonka-appstream < 0 - - amazonka-athena < 0 - - amazonka-autoscaling < 0 - - amazonka-budgets < 0 - - amazonka-certificatemanager < 0 - - amazonka-cloudformation < 0 - - amazonka-cloudfront < 0 - - amazonka-cloudhsm < 0 - - amazonka-cloudsearch < 0 - - amazonka-cloudsearch-domains < 0 - - amazonka-cloudtrail < 0 - - amazonka-cloudwatch < 0 - - amazonka-cloudwatch-events < 0 - - amazonka-cloudwatch-logs < 0 - - amazonka-codebuild < 0 - - amazonka-codecommit < 0 - - amazonka-codedeploy < 0 - - amazonka-codepipeline < 0 - - amazonka-cognito-identity < 0 - - amazonka-cognito-idp < 0 - - amazonka-cognito-sync < 0 - - amazonka-config < 0 - - amazonka-datapipeline < 0 - - amazonka-devicefarm < 0 - - amazonka-directconnect < 0 - - amazonka-discovery < 0 - - amazonka-dms < 0 - - amazonka-ds < 0 - - amazonka-dynamodb < 0 - - amazonka-dynamodb-streams < 0 - - amazonka-ec2 < 0 # takes too much memory to build https://github.com/brendanhay/amazonka/issues/549 - - amazonka-ecr < 0 - - amazonka-ecs < 0 - - amazonka-efs < 0 - - amazonka-elasticache < 0 - - amazonka-elasticbeanstalk < 0 - - amazonka-elasticsearch < 0 - - amazonka-elastictranscoder < 0 - - amazonka-elb < 0 - - amazonka-elbv2 < 0 - - amazonka-emr < 0 - - amazonka-gamelift < 0 - - amazonka-glacier < 0 - - amazonka-glue < 0 - - amazonka-health < 0 - - amazonka-iam < 0 - - amazonka-importexport < 0 - - amazonka-inspector < 0 - - amazonka-iot < 0 - - amazonka-iot-dataplane < 0 - - amazonka-kinesis < 0 - - amazonka-kinesis-analytics < 0 - - amazonka-kinesis-firehose < 0 - - amazonka-kms < 0 - - amazonka-lambda < 0 - - amazonka-lightsail < 0 - - amazonka-marketplace-analytics < 0 - - amazonka-marketplace-metering < 0 - - amazonka-ml < 0 - - amazonka-opsworks < 0 - - amazonka-opsworks-cm < 0 - - amazonka-pinpoint < 0 - - amazonka-polly < 0 - - amazonka-rds < 0 - - amazonka-redshift < 0 - - amazonka-rekognition < 0 - - amazonka-route53 < 0 - - amazonka-route53-domains < 0 - - amazonka-s3 < 0 - - amazonka-sdb < 0 - - amazonka-servicecatalog < 0 - - amazonka-ses < 0 - - amazonka-shield < 0 - - amazonka-sms < 0 - - amazonka-snowball < 0 - - amazonka-sns < 0 - - amazonka-sqs < 0 - - amazonka-ssm < 0 - - amazonka-stepfunctions < 0 - - amazonka-storagegateway < 0 - - amazonka-sts < 0 - - amazonka-support < 0 - - amazonka-swf < 0 - - amazonka-waf < 0 - - amazonka-workspaces < 0 - - amazonka-xray < 0 + - amazonka ^>= 2.0 + - amazonka-core ^>= 2.0 + - amazonka-test ^>= 2.0 + - amazonka-accessanalyzer ^>= 2.0 + - amazonka-account ^>= 2.0 + - amazonka-amp ^>= 2.0 + - amazonka-amplify ^>= 2.0 + - amazonka-amplifybackend ^>= 2.0 + - amazonka-amplifyuibuilder ^>= 2.0 + - amazonka-apigateway ^>= 2.0 + - amazonka-apigatewaymanagementapi ^>= 2.0 + - amazonka-apigatewayv2 ^>= 2.0 + - amazonka-appconfig ^>= 2.0 + - amazonka-appconfigdata ^>= 2.0 + - amazonka-appflow ^>= 2.0 + - amazonka-appintegrations ^>= 2.0 + - amazonka-application-autoscaling ^>= 2.0 + - amazonka-application-insights ^>= 2.0 + - amazonka-applicationcostprofiler ^>= 2.0 + - amazonka-appmesh ^>= 2.0 + - amazonka-apprunner ^>= 2.0 + - amazonka-appstream ^>= 2.0 + - amazonka-arc-zonal-shift ^>= 2.0 + - amazonka-athena ^>= 2.0 + - amazonka-auditmanager ^>= 2.0 + - amazonka-autoscaling ^>= 2.0 + - amazonka-backup ^>= 2.0 + - amazonka-backup-gateway ^>= 2.0 + - amazonka-backupstorage ^>= 2.0 + - amazonka-billingconductor ^>= 2.0 + - amazonka-braket ^>= 2.0 + - amazonka-budgets ^>= 2.0 + - amazonka-certificatemanager ^>= 2.0 + - amazonka-chime ^>= 2.0 + - amazonka-chime-sdk-identity ^>= 2.0 + - amazonka-chime-sdk-media-pipelines ^>= 2.0 + - amazonka-chime-sdk-meetings ^>= 2.0 + - amazonka-chime-sdk-messaging ^>= 2.0 + - amazonka-chime-sdk-voice ^>= 2.0 + - amazonka-cloudcontrol ^>= 2.0 + - amazonka-cloudformation ^>= 2.0 + - amazonka-cloudfront ^>= 2.0 + - amazonka-cloudhsm ^>= 2.0 + - amazonka-cloudsearch ^>= 2.0 + - amazonka-cloudsearch-domains ^>= 2.0 + - amazonka-cloudtrail ^>= 2.0 + - amazonka-cloudwatch ^>= 2.0 + - amazonka-cloudwatch-events ^>= 2.0 + - amazonka-cloudwatch-logs ^>= 2.0 + - amazonka-codeartifact ^>= 2.0 + - amazonka-codebuild ^>= 2.0 + - amazonka-codecommit ^>= 2.0 + - amazonka-codedeploy ^>= 2.0 + - amazonka-codeguru-reviewer ^>= 2.0 + - amazonka-codeguruprofiler ^>= 2.0 + - amazonka-codepipeline ^>= 2.0 + - amazonka-codestar-connections ^>= 2.0 + - amazonka-codestar-notifications ^>= 2.0 + - amazonka-cognito-identity ^>= 2.0 + - amazonka-cognito-idp ^>= 2.0 + - amazonka-cognito-sync ^>= 2.0 + - amazonka-comprehendmedical ^>= 2.0 + - amazonka-compute-optimizer ^>= 2.0 + - amazonka-config ^>= 2.0 + - amazonka-connect-contact-lens ^>= 2.0 + - amazonka-connectcampaigns ^>= 2.0 + - amazonka-connectcases ^>= 2.0 + - amazonka-connectparticipant ^>= 2.0 + - amazonka-controltower ^>= 2.0 + - amazonka-customer-profiles ^>= 2.0 + - amazonka-databrew ^>= 2.0 + - amazonka-dataexchange ^>= 2.0 + - amazonka-datapipeline ^>= 2.0 + - amazonka-datasync ^>= 2.0 + - amazonka-detective ^>= 2.0 + - amazonka-devicefarm ^>= 2.0 + - amazonka-devops-guru ^>= 2.0 + - amazonka-directconnect ^>= 2.0 + - amazonka-discovery ^>= 2.0 + - amazonka-dlm ^>= 2.0 + - amazonka-dms ^>= 2.0 + - amazonka-docdb ^>= 2.0 + - amazonka-docdb-elastic ^>= 2.0 + - amazonka-drs ^>= 2.0 + - amazonka-ds ^>= 2.0 + - amazonka-dynamodb ^>= 2.0 + - amazonka-dynamodb-streams ^>= 2.0 + - amazonka-ebs ^>= 2.0 + - amazonka-ec2 ^>= 2.0 + - amazonka-ec2-instance-connect ^>= 2.0 + - amazonka-ecr ^>= 2.0 + - amazonka-ecr-public ^>= 2.0 + - amazonka-ecs ^>= 2.0 + - amazonka-efs ^>= 2.0 + - amazonka-eks ^>= 2.0 + - amazonka-elastic-inference ^>= 2.0 + - amazonka-elasticache ^>= 2.0 + - amazonka-elasticbeanstalk ^>= 2.0 + - amazonka-elasticsearch ^>= 2.0 + - amazonka-elastictranscoder ^>= 2.0 + - amazonka-elb ^>= 2.0 + - amazonka-elbv2 ^>= 2.0 + - amazonka-emr ^>= 2.0 + - amazonka-emr-containers ^>= 2.0 + - amazonka-emr-serverless ^>= 2.0 + - amazonka-evidently ^>= 2.0 + - amazonka-finspace ^>= 2.0 + - amazonka-finspace-data ^>= 2.0 + - amazonka-fis ^>= 2.0 + - amazonka-forecast ^>= 2.0 + - amazonka-forecastquery ^>= 2.0 + - amazonka-frauddetector ^>= 2.0 + - amazonka-fsx ^>= 2.0 + - amazonka-gamelift ^>= 2.0 + - amazonka-gamesparks ^>= 2.0 + - amazonka-glacier ^>= 2.0 + - amazonka-globalaccelerator ^>= 2.0 + - amazonka-glue ^>= 2.0 + - amazonka-grafana ^>= 2.0 + - amazonka-greengrassv2 ^>= 2.0 + - amazonka-groundstation ^>= 2.0 + - amazonka-health ^>= 2.0 + - amazonka-healthlake ^>= 2.0 + - amazonka-honeycode ^>= 2.0 + - amazonka-iam ^>= 2.0 + - amazonka-identitystore ^>= 2.0 + - amazonka-imagebuilder ^>= 2.0 + - amazonka-importexport ^>= 2.0 + - amazonka-inspector ^>= 2.0 + - amazonka-inspector2 ^>= 2.0 + - amazonka-iot ^>= 2.0 + - amazonka-iot-dataplane ^>= 2.0 + - amazonka-iot-roborunner ^>= 2.0 + - amazonka-iot1click-devices ^>= 2.0 + - amazonka-iot1click-projects ^>= 2.0 + - amazonka-iotdeviceadvisor ^>= 2.0 + - amazonka-iotevents ^>= 2.0 + - amazonka-iotevents-data ^>= 2.0 + - amazonka-iotfleethub ^>= 2.0 + - amazonka-iotfleetwise ^>= 2.0 + - amazonka-iotsecuretunneling ^>= 2.0 + - amazonka-iotsitewise ^>= 2.0 + - amazonka-iotthingsgraph ^>= 2.0 + - amazonka-iottwinmaker ^>= 2.0 + - amazonka-iotwireless ^>= 2.0 + - amazonka-ivs ^>= 2.0 + - amazonka-ivschat ^>= 2.0 + - amazonka-kafka ^>= 2.0 + - amazonka-kafkaconnect ^>= 2.0 + - amazonka-kendra ^>= 2.0 + - amazonka-keyspaces ^>= 2.0 + - amazonka-kinesis ^>= 2.0 + - amazonka-kinesis-analytics ^>= 2.0 + - amazonka-kinesis-firehose ^>= 2.0 + - amazonka-kinesis-video-signaling ^>= 2.0 + - amazonka-kinesis-video-webrtc-storage ^>= 2.0 + - amazonka-kinesisanalyticsv2 ^>= 2.0 + - amazonka-kms ^>= 2.0 + - amazonka-lakeformation ^>= 2.0 + - amazonka-lambda ^>= 2.0 + - amazonka-lexv2-models ^>= 2.0 + - amazonka-license-manager ^>= 2.0 + - amazonka-license-manager-linux-subscriptions ^>= 2.0 + - amazonka-license-manager-user-subscriptions ^>= 2.0 + - amazonka-lightsail ^>= 2.0 + - amazonka-location ^>= 2.0 + - amazonka-lookoutequipment ^>= 2.0 + - amazonka-lookoutmetrics ^>= 2.0 + - amazonka-lookoutvision ^>= 2.0 + - amazonka-m2 ^>= 2.0 + - amazonka-macie ^>= 2.0 + - amazonka-maciev2 ^>= 2.0 + - amazonka-managedblockchain ^>= 2.0 + - amazonka-marketplace-analytics ^>= 2.0 + - amazonka-marketplace-catalog ^>= 2.0 + - amazonka-marketplace-metering ^>= 2.0 + - amazonka-mediaconnect ^>= 2.0 + - amazonka-mediapackage-vod ^>= 2.0 + - amazonka-mediatailor ^>= 2.0 + - amazonka-memorydb ^>= 2.0 + - amazonka-mgn ^>= 2.0 + - amazonka-migration-hub-refactor-spaces ^>= 2.0 + - amazonka-migrationhub-config ^>= 2.0 + - amazonka-migrationhuborchestrator ^>= 2.0 + - amazonka-migrationhubstrategy ^>= 2.0 + - amazonka-ml ^>= 2.0 + - amazonka-mwaa ^>= 2.0 + - amazonka-neptune ^>= 2.0 + - amazonka-network-firewall ^>= 2.0 + - amazonka-networkmanager ^>= 2.0 + - amazonka-nimble ^>= 2.0 + - amazonka-oam ^>= 2.0 + - amazonka-omics ^>= 2.0 + - amazonka-opensearch ^>= 2.0 + - amazonka-opensearchserverless ^>= 2.0 + - amazonka-opsworks ^>= 2.0 + - amazonka-opsworks-cm ^>= 2.0 + - amazonka-outposts ^>= 2.0 + - amazonka-panorama ^>= 2.0 + - amazonka-personalize ^>= 2.0 + - amazonka-personalize-events ^>= 2.0 + - amazonka-personalize-runtime ^>= 2.0 + - amazonka-pi ^>= 2.0 + - amazonka-pinpoint ^>= 2.0 + - amazonka-pinpoint-email ^>= 2.0 + - amazonka-pinpoint-sms-voice ^>= 2.0 + - amazonka-pinpoint-sms-voice-v2 ^>= 2.0 + - amazonka-pipes ^>= 2.0 + - amazonka-polly ^>= 2.0 + - amazonka-privatenetworks ^>= 2.0 + - amazonka-proton ^>= 2.0 + - amazonka-qldb ^>= 2.0 + - amazonka-qldb-session ^>= 2.0 + - amazonka-quicksight ^>= 2.0 + - amazonka-ram ^>= 2.0 + - amazonka-rbin ^>= 2.0 + - amazonka-rds ^>= 2.0 + - amazonka-rds-data ^>= 2.0 + - amazonka-redshift ^>= 2.0 + - amazonka-redshift-data ^>= 2.0 + - amazonka-redshift-serverless ^>= 2.0 + - amazonka-rekognition ^>= 2.0 + - amazonka-resiliencehub ^>= 2.0 + - amazonka-resource-explorer-v2 ^>= 2.0 + - amazonka-robomaker ^>= 2.0 + - amazonka-rolesanywhere ^>= 2.0 + - amazonka-route53 ^>= 2.0 + - amazonka-route53-domains ^>= 2.0 + - amazonka-route53-recovery-cluster ^>= 2.0 + - amazonka-route53-recovery-control-config ^>= 2.0 + - amazonka-route53-recovery-readiness ^>= 2.0 + - amazonka-route53resolver ^>= 2.0 + - amazonka-rum ^>= 2.0 + - amazonka-s3 ^>= 2.0 + - amazonka-s3outposts ^>= 2.0 + - amazonka-sagemaker-a2i-runtime ^>= 2.0 + - amazonka-sagemaker-edge ^>= 2.0 + - amazonka-sagemaker-featurestore-runtime ^>= 2.0 + - amazonka-sagemaker-geospatial ^>= 2.0 + - amazonka-sagemaker-metrics ^>= 2.0 + - amazonka-savingsplans ^>= 2.0 + - amazonka-scheduler ^>= 2.0 + - amazonka-schemas ^>= 2.0 + - amazonka-sdb ^>= 2.0 + - amazonka-securityhub ^>= 2.0 + - amazonka-securitylake ^>= 2.0 + - amazonka-service-quotas ^>= 2.0 + - amazonka-servicecatalog ^>= 2.0 + - amazonka-servicecatalog-appregistry ^>= 2.0 + - amazonka-ses ^>= 2.0 + - amazonka-sesv2 ^>= 2.0 + - amazonka-shield ^>= 2.0 + - amazonka-signer ^>= 2.0 + - amazonka-simspaceweaver ^>= 2.0 + - amazonka-sms ^>= 2.0 + - amazonka-sms-voice ^>= 2.0 + - amazonka-snow-device-management ^>= 2.0 + - amazonka-snowball ^>= 2.0 + - amazonka-sns ^>= 2.0 + - amazonka-sqs ^>= 2.0 + - amazonka-ssm ^>= 2.0 + - amazonka-ssm-contacts ^>= 2.0 + - amazonka-ssm-incidents ^>= 2.0 + - amazonka-ssm-sap ^>= 2.0 + - amazonka-sso ^>= 2.0 + - amazonka-sso-admin ^>= 2.0 + - amazonka-sso-oidc ^>= 2.0 + - amazonka-stepfunctions ^>= 2.0 + - amazonka-storagegateway ^>= 2.0 + - amazonka-sts ^>= 2.0 + - amazonka-support ^>= 2.0 + - amazonka-support-app ^>= 2.0 + - amazonka-swf ^>= 2.0 + - amazonka-synthetics ^>= 2.0 + - amazonka-textract ^>= 2.0 + - amazonka-timestream-query ^>= 2.0 + - amazonka-timestream-write ^>= 2.0 + - amazonka-transfer ^>= 2.0 + - amazonka-voice-id ^>= 2.0 + - amazonka-waf ^>= 2.0 + - amazonka-wafv2 ^>= 2.0 + - amazonka-wellarchitected ^>= 2.0 + - amazonka-wisdom ^>= 2.0 + - amazonka-worklink ^>= 2.0 + - amazonka-workmailmessageflow ^>= 2.0 + - amazonka-workspaces ^>= 2.0 + - amazonka-workspaces-web ^>= 2.0 + - amazonka-xray ^>= 2.0 # gogol-* disabled due to `gogol-core` due to `servant`: #6089/closed - # gogol - # gogol-core - # gogol-adexchange-buyer - # gogol-adexchange-seller - # gogol-admin-datatransfer - # gogol-admin-directory - # gogol-admin-emailmigration - # gogol-admin-reports - # gogol-adsense - # gogol-adsense-host - # gogol-affiliates - # gogol-analytics - # gogol-android-enterprise - # gogol-android-publisher - # gogol-appengine - # gogol-apps-activity - # gogol-apps-calendar - # gogol-apps-licensing - # gogol-apps-reseller - # gogol-apps-tasks - # gogol-appstate - # gogol-autoscaler - # gogol-bigquery - # gogol-billing - # gogol-blogger - # gogol-books - # gogol-civicinfo - # gogol-classroom - # gogol-cloudmonitoring - # gogol-cloudtrace - # gogol-compute - # gogol-container - # gogol-customsearch - # gogol-dataflow - # gogol-dataproc - # gogol-datastore - # gogol-debugger - # gogol-deploymentmanager - # gogol-dfareporting - # gogol-discovery - # gogol-dns - # gogol-doubleclick-bids - # gogol-doubleclick-search - # gogol-drive - # gogol-firebase-rules - # gogol-fitness - # gogol-fonts - # gogol-freebasesearch - # gogol-fusiontables - # gogol-games - # gogol-games-configuration - # gogol-games-management - # gogol-genomics - # gogol-gmail - # gogol-groups-migration - # gogol-groups-settings - # gogol-identity-toolkit - # gogol-kgsearch - # gogol-latencytest - # gogol-logging - # gogol-maps-coordinate - # gogol-maps-engine - # gogol-mirror - # gogol-monitoring - # gogol-oauth2 - # gogol-pagespeed - # gogol-partners - # gogol-people - # gogol-play-moviespartner - # gogol-plus - # gogol-plus-domains - # gogol-prediction - # gogol-proximitybeacon - # gogol-pubsub - # gogol-qpxexpress - # gogol-replicapool - # gogol-replicapool-updater - # gogol-resourcemanager - # gogol-resourceviews - # gogol-script - # gogol-sheets - # gogol-shopping-content - # gogol-siteverification - # gogol-spectrum - # gogol-sqladmin - # gogol-storage - # gogol-storage-transfer - # gogol-tagmanager - # gogol-taskqueue - # gogol-translate - # gogol-urlshortener - # gogol-useraccounts - # gogol-vision - # gogol-webmaster-tools - # gogol-youtube - # gogol-youtube-analytics - # gogol-youtube-reporting - - ede ^>= 0.3.2.0 - - pagerduty < 0 # build failure with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 + - gogol < 0 + - gogol-core < 0 # 0.5.0 compile fail + - gogol-adexchange-buyer < 0 + - gogol-adexchange-seller < 0 + - gogol-admin-datatransfer < 0 + - gogol-admin-directory < 0 + - gogol-admin-emailmigration < 0 + - gogol-admin-reports < 0 + - gogol-adsense < 0 + - gogol-adsense-host < 0 + - gogol-affiliates < 0 + - gogol-analytics < 0 + - gogol-android-enterprise < 0 + - gogol-android-publisher < 0 + - gogol-appengine < 0 + - gogol-apps-activity < 0 + - gogol-apps-calendar < 0 + - gogol-apps-licensing < 0 + - gogol-apps-reseller < 0 + - gogol-apps-tasks < 0 + - gogol-appstate < 0 + - gogol-autoscaler < 0 + - gogol-bigquery < 0 + - gogol-billing < 0 + - gogol-blogger < 0 + - gogol-books < 0 + - gogol-civicinfo < 0 + - gogol-classroom < 0 + - gogol-cloudmonitoring < 0 + - gogol-cloudtrace < 0 + - gogol-compute < 0 + - gogol-container < 0 + - gogol-customsearch < 0 + - gogol-dataflow < 0 + - gogol-dataproc < 0 + - gogol-datastore < 0 + - gogol-debugger < 0 + - gogol-deploymentmanager < 0 + - gogol-dfareporting < 0 + - gogol-discovery < 0 + - gogol-dns < 0 + - gogol-doubleclick-bids < 0 + - gogol-doubleclick-search < 0 + - gogol-drive < 0 + - gogol-firebase-rules < 0 + - gogol-fitness < 0 + - gogol-fonts < 0 + - gogol-freebasesearch < 0 + - gogol-fusiontables < 0 + - gogol-games < 0 + - gogol-games-configuration < 0 + - gogol-games-management < 0 + - gogol-genomics < 0 + - gogol-gmail < 0 + - gogol-groups-migration < 0 + - gogol-groups-settings < 0 + - gogol-identity-toolkit < 0 + - gogol-kgsearch < 0 + - gogol-latencytest < 0 + - gogol-logging < 0 + - gogol-maps-coordinate < 0 + - gogol-maps-engine < 0 + - gogol-mirror < 0 + - gogol-monitoring < 0 + - gogol-oauth2 < 0 + - gogol-pagespeed < 0 + - gogol-partners < 0 + - gogol-people < 0 + - gogol-play-moviespartner < 0 + - gogol-plus < 0 + - gogol-plus-domains < 0 + - gogol-prediction < 0 + - gogol-proximitybeacon < 0 + - gogol-pubsub < 0 + - gogol-qpxexpress < 0 + - gogol-replicapool < 0 + - gogol-replicapool-updater < 0 + - gogol-resourcemanager < 0 + - gogol-resourceviews < 0 + - gogol-script < 0 + - gogol-sheets < 0 + - gogol-shopping-content < 0 + - gogol-siteverification < 0 + - gogol-spectrum < 0 + - gogol-sqladmin < 0 + - gogol-storage < 0 + - gogol-storage-transfer < 0 + - gogol-tagmanager < 0 + - gogol-taskqueue < 0 + - gogol-translate < 0 + - gogol-urlshortener < 0 + - gogol-useraccounts < 0 + - gogol-vision < 0 + - gogol-webmaster-tools < 0 + - gogol-youtube < 0 + - gogol-youtube-analytics < 0 + - gogol-youtube-reporting < 0 + - ede < 0 # 0.3.3.0 compile fail + - pagerduty < 0 # 0.0.8 compile fail with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 - semver ^>= 0.4.0.1 - - text-manipulate ^>= 0.3.0.0 + - text-manipulate ^>= 0.3.1.0 "Nick Partridge @nkpart": - - cabal-file-th ^>= 0.2.7 + - cabal-file-th < 0 # 0.2.7 compile fail https://github.com/nkpart/cabal-file-th/issues/13 "Gershom Bazerman @gbaz": - - jmacro ^>= 0.6.17 - - jmacro-rpc ^>= 0.3.3 + - jmacro ^>= 0.6.18 + - jmacro-rpc < 0 # 0.3.3 compile fail - jmacro-rpc-snap < 0 - - jmacro-rpc-happstack ^>= 0.3.2 + - jmacro-rpc-happstack < 0 - - mbox ^>= 0.3.4 + - mbox < 0 - kmeans ^>= 0.1.3 - boolsimplifier ^>= 0.1.8 - cubicspline ^>= 0.1.2 @@ -2085,25 +2385,26 @@ packages: "Alexander Bondarenko @dpwiz": - hedn ^>= 0.3.0.4 - - soap ^>= 0.2.3.6 - - soap-tls ^>= 0.1.1.4 - - soap-openssl ^>= 0.1.0.2 + - sdl2 ^>= 2.5.5.0 + - soap < 0 + - soap-tls < 0 + - soap-openssl < 0 "Andres Löh @kosmikus": - - generics-sop ^>= 0.5.1.1 - - records-sop ^>= 0.1.1.0 - - sop-core ^>= 0.5.0.1 + - generics-sop ^>= 0.5.1.3 && <0.5.1.4 # https://github.com/commercialhaskell/stackage/issues/7155 + - records-sop ^>= 0.1.1.1 + - sop-core ^>= 0.5.0.2 "Vivian McPhail @amcphail": - hmatrix-gsl-stats ^>= 0.4.1.8 - hsignal ^>= 0.2.7.5 - hstatistics ^>= 0.3.1 - - plot < 0 + - plot < 0 # 0.2.3.11 # fails to compile (#7017) - vector-buffer ^>= 0.4.1 - - hmatrix-repa ^>= 0.1.2.2 + - hmatrix-repa < 0 "Noam Lewis @sinelaw": - - xml-to-json ^>= 2.0.1 + - xml-to-json < 0 - xml-to-json-fast ^>= 2.0.0 - wl-pprint ^>= 1.2.1 # not a maintainer @@ -2112,35 +2413,33 @@ packages: - hxt-tagsoup ^>= 9.1.4 - hexpat ^>= 0.20.13 - digits ^>= 0.3.1 - - logict ^>= 0.7.1.0 + - logict ^>= 0.8.1.0 - leveldb-haskell ^>= 0.6.5 - system-argv0 ^>= 0.1.1 - - markdown-unlit ^>= 0.5.1 + - markdown-unlit ^>= 0.6.0 "Brian McKenna @puffnfresh": - - jwt ^>= 0.10.1 && <0.11 # https://github.com/commercialhaskell/stackage/issues/6356 + - jwt ^>= 0.11.0 "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - setlocale ^>= 1.0.0.10 "Taylor Fausak @tfausak": - - autoexporter ^>= 1.1.20 - - burrito ^>= 1.2.0.4 - - derulo ^>= 1.0.10 - - flow ^>= 1.0.23 - - github-release ^>= 1.3.8 - - json-feed ^>= 1.0.15 - - lackey ^>= 1.0.16 - - list-singleton ^>= 1.0.0.5 - - rampart ^>= 1.1.0.4 - - ratel ^>= 1.0.17 - - ratel-wai ^>= 1.1.5 - - rattletrap ^>= 11.2.4 - - salve ^>= 1.0.11 - - splint ^>= 1.0.1.4 - - strive < 0 - - witch ^>= 0.3.4.1 - - wuss ^>= 1.1.19 + - autoexporter ^>= 2.0.0.9 + - burrito ^>= 2.0.1.7 + - flow ^>= 2.0.0.4 + - github-release ^>= 2.0.0.9 + - json-feed ^>= 2.0.0.10 + - lackey ^>= 2.0.0.7 + - patrol ^>= 1.0.0.6 + - rampart ^>= 2.0.0.7 + - ratel ^>= 2.0.0.10 + - ratel-wai ^>= 2.0.0.5 + - rattletrap ^>= 12.1.2 + - salve ^>= 2.0.0.4 + - strive ^>= 6.0.0.10 + - witch ^>= 1.2.0.3 + - wuss ^>= 2.0.1.5 - bmp ^>= 1.2.6.3 # @benl23x5 - gpolyline ^>= 0.1.0.1 # @fegu @@ -2148,28 +2447,28 @@ packages: "Marios Titas @redneb": - HsOpenSSL-x509-system ^>= 0.1.0.4 - adler32 ^>= 0.1.2.0 - - btrfs < 0 + - btrfs ^>= 0.2.1.0 - disk-free-space ^>= 0.1.0.1 - hxt-css ^>= 0.1.0.3 - islink ^>= 0.1.0.0 - - linux-file-extents ^>= 0.2.0.0 - - linux-namespaces ^>= 0.1.3.0 + - linux-file-extents ^>= 0.2.0.1 + - linux-namespaces ^>= 0.1.3.1 "Will Coster @fimad": - - prometheus-client ^>= 1.1.0 + - prometheus-client ^>= 1.1.1 - prometheus-metrics-ghc ^>= 1.0.1.2 - - scalpel ^>= 0.6.2 - - scalpel-core ^>= 0.6.2 + - scalpel ^>= 0.6.2.2 + - scalpel-core ^>= 0.6.2.2 - wai-middleware-prometheus ^>= 1.0.0.1 "William Casarin @jb55": - bson-lens ^>= 0.1.1 - cased ^>= 0.1.0.0 - elm-export ^>= 0.6.0.1 - - elm-export-persistent ^>= 1.0.0 + - elm-export-persistent < 0 - pipes-csv ^>= 1.4.3 - pipes-mongodb ^>= 0.1.0.0 - - servant-elm < 0 + - servant-elm ^>= 0.7.3 - servant-streaming < 0 - servant-streaming-client < 0 - servant-streaming-server < 0 @@ -2181,30 +2480,41 @@ packages: "Yitz Gale @ygale": - boolean-normal-forms < 0 - strict-concurrency ^>= 0.2.4.3 - - timezone-series ^>= 0.1.9 - - timezone-olson ^>= 0.2.0 + - timezone-series ^>= 0.1.13 + - timezone-olson ^>= 0.2.1 "Harry Garrood @hdgarrood": - - aeson-better-errors ^>= 0.9.1.0 + - aeson-better-errors < 0 "Mitchell Rosen @mitchellwrosen": - - ki < 0 - - tasty-hspec ^>= 1.2 - - termbox < 0 - - text-ansi ^>= 0.1.1 - - timer-wheel ^>= 0.3.0 + - hasql-interpolate ^>= 0.2.1.0 + - hasql-listen-notify ^>= 0.1.0 + - int-supply ^>= 1.0.0 + - ki ^>= 1.0.1.1 + - ki-unlifted ^>= 1.0.0.2 + - list-shuffle ^>= 1.0.0 + - park-bench ^>= 0.1.1.0 + - tasty-hspec ^>= 1.2.0.4 + - termbox ^>= 2.0.0.1 + - termbox-banana ^>= 2.0.0 + - termbox-bindings-c ^>= 0.1.0.1 + - termbox-bindings-hs ^>= 1.0.0 + - termbox-tea ^>= 1.0.0 + - text-ansi ^>= 0.3.0.1 + - timer-wheel ^>= 1.0.0 "QBayLogic B.V. @martijnbastiaan": - - ghc-tcplugins-extra ^>= 0.4.2 - - ghc-typelits-extra ^>= 0.4.3 - - ghc-typelits-knownnat ^>= 0.7.6 - - ghc-typelits-natnormalise ^>= 0.7.6 - - clash-prelude ^>= 1.4.6 - - clash-lib ^>= 1.4.6 - - clash-ghc ^>= 1.4.6 + - ghc-tcplugins-extra ^>= 0.4.5 + - ghc-typelits-extra ^>= 0.4.6 + - ghc-typelits-knownnat ^>= 0.7.10 + - ghc-typelits-natnormalise ^>= 0.7.9 + - clash-prelude ^>= 1.8.1 + # - clash-lib # https://github.com/commercialhaskell/stackage/issues/7176 + # - clash-ghc # https://github.com/commercialhaskell/stackage/issues/7176 "Martijn Bastiaan @martijnbastiaan": - - aeson-pretty ^>= 0.8.9 + - aeson-pretty ^>= 0.8.10 + - doctest-parallel ^>= 0.3.1 "Athan Clark @athanclark": - aeson-attoparsec ^>= 0.0.0 @@ -2213,26 +2523,25 @@ packages: - attoparsec-base64 ^>= 0.0.0 - attoparsec-path ^>= 0.0.0.1 # - attoparsec-ip # Deprecated in favor of ip - # - attoparsec-uri + - attoparsec-uri ^>= 0.0.9 - chan ^>= 0.0.4.1 - commutative ^>= 0.0.2 - - composition-extra ^>= 2.0.0 + - composition-extra ^>= 2.1.0 - every ^>= 0.0.1 - extractable-singleton ^>= 0.0.1 - - follow-file ^>= 0.0.3 - - HSet < 0 # compilation failure, duplicate Hashable instance - - markup < 0 - - monad-control-aligned ^>= 0.0.1.1 + - follow-file < 0 # 0.0.3 compile fail https://github.com/athanclark/follow-file/issues/1 + - HSet ^>= 0.0.2 + - markup < 0 # 4.2.0 compile fail https://github.com/athanclark/markup/issues/7 + - monad-control-aligned ^>= 0.0.2.1 - monadoid ^>= 0.0.3 - - n-tuple < 0 - - path-extra ^>= 0.2.0 - - pred-set < 0 + - n-tuple ^>= 0.0.3 + - path-extra ^>= 0.3.1 + - pred-set ^>= 0.0.1 - pred-trie < 0 - - path-extra ^>= 0.2.0 - poly-arity ^>= 0.1.0 - quickcheck-combinators < 0 - rose-trees < 0 - - sets ^>= 0.0.6.2 + - sets < 0 - since ^>= 0.0.0 - timemap < 0 - tmapchan ^>= 0.0.3 @@ -2240,59 +2549,63 @@ packages: - tries < 0 - unit-constraint ^>= 0.0.0 - unfoldable-restricted < 0 - - urlpath < 0 + - urlpath ^>= 11.0.2 - wai-transformers ^>= 0.1.0 - websockets-rpc < 0 - websockets-simple ^>= 0.2.0 - webpage ^>= 0.0.5.1 - - ws < 0 + - ws ^>= 0.0.6 "Fumiaki Kinoshita @fumieval": - - boundingboxes < 0 + - boundingboxes ^>= 0.2.3 - control-bool ^>= 0.2.1 - drinkery < 0 - - monad-skeleton ^>= 0.2 - - xml-lens < 0 + - monad-skeleton < 0 + - xml-lens ^>= 0.3.1 - witherable ^>= 0.4.2 - - deriving-aeson ^>= 0.2.8 + - deriving-aeson ^>= 0.2.9 + - data-functor-logistic ^>= 0.0 "Peter Harpending @pharpend": - editor-open ^>= 0.6.0.0 - - exceptional < 0 # MonadFail + - exceptional < 0 # 0.3.0.0 MonadFail - pager ^>= 0.1.1.0 - semiring-simple ^>= 1.0.0.1 "Philipp Hausmann @phile314": - - language-thrift ^>= 0.12.0.1 + - language-thrift < 0 "Michael Thompson @michaelt": - - pipes-text < 0 + - pipes-text ^>= 1.0.1 - lens-simple < 0 - - lens-family-core ^>= 2.1.0 - - lens-family ^>= 2.1.1 + - lens-family-core ^>= 2.1.2 + - lens-family ^>= 2.1.2 + + "Sjoerd Visscher @sjoerdvisscher": + - one-liner ^>= 2.1 "Justin Le @mstksg": - - advent-of-code-api ^>= 0.2.8.1 + - advent-of-code-api < 0 # 0.2.8.4 compile fail https://github.com/commercialhaskell/stackage/issues/7038 - auto < 0 - - backprop < 0 + - backprop ^>= 0.2.6.5 - bins < 0 - - conduino ^>= 0.2.2.0 + - conduino < 0 # 0.2.2.0 https://github.com/mstksg/conduino/issues/1 - configurator-export ^>= 0.1.0.1 - decidable < 0 - emd < 0 - - functor-products < 0 # compilation failure https://github.com/mstksg/functor-products/issues/1 - - hamilton < 0 - - hmatrix-backprop < 0 + - functor-products < 0 + - hamilton < 0 # 0.1.0.3 compile fail https://github.com/mstksg/hamilton/issues/9 + - hmatrix-backprop ^>= 0.1.3.0 - hmatrix-vector-sized ^>= 0.1.3.0 - lens-typelevel < 0 - list-witnesses < 0 - - nonempty-containers < 0 - - one-liner-instances < 0 # compile failure (random 1.2) - - prompt ^>= 0.1.1.2 + - nonempty-containers ^>= 0.3.4.5 + - one-liner-instances ^>= 0.1.3.0 + - prompt < 0 # 0.1.1.2 # fails to compile (#7017) - servant-cli < 0 - tagged-binary ^>= 0.2.0.1 - type-combinators-singletons < 0 - - typelits-witnesses < 0 + - typelits-witnesses ^>= 0.4.0.1 - uncertain < 0 - vector-sized ^>= 1.5.0 @@ -2307,7 +2620,7 @@ packages: "Michael Xavier @MichaelXavier": - uri-bytestring ^>= 0.3.3.1 - - cron ^>= 0.7.0 + - cron < 0 # 0.7.0 ghc-9.6 https://github.com/MichaelXavier/cron/issues/50 - tasty-tap ^>= 0.1.0 - tasty-fail-fast ^>= 0.0.3 - drifter ^>= 0.3.0 @@ -2316,12 +2629,12 @@ packages: "Lars Kuhtz @larskuhtz": - wai-cors ^>= 0.2.7 - - configuration-tools ^>= 0.6.1 + - configuration-tools ^>= 0.7.0 - random-bytestring ^>= 0.1.4 "Sam Rijs @srijs": - ndjson-conduit ^>= 0.1.0.5 - - operational-class < 0 + - operational-class < 0 # 0.3.0.0 compile fail https://github.com/srijs/haskell-operational-class/issues/1 - result ^>= 0.2.6.0 "Daniel Patterson @dbp": @@ -2329,22 +2642,22 @@ packages: - fn ^>= 0.3.0.2 "Mathieu Boespflug @mboes": - - choice ^>= 0.2.2 - - distributed-closure < 0 + - choice ^>= 0.2.3 + - distributed-closure ^>= 0.5.0.0 - inline-java < 0 - - inline-r < 0 - - jni < 0 # compilation failure + - inline-r ^>= 1.0.1 + - jni < 0 # 0.8.0 compile fail - jvm < 0 - jvm-streaming < 0 - - H < 0 + - H ^>= 1.0.0 - sparkle < 0 - - th-lift ^>= 0.8.2 + - th-lift ^>= 0.8.4 "Christopher Reichert @creichert": - bencode ^>= 0.6.1.1 - - hsebaysdk ^>= 0.4.1.0 + - hsebaysdk < 0 - dockerfile ^>= 0.2.0 - - wai-middleware-throttle < 0 + - wai-middleware-throttle ^>= 0.3.0.1 - yesod-auth-basic ^>= 0.1.0.3 "Hirotomo Moriwaki @philopon": @@ -2352,60 +2665,60 @@ packages: "Kai Zhang @kaizhang": - matrices ^>= 0.5.0 - - haskell-igraph < 0 # compile failure ghc 8.10.1 #5440/closed + - haskell-igraph < 0 # 0.8.0 compile fail ghc 8.10.1 #5440/closed "Michel Boucey @MichelBoucey": - - IPv6Addr ^>= 2.0.3 - - ip6addr ^>= 1.0.2 - - cayley-client ^>= 0.4.17 - - Spintax ^>= 0.3.6 - - glabrous ^>= 2.0.5 + - IPv6Addr ^>= 2.0.5.1 + - ip6addr ^>= 1.0.3 + - cayley-client < 0 + - Spintax < 0 + - glabrous ^>= 2.0.6.2 - google-oauth2-jwt < 0 - IPv6DB < 0 - - gothic ^>= 0.1.8 - - NanoID ^>= 3.1.1 + - gothic < 0 + - NanoID < 0 "koral koral@mailoo.org @k0ral": - - atom-conduit < 0 - - conduit-parse ^>= 0.2.1.0 - - dublincore-xml-conduit ^>= 0.1.0.2 + - atom-conduit ^>= 0.9.0.1 + - conduit-parse ^>= 0.2.1.1 + - dublincore-xml-conduit ^>= 0.1.0.3 - euler-tour-tree < 0 - - opml-conduit < 0 - - rss-conduit < 0 - - timerep ^>= 2.0.1.0 + - opml-conduit ^>= 0.9.0.0 + - rss-conduit ^>= 0.6.0.1 + - timerep ^>= 2.1.0.0 - xml-conduit-parse < 0 "Daniel Cartwright @chessai": - - streaming ^>= 0.2.3.0 - - streaming-bytestring ^>= 0.2.1 - - country < 0 + - streaming ^>= 0.2.4.0 + - streaming-bytestring ^>= 0.3.2 + - country ^>= 0.2.4.1 - semirings ^>= 0.6 - torsor ^>= 0.1 - - chronos < 0 - - refined < 0 - - these-skinny < 0 - - hedgehog-classes ^>= 0.2.5.2 + - chronos ^>= 1.1.5.1 + - refined ^>= 0.8.1 + - these-skinny ^>= 0.7.5 + - hedgehog-classes ^>= 0.2.5.4 "Kostiantyn Rybnikov @k-bx": - SHA ^>= 1.6.4.4 - currency ^>= 0.2.0.0 - data-ordlist ^>= 0.4.7.0 - digits ^>= 0.3.1 - - dns ^>= 4.0.1 - - friday < 0 - - friday-juicypixels < 0 + - dns ^>= 4.2.0 + - friday ^>= 0.2.3.2 + - friday-juicypixels ^>= 0.1.2.4 - hbeanstalk < 0 - - hedis ^>= 0.15.0 - - hprotoc ^>= 2.4.17 - - hsyslog-udp ^>= 0.2.5 + - hedis ^>= 0.15.2 + - hprotoc < 0 + - hsyslog-udp < 0 - iso3166-country-codes ^>= 0.20140203.8 - iso639 ^>= 0.1.0.3 - - monoidal-containers < 0 + - monoidal-containers ^>= 0.6.4.0 - murmur-hash ^>= 0.1.0.10 - - protocol-buffers ^>= 2.4.17 - - protocol-buffers-descriptor ^>= 2.4.17 + - protocol-buffers < 0 + - protocol-buffers-descriptor < 0 - regex-pcre ^>= 0.95.0.0 - - string-class ^>= 0.1.7.0 + - string-class ^>= 0.1.7.1 - string-combinators ^>= 0.6.0.5 "Rob O'Callahan ropoctl@gmail.com @rcallahan": @@ -2414,13 +2727,13 @@ packages: "John Lenz @wuzzeb": - yesod-static-angular < 0 - - hspec-webdriver < 0 + - hspec-webdriver ^>= 1.2.2 - webdriver-angular < 0 "Sven Heyll @sheyll": - b9 < 0 - type-spec ^>= 0.4.0.0 - - pretty-types ^>= 0.4.0.0 + - pretty-types < 0 # 0.4.0.0 # fails to compile https://github.com/sheyll/pretty-types/issues/2 - function-builder ^>= 0.3.0.1 - bytestring-to-vector ^>= 0.3.0.1 @@ -2433,7 +2746,7 @@ packages: "Vladislav Zavialov @int-index": - transformers-lift < 0 - - union ^>= 0.1.2 + - union < 0 - named ^>= 0.3.0.1 - inj ^>= 1.0 - shower < 0 @@ -2441,96 +2754,102 @@ packages: "Stack Builders stackage@stackbuilders.com @stackbuilders": - atomic-write ^>= 0.2.0.7 - dbcleaner ^>= 0.1.3 - - dotenv ^>= 0.9.0.0 + - dotenv ^>= 0.11.0.2 - hapistrano < 0 - - hspec-golden ^>= 0.2.0.0 - - inflections ^>= 0.4.0.6 - - stache ^>= 2.3.0 + - hspec-golden ^>= 0.2.1.0 + - inflections ^>= 0.4.0.7 + - stache ^>= 2.3.4 - scalendar < 0 "Sergey Alirzaev @l29ah": - - monad-peel ^>= 0.2.1.2 + - monad-peel ^>= 0.3 - NineP ^>= 0.0.2.1 - Network-NineP < 0 + - pontarius-xmpp ^>= 0.5.6.8 + - stringprep ^>= 1.0.0 + - ranges ^>= 0.2.4 "Antoni Silvestre @asilvestre": # Test suite needs a running neo4j server with auth disabled # unfortunately the cabal package name and the github repo don't have the exact same name # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client - - haskell-neo4j-client < 0 # build failure with GHC 8.4 https://github.com/asilvestre/haskell-neo4j-rest-client/issues/32 + - haskell-neo4j-client < 0 # 0.3.2.4 compile fail with GHC 8.4 https://github.com/asilvestre/haskell-neo4j-rest-client/issues/32 "Anton Kholomiov ": - data-fix ^>= 0.3.2 "Alexey Khudyakov @Shimuuar": - histogram-fill ^>= 0.9.1.0 - - fixed-vector ^>= 1.2.1.0 + - fixed-vector ^>= 1.2.3.0 - fixed-vector-hetero ^>= 0.6.1.1 - - type-level-numbers ^>= 0.1.1.1 + - type-level-numbers ^>= 0.1.1.2 "Ryan Scott @RyanGlScott": - abstract-deque ^>= 0.3 - abstract-deque-tests ^>= 0.3 - abstract-par ^>= 0.3.3 - atomic-primops ^>= 0.8.4 - - base-compat-batteries ^>= 0.11.2 - - base-orphans ^>= 0.8.6 + - base-compat-batteries ^>= 0.13.1 + - base-orphans ^>= 0.9.1 + - bifunctor-classes-compat ^>= 0.1 - chaselev-deque < 0 - code-page ^>= 0.2.1 - constraint-tuples ^>= 0.1.2 - - criterion ^>= 1.5.12.0 - - criterion-measurement ^>= 0.1.3.0 + - criterion ^>= 1.6.3.0 + - criterion-measurement ^>= 0.2.1.0 - data-reify ^>= 0.6.3 - - deriving-compat ^>= 0.6 + - deriving-compat ^>= 0.6.5 - dotgen ^>= 0.4.3 - echo ^>= 0.1.4 - - eliminators ^>= 0.8 - - generic-deriving ^>= 1.14.1 + - eliminators ^>= 0.9.3 + - foldable1-classes-compat ^>= 0.1 + - generic-deriving ^>= 1.14.5 - ghc-bignum-orphans ^>= 0.1.1 - hashmap ^>= 1.3.3 - - indexed-traversable-instances ^>= 0.1.1 - - invariant ^>= 0.5.5 + - indexed-traversable-instances ^>= 0.1.1.2 + - invariant ^>= 0.6.2 - keycode ^>= 0.2.2 - lift-generics ^>= 0.2.1 - - mintty ^>= 0.1.3 - - monad-par ^>= 0.3.5 + - mintty ^>= 0.1.4 + - monad-par ^>= 0.3.6 - monad-par-extras ^>= 0.3.3 - mtl-compat ^>= 0.2.2 - - ordered-containers ^>= 0.2.2 + - ordered-containers ^>= 0.2.3 - proxied ^>= 0.3.1 - rdtsc ^>= 1.3.0.1 - - singleton-nats ^>= 0.4.6 - - singletons-base ^>= 3.0 - - singletons-th ^>= 3.0 - - text-show ^>= 3.9.3 - - text-show-instances ^>= 3.8.6 - - th-abstraction ^>= 0.4.3.0 - - th-compat ^>= 0.1.3 + - singleton-nats ^>= 0.4.7 + - singletons-base ^>= 3.2 + - singletons-th ^>= 3.2 + - text-show ^>= 3.10.4 + - text-show-instances ^>= 3.9.7 + - th-abstraction ^>= 0.5.0.0 + - th-compat ^>= 0.1.4 - thread-local-storage ^>= 0.2 - type-equality ^>= 1 "Kirill Zaborsky @qrilka": - - xlsx ^>= 0.8.4 + - xlsx ^>= 1.1.1 "Matt Parsons @parsonsmatt": - - monad-logger-prefix ^>= 0.1.12 - - monad-metrics < 0 + - annotated-exception ^>= 0.2.0.5 + - monad-logger-prefix < 0 + - monad-metrics ^>= 0.2.2.1 - prairie < 0 - - ekg-cloudwatch < 0 - - smtp-mail ^>= 0.3.0.0 + - ekg-cloudwatch < 0 # 0.0.1.6 fails to compile we amazonka 2.0 + - smtp-mail < 0 - liboath-hs ^>= 0.0.1.2 - servant-quickcheck < 0 - - esqueleto ^>= 3.5.3.0 - - hedgehog-fakedata ^>= 0.0.1.4 - - persistent-discover ^>= 0.1.0.5 - - persistent-documentation ^>= 0.1.0.4 - - persistent-typed-db ^>= 0.1.0.5 - - persistent-qq ^>= 2.12.0.1 + - esqueleto ^>= 3.5.11.0 + - hedgehog-fakedata < 0 + - persistent-discover ^>= 0.1.0.7 + - persistent-documentation < 0 # 0.1.0.4 https://github.com/lumihq/persistent-documentation/issues/11 + - persistent-typed-db ^>= 0.1.0.7 + - persistent-qq ^>= 2.12.0.6 - persistent-pagination ^>= 0.1.1.2 - - hspec-hedgehog ^>= 0.0.1.2 - - exception-via ^>= 0.1.0.0 - - record-wrangler ^>= 0.1.1.0 - - lift-type ^>= 0.1.0.1 + - hspec-hedgehog ^>= 0.1.1.0 + - exception-via ^>= 0.2.0.0 + - record-wrangler < 0 + - lift-type ^>= 0.1.1.1 - some-dict-of ^>= 0.1.0.2 - discover-instances ^>= 0.1.0.0 @@ -2538,102 +2857,95 @@ packages: - refact ^>= 0.3.0.2 "Andrew Gibiansky @gibiansky": - - ipython-kernel ^>= 0.10.2.2 + - ipython-kernel ^>= 0.11.0.0 "James Cook @mokus0": - - dependent-map < 0 - - dependent-sum < 0 - - dependent-sum-template < 0 - - dice < 0 + - dependent-map ^>= 0.4.0.0 + - dependent-sum ^>= 0.7.2.0 + - dependent-sum-template ^>= 0.1.1.1 + - dice ^>= 0.1.1 - hstatsd < 0 - - misfortune < 0 + - misfortune ^>= 0.1.2.1 "Timo von Holtz @tvh": - ekg-wai < 0 - haxl-amazonka < 0 - hasql-migration ^>= 0.3.0 - - servant-JuicyPixels ^>= 0.3.1.0 - - "Artyom Kazak @neongreen": - - microlens ^>= 0.4.12.0 - - microlens-platform ^>= 0.4.2.1 - - microlens-mtl ^>= 0.2.0.1 - - microlens-th ^>= 0.4.3.10 - - microlens-ghc ^>= 0.4.13.1 - - microlens-contra ^>= 0.1.0.2 - - cheapskate-highlight ^>= 0.1.0.0 - - cheapskate-lucid ^>= 0.1.0.0 - - cmark-lucid ^>= 0.1.0.0 - - cmark-highlight < 0 - - Spock-lucid < 0 - - charsetdetect-ae ^>= 1.1.0.4 - - text-all < 0 + - servant-JuicyPixels ^>= 0.3.1.1 + + "Steven Fontanella @stevenfontanella": + - microlens ^>= 0.4.13.1 + - microlens-platform ^>= 0.4.3.4 + - microlens-mtl ^>= 0.2.0.3 + - microlens-th ^>= 0.4.3.14 + - microlens-ghc ^>= 0.4.14.2 + - microlens-contra ^>= 0.1.0.3 "Takano Akio tak@anoak.io @takano-akio": - - fast-builder ^>= 0.1.3.0 - - filelock ^>= 0.1.1.5 + - fast-builder < 0 + - filelock ^>= 0.1.1.7 "Brian Lewis brian@lorf.org @bsl": - bindings-GLFW ^>= 3.3.2.0 - GLFW-b ^>= 3.3.0.0 "Niklas HambĂŒchen mail@nh2.me @nh2": - - conduit-concurrent-map ^>= 0.1.1 - - hidapi ^>= 0.1.7 + - conduit-concurrent-map ^>= 0.1.3 + - hidapi ^>= 0.1.8 - iso8601-time ^>= 0.1.5 - loop ^>= 0.3.0 - lz4-frame-conduit ^>= 0.1.0.1 - netpbm ^>= 1.0.4 - - network-house < 0 # compilation failure MonadFail + - network-house < 0 # 0.1.0.2 compile failure MonadFail - reinterpret-cast ^>= 0.1.0 - - shared-memory ^>= 0.2.0.0 + - shared-memory ^>= 0.2.0.1 - posix-paths ^>= 0.3.0.0 # As dependencies of packages above - attoparsec-binary ^>= 0.2 "Michael Walker @barrucadu": - - both ^>= 0.1.1.2 - - concurrency ^>= 1.11.0.2 - - dejafu ^>= 2.4.0.3 - - hunit-dejafu ^>= 2.0.0.5 - - tasty-dejafu ^>= 2.0.0.8 + - both < 0 + - concurrency ^>= 1.11.0.3 + - dejafu ^>= 2.4.0.5 + - hunit-dejafu ^>= 2.0.0.6 + - tasty-dejafu ^>= 2.1.0.1 - irc-ctcp ^>= 0.1.3.1 - - irc-conduit ^>= 0.3.0.5 - - irc-client ^>= 1.1.2.2 + - irc-conduit < 0 + - irc-client < 0 "Rudy Matela @rudymatela": - - leancheck ^>= 0.9.10 - - leancheck-instances ^>= 0.0.4 + - leancheck ^>= 1.0.0 + - leancheck-instances ^>= 0.0.5 - fitspec ^>= 0.4.10 - - express ^>= 1.0.8 + - express ^>= 1.0.12 - speculate ^>= 0.4.14 - extrapolate ^>= 0.4.6 - - code-conjure ^>= 0.5.0 - - percent-format ^>= 0.0.2 + - code-conjure ^>= 0.5.6 + - percent-format ^>= 0.0.4 - tasty-leancheck ^>= 0.0.2 - hspec-leancheck ^>= 0.0.6 - test-framework-leancheck ^>= 0.0.4 "Trevor Elliott @elliottt": - - irc ^>= 0.6.1.0 + - irc ^>= 0.6.1.1 "Dennis Gosnell @cdepillabout": - envelope ^>= 0.2.2.0 - from-sum ^>= 0.2.3.0 - natural-transformation ^>= 0.4 - - password ^>= 3.0.0.0 + - password ^>= 3.0.2.1 - password-instances ^>= 3.0.0.0 - password-types ^>= 1.0.0.0 - - pretty-simple ^>= 4.0.0.0 + - pretty-simple ^>= 4.1.2.0 - print-console-colors ^>= 0.1.0.0 - read-env-var ^>= 1.0.0.0 - servant-checked-exceptions ^>= 2.2.0.1 - servant-checked-exceptions-core ^>= 2.2.0.1 - servant-rawm ^>= 1.0.0.0 - servant-static-th ^>= 1.0.0.0 - - termonad < 0 + - termonad ^>= 4.5.0.0 - world-peace ^>= 1.0.2.0 - - xml-html-qq < 0 + - xml-html-qq ^>= 0.1.0.1 - xml-indexed-cursor ^>= 0.1.1.0 "Franklin Chen @FranklinChen": @@ -2643,41 +2955,42 @@ packages: - GPipe < 0 "Jonas Carpay @jonascarpay": - - apecs ^>= 0.9.4 + - apecs ^>= 0.9.5 - apecs-gloss ^>= 0.2.4 - - apecs-physics ^>= 0.4.5 - - aeson-commit ^>= 1.4 + - apecs-physics ^>= 0.4.6 + - aeson-commit < 0 + - calligraphy ^>= 0.1.6 - js-chart ^>= 2.9.4.1 + - safe-gen ^>= 1.0.1 - tasty-focus ^>= 1.0.1 "Spencer Janssen @spencerjanssen": - Xauth ^>= 0.1 "Sebastian de Bellefon @Helkafen": - - wai-middleware-metrics < 0 + - wai-middleware-metrics ^>= 0.2.4 "Gregory Collins @gregorycollins": - - hashtables ^>= 1.2.4.2 - - io-streams ^>= 1.5.2.1 + - hashtables ^>= 1.3.1 + - io-streams ^>= 1.5.2.2 - openssl-streams ^>= 1.2.3.0 "Andrew Cowie @istathar": - chronologique ^>= 0.3.1.3 - http-common ^>= 0.8.3.4 - - http-streams ^>= 0.8.9.4 + - http-streams ^>= 0.8.9.9 - locators ^>= 0.3.0.3 - - core-data ^>= 0.2.1.11 - - core-program ^>= 0.4.2.0 - - core-telemetry ^>= 0.1.7.3 - - core-text ^>= 0.3.5.0 + - core-data ^>= 0.3.9.1 + - core-program ^>= 0.7.0.0 + - core-telemetry ^>= 0.2.9.4 + - core-text ^>= 0.3.8.1 "Sean Hunt = 0.1.1.2 + - cheapskate < 0 "Ivan Miljenovic @ivan-m": - - fgl ^>= 5.7.0.3 - - graphviz ^>= 2999.20.1.0 - - wl-pprint-text ^>= 1.2.0.1 + - fgl ^>= 5.8.2.0 + - wl-pprint-text ^>= 1.2.0.2 - servant-pandoc < 0 "Sharif Olorin @olorin": @@ -2685,31 +2998,30 @@ packages: - nagios-check ^>= 0.3.2 "Peter Simons @peti": - - cabal2nix ^>= 2.18.0 - - cabal2spec ^>= 2.6.2 - - cgi ^>= 3001.5.0.0 - - distribution-nixpkgs ^>= 1.6.2 - - distribution-opensuse ^>= 1.1.1 + - cabal2spec ^>= 2.7.0 + - cgi ^>= 3001.5.0.1 + - distribution-nixpkgs ^>= 1.7.0.1 + - distribution-opensuse ^>= 1.1.4 - flexible-defaults ^>= 0.0.3 - funcmp ^>= 1.9 - - hackage-db ^>= 2.1.2 - - hledger-interest ^>= 1.6.3 - - hopenssl ^>= 2.2.4 + - hackage-db ^>= 2.1.3 + - hledger-interest ^>= 1.6.6 + - hopenssl ^>= 2.2.5 - hsdns ^>= 1.8 - hsemail ^>= 2.2.1 - hsyslog ^>= 5.0.2 - - jailbreak-cabal ^>= 1.3.5 - - lambdabot-core < 0 - - lambdabot-irc-plugins < 0 + - jailbreak-cabal ^>= 1.4 + - lambdabot-core ^>= 5.3.1.2 + - lambdabot-irc-plugins ^>= 5.3.1.2 - language-nix ^>= 2.2.0 - logging-facade-syslog ^>= 1 - MonadPrompt ^>= 1.0.0.5 - nix-paths ^>= 1.0.1 - parsec-class ^>= 1.0.0.0 - - prim-uniq < 0 - - random-fu < 0 - - random-source ^>= 0.3.0.11 - - rvar ^>= 0.2.0.6 + - prim-uniq ^>= 0.2 + - random-fu ^>= 0.3.0.1 + - random-source < 0 + - rvar ^>= 0.3.0.2 - SafeSemaphore ^>= 0.10.1 - streamproc < 0 - stringsearch ^>= 0.3.6.6 # for cgi @@ -2717,74 +3029,75 @@ packages: "Mark Fine @markfine": - postgresql-schema ^>= 0.1.14 - - sbp ^>= 4.1.0 + - sbp ^>= 5.0.4 "Jinjing Wang @nfjinjing": - moesocks < 0 "Gregory W. Schwartz @GregorySchwartz": - - diversity < 0 - - fasta < 0 + - diversity ^>= 0.8.1.0 + - fasta ^>= 0.10.4.2 - modify-fasta < 0 - tree-fun ^>= 0.8.1.0 - random-tree ^>= 0.6.0.5 - clumpiness ^>= 0.17.0.2 - find-clumpiness < 0 - - blosum < 0 - - rank-product < 0 + - blosum < 0 # 0.1.1.4 compile fail + - rank-product < 0 # 0.2.2.0 compile fail "Simon Marechal @bartavelle": - - compactmap ^>= 0.1.4.2.1 - - stateWriter ^>= 0.3.0 + - compactmap ^>= 0.1.4.3 + - stateWriter ^>= 0.4.0 - filecache < 0 - - pcre-utils ^>= 0.1.8.2 - - strict-base-types < 0 + - pcre-utils ^>= 0.1.9 + - strict-base-types ^>= 0.8 - withdependencies ^>= 0.3.0 - - hruby ^>= 0.3.8.1 + - hruby ^>= 0.5.1.0 - language-puppet < 0 - - tar-conduit ^>= 0.3.2 + - tar-conduit ^>= 0.4.0 "Mark Karpov @mrkkrp": - - JuicyPixels-extra ^>= 0.5.2 - - cue-sheet ^>= 2.0.1 - - flac ^>= 0.2.0 + - JuicyPixels-extra ^>= 0.6.0 + - cue-sheet ^>= 2.0.2 + - flac ^>= 0.2.1 - flac-picture ^>= 0.1.2 - - forma ^>= 1.1.3 - - ghc-syntax-highlighter ^>= 0.0.7.0 - - hspec-megaparsec ^>= 2.2.0 - - htaglib ^>= 1.2.0 + - forma ^>= 1.2.0 + - ghc-syntax-highlighter ^>= 0.0.10.0 && <0.0.11.0 # https://github.com/commercialhaskell/stackage/issues/7154 + - hspec-megaparsec ^>= 2.2.1 + - htaglib ^>= 1.2.1 - html-entity-map ^>= 0.1.0.0 - identicon ^>= 0.2.2 - - lame ^>= 0.2.0 - - megaparsec ^>= 9.2.0 - - megaparsec-tests ^>= 9.2.0 - - mmark ^>= 0.0.7.3 - - mmark-cli ^>= 0.0.5.0 - - mmark-ext ^>= 0.2.1.3 - - modern-uri ^>= 0.3.4.2 - - ormolu ^>= 0.3.1.0 + - lame ^>= 0.2.2 + - megaparsec ^>= 9.4.1 + - megaparsec-tests ^>= 9.4.1 + - mmark ^>= 0.0.7.6 + - mmark-cli ^>= 0.0.5.1 + - mmark-ext ^>= 0.2.1.5 + - modern-uri ^>= 0.3.6.1 + - ormolu ^>= 0.7.2.0 - pagination ^>= 0.2.2 - parser-combinators ^>= 1.3.0 - parser-combinators-tests ^>= 1.3.0 - - path ^>= 0.9.1 - - path-io ^>= 1.6.3 - - req ^>= 3.9.2 + - path ^>= 0.9.5 + - path-io ^>= 1.8.1 + - req ^>= 3.13.1 - req-conduit ^>= 1.0.1 - - stache ^>= 2.3.0 - - tagged-identity ^>= 0.1.3 - - text-metrics ^>= 0.3.1 - - wave ^>= 0.2.0 - - zip ^>= 1.7.2 + - stache ^>= 2.3.4 + - tagged-identity ^>= 0.1.4 + - text-metrics ^>= 0.3.2 + - wave ^>= 0.2.1 + - zip ^>= 2.0.0 "Emmanuel Touzery @emmanueltouzery": - - app-settings ^>= 0.2.0.12 - - hsexif ^>= 0.6.1.8 + - app-settings < 0 + - hsexif ^>= 0.6.1.10 - slack-web < 0 "Nickolay Kudasov @fizruk": - - http-api-data ^>= 0.4.3 - - swagger2 < 0 - - telegram-bot-simple ^>= 0.3.7 + - http-api-data ^>= 0.5.1 && <0.6 # https://github.com/commercialhaskell/stackage/issues/7032 + - swagger2 ^>= 2.8.7 + - telegram-bot-simple < 0 + - rzk ^>= 0.7.1 "Jared Tobin @jtobin": - mwc-probability ^>= 2.3.1 @@ -2794,40 +3107,30 @@ packages: - hasty-hamiltonian ^>= 1.3.4 - declarative ^>= 0.5.4 - sampling ^>= 0.3.5 - - flat-mcmc ^>= 1.5.2 - - urbit-hob ^>= 0.3.3 - - hnock ^>= 0.4.0 + - flat-mcmc < 0 + - urbit-hob < 0 + - hnock < 0 "Facundo DomĂ­nguez @facundominguez": - - distributed-process < 0 - - distributed-process-simplelocalnet < 0 - - distributed-process-tests < 0 - - distributed-static ^>= 0.3.9 - - inline-c ^>= 0.9.1.5 + - inline-c ^>= 0.9.1.10 - jvm-batching < 0 - - network-transport ^>= 0.5.4 - - network-transport-tests ^>= 0.3.0 - - network-transport-tcp ^>= 0.8.0 - - network-transport-inmemory < 0 - - network-transport-composed ^>= 0.2.1 - pthread ^>= 0.2.1 - - rank1dynamic ^>= 0.4.1 "Dave Tapley @dukedave": - - inline-c-cpp ^>= 0.4.0.3 + - inline-c-cpp ^>= 0.5.0.2 "Takahiro Himura @himura": - lens-regex ^>= 0.1.3 - # - twitter-conduit # twitter-types - # - twitter-types # MonadFail - # - twitter-types-lens # + - twitter-conduit ^>= 0.6.1 + - twitter-types ^>= 0.11.0 + - twitter-types-lens ^>= 0.11.0 "Robbin C. @robbinch": - zim-parser ^>= 0.2.1.0 "David Wiltshire @dave77": # on behalf of Alexey Karakulov @w3rs - - hashable-time ^>= 0.3 + - hashable-time < 0 "Yuras Shumovich @Yuras": - pdf-toolbox-content ^>= 0.1.1 @@ -2837,18 +3140,18 @@ packages: - scanner ^>= 0.3.1 "Stanislav Chernichkin @schernichkin": - - partial-isomorphisms < 0 + - partial-isomorphisms ^>= 0.2.3.0 "Christoph Breitkopf @bokesan": - - IntervalMap ^>= 0.6.1.2 + - IntervalMap ^>= 0.6.2.1 "Michele Lacchia @rubik": - pathwalk ^>= 0.3.1.2 "John Galt @centromere": - cacophony ^>= 0.10.1 - - blake2 ^>= 0.3.0 - - nfc ^>= 0.1.0 + - blake2 ^>= 0.3.0.1 + - nfc ^>= 0.1.1 "Michael Schröder @mcschroeder": @@ -2863,28 +3166,29 @@ packages: - tagstream-conduit ^>= 0.5.6 "Johannes Hilden @laserpants": - - hashids ^>= 1.0.2.4 - - fuzzyset ^>= 0.2.2 + - hashids ^>= 1.1.0.1 + - fuzzyset ^>= 0.3.1 + - sqids ^>= 0.2.0.0 "Will Sewell @willsewell": - - benchpress ^>= 0.2.2.18 - - pusher-http-haskell ^>= 2.1.0.7 + - benchpress ^>= 0.2.2.23 + - pusher-http-haskell ^>= 2.1.0.17 "Yorick Laupa yo.eight@gmail.com @YoEight": - - eventstore ^>= 1.4.1 + - eventstore < 0 # 1.4.3 https://github.com/commercialhaskell/stackage/issues/7075 - dotnet-timespan ^>= 0.0.1.0 - - eventsource-api ^>= 1.5.1 + - eventsource-api < 0 - eventsource-geteventstore-store < 0 - eventsource-store-specs < 0 - - eventsource-stub-store ^>= 1.1.1 + - eventsource-stub-store < 0 "Sebastian Dröge slomo@coaxion.net @sdroege": - - conduit-iconv < 0 # MonadFail - - conduit-connection ^>= 0.1.0.5 + - conduit-iconv < 0 # 0.1.1.3 compile fail MonadFail + - conduit-connection < 0 "Andrew Rademacher @AndrewRademacher": - aeson-casing ^>= 0.2.0.0 - - graylog < 0 # Couldn't find module Network.BSD + - graylog < 0 # 0.1.0.1 compile fail Couldn't find module Network.BSD - parsec-numeric ^>= 0.1.0.0 - mallard < 0 - gdax < 0 @@ -2894,50 +3198,50 @@ packages: "Mihaly Barasz klao@nilcons.com @klao": - lens-datetime < 0 - - tz < 0 - - tzdata ^>= 0.2.20201021.0 + - tz ^>= 0.1.3.6 + - tzdata ^>= 0.2.20230322.0 "Timothy Klim @TimothyKlim": - pkcs10 < 0 "David Luposchainsky @quchen": - - pgp-wordlist ^>= 0.1.0.3 + - pgp-wordlist < 0 # 0.1.0.3 # fails to compile (#7017) https://github.com/quchen/pgp-wordlist/pull/4 - show-prettyprint < 0 "Jeremy Shaw @stepcut": - - boomerang ^>= 1.4.7 + - boomerang ^>= 1.4.9 - happstack-hsp < 0 - - happstack-jmacro ^>= 7.0.12.3 - - happstack-server ^>= 7.7.1.1 - - happstack-server-tls ^>= 7.2.1.1 - - hsx-jmacro ^>= 7.3.8.1 + - happstack-jmacro ^>= 7.0.12.5 + - happstack-server ^>= 7.8.0.2 && <7.9 # https://github.com/commercialhaskell/stackage/issues/7207 + - happstack-server-tls ^>= 7.2.1.3 + - hsx-jmacro < 0 - ixset < 0 - - reform ^>= 0.2.7.4 - - reform-blaze ^>= 0.2.4.3 - - reform-hamlet ^>= 0.0.5.3 - - reform-happstack ^>= 0.2.5.4 + - reform < 0 + - reform-blaze < 0 + - reform-hamlet < 0 + - reform-happstack < 0 - reform-hsp < 0 - userid < 0 - - web-plugins ^>= 0.4.0 - - web-routes ^>= 0.27.14.3 - - web-routes-boomerang ^>= 0.28.4.2 - - web-routes-happstack ^>= 0.23.12.1 - - web-routes-hsp ^>= 0.24.6.1 + - web-plugins < 0 + - web-routes < 0 # 0.27.15 # fails to compile (#7017) + - web-routes-boomerang < 0 + - web-routes-happstack < 0 + - web-routes-hsp < 0 - web-routes-th < 0 - - web-routes-wai ^>= 0.24.3.1 + - web-routes-wai < 0 - hsx2hs < 0 "Pedro Tacla Yamada @yamadapc": - ascii-progress ^>= 0.3.3.0 - - drawille < 0 + - drawille ^>= 0.1.3.0 - file-modules ^>= 0.1.2.4 - frontmatter ^>= 0.1.0.2 - read-editor ^>= 0.1.0.2 - - list-prompt < 0 # compile failure https://github.com/yamadapc/list-prompt/issues/3 - - package-description-remote < 0 # compile failure + - list-prompt < 0 # 0.1.1.0 compile fail https://github.com/yamadapc/list-prompt/issues/3 + - package-description-remote < 0 # 0.2.0.0 compile fail - projectroot ^>= 0.2.0.1 - questioner < 0 - - language-dockerfile < 0 # compile failure https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 + - language-dockerfile < 0 # 0.3.6.0 compile fail https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 "Pascal Hartig @passy": - giphy-api < 0 @@ -2958,49 +3262,51 @@ packages: - wss-client ^>= 0.3.0.0 - network-messagepack-rpc ^>= 0.1.2.0 - network-messagepack-rpc-websocket ^>= 0.1.1.1 - - unicode-show ^>= 0.1.1.0 + - unicode-show ^>= 0.1.1.1 - deriveJsonNoPrefix ^>= 0.1.0.1 - fakefs ^>= 0.3.0.2 - fakepull ^>= 0.3.0.2 "Hans-Christian Esperer @hce": - avwx < 0 - - saltine ^>= 0.1.1.1 && <0.2.0.0 # https://github.com/tel/saltine/issues/58 + - saltine ^>= 0.2.1.0 - wai-session-postgresql ^>= 0.2.1.3 "Haisheng Wu @freizl": - - hoauth2 ^>= 1.16.0 + - hoauth2 ^>= 2.10.0 "Falko Peters @informatikr": - scrypt ^>= 0.5.0 "Jakub Waszczuk @kawu": - - dawg-ord ^>= 0.5.1.2 + - dawg-ord < 0 "Amit Levy @alevy": - - simple ^>= 1.0.0 - - simple-templates ^>= 1.0.0 - - simple-session ^>= 1.0.0 - - postgresql-orm ^>= 0.5.1 + - simple ^>= 2.0.0 + - simple-templates ^>= 2.0.0 + - simple-session ^>= 2.0.0 + - postgresql-orm < 0 "Sergey Astanin @astanin": - # Stackage server uses Ubuntu 16.04 which ships libzip-1.0.1. + # Stackage server uses Ubuntu 20.04 which ships libzip-?. # Haskell packages should match major.minor versions of the C library. - - bindings-libzip ^>= 1.0.1 && >=1.0 - - LibZip ^>= 1.0.1 && >=1.0 + - bindings-libzip ^>= 1.0.1 + - LibZip < 0 # 1.0.1 undefined reference to 'zip_archive_set_tempdir' "Anthony Cowley @acowley": - - vinyl ^>= 0.13.3 - - Frames ^>= 0.7.2 - - hpp ^>= 0.6.4 + - vinyl ^>= 0.14.3 + - Frames ^>= 0.7.4.2 + - hpp ^>= 0.6.5 "Takayuki Muranushi @nushio3": - binary-search ^>= 2.0.0 "Jason Shipman @jship": - - logging-effect-extra < 0 - - logging-effect-extra-file < 0 - - logging-effect-extra-handler < 0 + - context ^>= 0.2.0.3 + - context-http-client ^>= 0.2.0.2 + - context-resource ^>= 0.2.0.2 + - context-wai-middleware ^>= 0.2.0.2 + - monad-logger-aeson ^>= 0.4.1.2 - overhang ^>= 1.0.0 - tao ^>= 1.0.0 - tao-example ^>= 1.0.0 @@ -3011,8 +3317,8 @@ packages: "Justus Adam @JustusAdam": - marvin < 0 - marvin-interpolate < 0 - - mustache ^>= 2.3.2 - - exit-codes ^>= 1.0.0 && >=1.0.0 + - mustache ^>= 2.4.2 + - exit-codes ^>= 1.0.0 "Cindy Wang @CindyLinz": - NoTrace < 0 @@ -3024,24 +3330,31 @@ packages: "John MacFarlane @jgm": - hsb2hs < 0 - - cmark ^>= 0.6 - - texmath ^>= 0.12.3.3 - - highlighting-kate ^>= 0.6.4 - - skylighting ^>= 0.12.1 - - skylighting-core ^>= 0.12.1 - - pandoc-types ^>= 1.22.1 - - zip-archive ^>= 0.4.1 - - doclayout ^>= 0.3.1.1 - - doctemplates ^>= 0.10.0.1 - - emojis ^>= 0.1.2 - - pandoc ^>= 2.16.2 - - citeproc ^>= 0.6 - - commonmark ^>= 0.2.1.1 - - commonmark-extensions ^>= 0.2.2.1 - - commonmark-pandoc ^>= 0.2.1.1 - - unicode-collation ^>= 0.1.3.1 - - HsYAML-aeson ^>= 0.2.0.1 - - ipynb ^>= 0.1.0.2 + - cmark ^>= 0.6.1 + - texmath ^>= 0.12.8.6 + - highlighting-kate < 0 # 0.6.4 compile fail ghc-9.6 + - skylighting ^>= 0.14.1 + - skylighting-core ^>= 0.14.1 + - pandoc-types ^>= 1.23.1 + - zip-archive ^>= 0.4.3 + - doclayout ^>= 0.4.0.1 + - doctemplates ^>= 0.11 + - emojis ^>= 0.1.3 + - pandoc ^>= 3.1.10 + - pandoc-cli ^>= 3.1.10 + - pandoc-server ^>= 0.1.0.4 + - citeproc ^>= 0.8.1 + - commonmark ^>= 0.2.4.1 + - commonmark-extensions ^>= 0.2.5.1 + - commonmark-pandoc ^>= 0.2.2 + - unicode-collation ^>= 0.1.3.5 + - ipynb ^>= 0.2 + - skylighting-format-ansi ^>= 0.1 + - skylighting-format-blaze-html ^>= 0.1.1.1 + - skylighting-format-context ^>= 0.1.0.2 + - skylighting-format-latex ^>= 0.1 + - typst ^>= 0.4 + - typst-symbols ^>= 0.1.5 "Karun Ramakrishnan @karun012": - doctest-discover ^>= 0.2.0.0 @@ -3050,160 +3363,177 @@ packages: - turtle-options < 0 "Ozgun Ataman ozgun.ataman@soostone.com @ozataman": - - string-conv ^>= 0.1.2 + - string-conv ^>= 0.2.0 - rng-utils ^>= 0.3.1 - - ua-parser ^>= 0.7.6.0 + - ua-parser ^>= 0.7.7.0 - hs-GeoIP ^>= 0.3 - - retry ^>= 0.9.0.0 - - katip ^>= 0.8.7.0 - - katip-elasticsearch < 0 # https://github.com/commercialhaskell/stackage/issues/6341 + - retry ^>= 0.9.3.1 + - katip ^>= 0.8.8.0 + - katip-elasticsearch < 0 # 0.7.0.0 compile fail https://github.com/commercialhaskell/stackage/issues/6341 "Sid Kapur sidharthkapur1@gmail.com @sid-kap": - tuple ^>= 0.3.0.2 - - OneTuple ^>= 0.3.1 + - OneTuple ^>= 0.4.1.1 "Aaron Levin @aaronmblevin": - free-vl ^>= 0.1.4 "Kazuo Koga @kkazuo": - - xlsx-tabular ^>= 0.2.2.1 + - xlsx-tabular < 0 # 0.2.2.1 https://github.com/kkazuo/xlsx-tabular/issues/9 "Mikhail Glushenkov @23Skidoo": # - Cabal # take the one that ships with GHC - - cabal-install < 0 + - cabal-install ^>= 3.10.2.1 - pointful < 0 "Lennart Kolmodin @kolmodin": - binary-bits < 0 "Alex McLean @yaxu": - - tidal ^>= 1.7.8 - - hosc ^>= 0.19.1 + - tidal ^>= 1.9.4 + - tidal-link ^>= 1.0.1 + - hosc ^>= 0.20 "Kei Hibino @khibino": - - th-data-compat < 0 + - th-data-compat ^>= 0.1.3.0 - th-reify-compat ^>= 0.0.1.5 - - relational-query < 0 - - relational-query-HDBC < 0 - - persistable-types-HDBC-pg < 0 - - relational-record < 0 + - th-bang-compat ^>= 0.0.1.0 + - th-constraint-compat ^>= 0.0.1.0 + - product-isomorphic ^>= 0.0.3.4 + - persistable-record ^>= 0.6.0.6 + - relational-query ^>= 0.12.3.1 + - relational-query-HDBC ^>= 0.7.2.1 + - persistable-types-HDBC-pg ^>= 0.0.3.5 + - relational-record ^>= 0.2.2.0 - text-ldap ^>= 0.1.1.14 - debian-build ^>= 0.10.2.1 - - aeson-generic-compat ^>= 0.0.1.3 - - json-rpc-generic ^>= 0.2.1.6 + - aeson-generic-compat ^>= 0.0.2.0 + - json-rpc-generic < 0 - protocol-radius ^>= 0.0.1.1 - protocol-radius-test ^>= 0.1.0.1 - - th-bang-compat ^>= 0.0.1.0 - - th-constraint-compat ^>= 0.0.1.0 - - persistable-record < 0 "wren romano @wrengr": - - bytestring-lexing ^>= 0.5.0.8 - - bytestring-trie ^>= 0.2.6 + - bytestring-lexing ^>= 0.5.0.11 + - bytestring-trie ^>= 0.2.7.2 - data-or ^>= 1.0.0.7 - exact-combinatorics ^>= 0.2.0.11 - - logfloat ^>= 0.13.4 + - logfloat ^>= 0.14.0 - pointless-fun ^>= 1.1.0.8 - prelude-safeenum ^>= 0.1.1.3 - - stm-chans ^>= 3.0.0.6 - - unification-fd ^>= 0.11.1 - - unix-bytestring ^>= 0.3.7.6 + - stm-chans ^>= 3.0.0.9 + - unification-fd < 0 + - unix-bytestring ^>= 0.4.0 "Fraser Tweedale @frasertweedale": - concise ^>= 0.1.0.1 - - dyre ^>= 0.9.1 - - jose ^>= 0.8.5.1 + - dyre ^>= 0.9.2 + - jose ^>= 0.10.0.1 - "Yoshikuni Jujo @YoshikuniJujo": + "Yoshikuni Jujo @YoshikuniJujo": - zot ^>= 0.0.3 - yjtools ^>= 0.9.18 - io-machine ^>= 0.2.0.0 - yjsvg ^>= 0.2.0.1 - x11-xim ^>= 0.0.9.0 - - X11-xft ^>= 0.3.3 + - X11-xft ^>= 0.3.4 - Imlib ^>= 0.1.2 - xturtle < 0 - gluturtle < 0 - papillon < 0 - zasni-gerna < 0 - - exception-hierarchy < 0 + - exception-hierarchy ^>= 0.1.0.10 - simplest-sqlite < 0 - - warp-tls-uid ^>= 0.2.0.6 + - warp-tls-uid < 0 # 0.2.0.6 https://github.com/YoshikuniJujo/warp-tls-uid/issues/1 - nowdoc ^>= 0.1.1.0 - - typecheck-plugin-nat-simple < 0 - - ranged-list < 0 - - c-enum ^>= 0.1.0.1 - - c-struct ^>= 0.1.0.1 + - typecheck-plugin-nat-simple ^>= 0.1.0.9 + - ranged-list ^>= 0.1.2.1 + - c-enum ^>= 0.1.1.3 + - c-struct ^>= 0.1.3.0 - union-angle ^>= 0.1.0.1 + - moffy ^>= 0.1.1.0 + - freer-par-monad ^>= 0.1.0.0 + - type-set ^>= 0.1.0.0 + - type-flip ^>= 0.1.0.0 + - extra-data-yj ^>= 0.1.0.0 + - moffy-samples-events ^>= 0.2.2.4 + - moffy-samples ^>= 0.1.0.2 + - moffy-samples-gtk4-run < 0 # 0.1.0.0 requires newer glib https://github.com/YoshikuniJujo/moffy-samples-gtk4-run/issues/1 + - moffy-samples-gtk4 < 0 + - simple-cairo ^>= 0.1.0.6 + - simple-pango ^>= 0.1.0.1 + - cairo-image ^>= 0.1.0.2 + - union-color ^>= 0.1.2.1 + - glib-stopgap ^>= 0.1.0.0 "Jan Gerlinger @JanGe": - irc-dcc < 0 "Alexey Raga @AlexeyRaga": - - hw-kafka-client ^>= 4.0.3 + - hw-kafka-client ^>= 5.3.0 "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens < 0 - - antiope-core < 0 + - antiope-core < 0 # 7.5.3 fails to compile we amazonka 2.0 - antiope-dynamodb < 0 - - antiope-messages < 0 + - antiope-messages < 0 # 7.5.3 https://github.com/arbor/antiope/issues/112 - antiope-s3 < 0 - - antiope-sns < 0 - - antiope-sqs < 0 + - antiope-sns < 0 # 7.5.3 fails to compile we amazonka 2.0 + - antiope-sqs < 0 # 7.5.3 fails to compile we amazonka 2.0 - arbor-lru-cache ^>= 0.1.1.1 - arbor-postgres < 0 - - asif < 0 - - avro ^>= 0.5.2.1 - - bits-extra ^>= 0.0.2.0 - - hw-balancedparens ^>= 0.4.1.1 - - hw-bits ^>= 0.7.2.1 - - hw-conduit ^>= 0.2.1.0 + - asif < 0 # 6.0.4 compile fail - https://github.com/arbor/asif/issues/48 + - avro ^>= 0.6.1.2 + - bits-extra < 0 + - hw-balancedparens < 0 + - hw-bits ^>= 0.7.2.2 + - hw-conduit ^>= 0.2.1.1 - hw-conduit-merges ^>= 0.2.1.0 - hw-diagnostics ^>= 0.0.1.0 - - hw-dsv ^>= 0.4.1.0 - - hw-eliasfano ^>= 0.1.2.0 - - hw-excess ^>= 0.2.3.0 - - hw-fingertree ^>= 0.1.2.0 - - hw-fingertree-strict ^>= 0.1.2.0 - - hw-hedgehog ^>= 0.1.1.0 - - hw-hspec-hedgehog < 0 + - hw-dsv < 0 # 0.4.1.1 compile fail + - hw-eliasfano < 0 + - hw-excess < 0 + - hw-fingertree ^>= 0.1.2.1 + - hw-fingertree-strict ^>= 0.1.2.1 + - hw-hedgehog < 0 + - hw-hspec-hedgehog ^>= 0.1.1.1 - hw-int ^>= 0.0.2.0 - - hw-ip ^>= 2.4.2.0 - - hw-json ^>= 1.3.2.2 - - hw-json-simple-cursor ^>= 0.1.1.0 - - hw-json-standard-cursor ^>= 0.2.3.1 - - hw-mquery ^>= 0.2.1.0 - - hw-packed-vector ^>= 0.2.1.0 + - hw-ip < 0 + - hw-json < 0 + - hw-json-simple-cursor < 0 + - hw-json-standard-cursor < 0 + - hw-mquery < 0 + - hw-packed-vector < 0 - hw-parser ^>= 0.1.1.0 - - hw-prim ^>= 0.6.3.0 - - hw-rankselect ^>= 0.13.4.0 - - hw-rankselect-base ^>= 0.3.4.1 - - hw-simd ^>= 0.1.2.0 - - hw-streams ^>= 0.0.1.0 - - hw-succinct ^>= 0.1.0.1 - - hw-xml ^>= 0.5.1.0 - - tasty-discover ^>= 4.2.2 + - hw-prim ^>= 0.6.3.2 + - hw-rankselect < 0 + - hw-rankselect-base < 0 + - hw-simd < 0 + - hw-streams < 0 # 0.0.1.0 compile fail https://github.com/haskell-works/hw-streams/issues/81 + - hw-succinct < 0 + - hw-xml < 0 + - oops ^>= 0.2.0.1 + - tasty-discover ^>= 5.0.0 "George Wilson @gwils": - hedgehog-fn ^>= 1.0 - sv < 0 - sv-cassava < 0 - sv-core < 0 - - tasty-hedgehog ^>= 1.1.0.0 + - tasty-hedgehog ^>= 1.4.0.2 "Ismail Mustafa @ismailmustafa": - handwriting ^>= 0.1.0.3 "Stephen Diehl @sdiehl": - llvm-hs-pretty < 0 - - protolude < 0 - - repline ^>= 0.4.0.0 - - picosat ^>= 0.1.6 - - aos-signature < 0 + - protolude ^>= 0.3.3 + - repline ^>= 0.4.2.0 + - picosat < 0 + - aos-signature ^>= 0.1.1 - bulletproofs < 0 - - pedersen-commitment < 0 - - merkle-tree < 0 - - oblivious-transfer < 0 + - pedersen-commitment ^>= 0.2.0 + - merkle-tree ^>= 0.1.1 + - oblivious-transfer ^>= 0.1.0 - pairing < 0 - libraft < 0 - galois-field < 0 @@ -3215,88 +3545,87 @@ packages: - postgresql-transactional < 0 "Tom Murphy ": - - gingersnap < 0 + - gingersnap < 0 # 0.3.1.0 compile fail aeson 2 - microspec ^>= 0.2.1.3 - midair ^>= 0.2.0.1 - nano-erl ^>= 0.1.0.1 - rando ^>= 0.0.0.4 - - vivid ^>= 0.5.1.0 + - vivid < 0 # 0.5.2.0 # fails to compile (#7017) - vivid-osc ^>= 0.5.0.0 - vivid-supercollider ^>= 0.4.1.2 "Toshio Ito @debug-ito": - - fold-debounce ^>= 0.2.0.9 - - fold-debounce-conduit ^>= 0.2.0.6 - - stopwatch ^>= 0.1.0.6 - - wikicfp-scraper ^>= 0.1.0.12 - - wild-bind ^>= 0.1.2.8 - - wild-bind-x11 ^>= 0.2.0.14 - - greskell ^>= 1.2.0.2 - - greskell-core ^>= 0.1.3.7 - - greskell-websocket ^>= 0.1.2.6 - - hspec-need-env ^>= 0.1.0.8 + - fold-debounce ^>= 0.2.0.11 + - fold-debounce-conduit < 0 + - stopwatch < 0 + - wikicfp-scraper < 0 + - wild-bind < 0 + - wild-bind-x11 < 0 + - greskell < 0 + - greskell-core < 0 + - greskell-websocket < 0 + - hspec-need-env < 0 "Cies Breijs @cies": - - htoml ^>= 1.0.0.3 + - htoml < 0 "Martijn Rijkeboer @mrijkeboer": - protobuf-simple ^>= 0.1.1.1 "David Reaver @jdreaver": - - eventful-core ^>= 0.2.0 + - eventful-core < 0 - eventful-dynamodb < 0 - - eventful-memory ^>= 0.2.0 + - eventful-memory < 0 - eventful-postgresql < 0 - eventful-sql-common < 0 - eventful-sqlite < 0 - - eventful-test-helpers ^>= 0.2.0 - - stratosphere ^>= 0.59.1 - - sum-type-boilerplate ^>= 0.1.1 + - eventful-test-helpers < 0 + - stratosphere ^>= 0.60.0 + - sum-type-boilerplate < 0 "Iñaki GarcĂ­a Etxebarria @garetxe": - - haskell-gi ^>= 0.26.0 - - haskell-gi-base ^>= 0.26.0 - - gi-atk ^>= 2.0.24 - - gi-cairo ^>= 1.0.26 - - gi-dbusmenu ^>= 0.4.10 - - gi-dbusmenugtk3 ^>= 0.4.11 - - gi-gdk ^>= 3.0.25 && ==3.* # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gdkpixbuf ^>= 2.0.27 - - gi-gdkx11 ^>= 3.0.12 && ==3.* # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gio ^>= 2.0.29 - - gi-glib ^>= 2.0.26 - - gi-gobject ^>= 2.0.27 - - gi-graphene ^>= 1.0.4 - - gi-gtk ^>= 3.0.38 && ==3.* # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gtk-hs ^>= 0.3.12 - - gi-gmodule ^>= 2.0.2 - - gi-pango ^>= 1.0.25 - - gi-xlib ^>= 2.0.11 - - gi-harfbuzz ^>= 0.0.5 + - haskell-gi ^>= 0.26.7 + - haskell-gi-base ^>= 0.26.4 + - gi-atk ^>= 2.0.27 + - gi-cairo ^>= 1.0.29 + - gi-dbusmenu ^>= 0.4.13 + - gi-dbusmenugtk3 ^>= 0.4.14 + - gi-gdk ^>= 3.0.28 && >=3 && <4 # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gdkpixbuf ^>= 2.0.31 + - gi-gdkx11 ^>= 3.0.15 && >=3 && <4 # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gio ^>= 2.0.32 + - gi-glib ^>= 2.0.29 + - gi-gobject ^>= 2.0.30 + - gi-graphene ^>= 1.0.7 - gi-gsk < 0 - - gi-gtksource ^>= 3.0.25 - - gi-javascriptcore ^>= 4.0.24 - - gi-vte ^>= 2.91.29 - - gi-webkit2 < 0 + - gi-gtk ^>= 3.0.41 && >=3 && <4 # https://github.com/commercialhaskell/stackage/issues/6317 + - gi-gtk-hs ^>= 0.3.16 + - gi-gmodule ^>= 2.0.5 + - gi-pango ^>= 1.0.29 + - gi-xlib ^>= 2.0.13 + - gi-harfbuzz ^>= 0.0.9 + - gi-gtksource ^>= 3.0.28 && <5.0.0 # https://github.com/commercialhaskell/stackage/issues/7013 + - gi-javascriptcore ^>= 4.0.27 && <6.0.3 # https://github.com/commercialhaskell/stackage/issues/6929 + - gi-vte ^>= 2.91.31 + - gi-webkit2 ^>= 4.0.30 + - gi-freetype2 ^>= 2.0.4 + - gi-soup ^>= 2.4.28 && <3.0.2 # https://github.com/commercialhaskell/stackage/issues/6929 "Brandon Simmons @jberryman": - directory-tree ^>= 0.12.1 - "Ian Grant Jeffries @seagreen": - - hjsonpointer ^>= 1.5.0 - "Drew Hess @dhess": - hpio < 0 "Richard Eisenberg @goldfirere": - - th-desugar ^>= 1.12 - - singletons ^>= 3.0.1 + - th-desugar ^>= 1.15 + - singletons ^>= 3.0.2 - HUnit-approx ^>= 1.1.1.1 - - units-parser ^>= 0.1.1.4 + - units-parser ^>= 0.1.1.5 "Doug McClean @dmcclean": - - dimensional ^>= 1.4 - - exact-pi ^>= 0.5.0.1 + - dimensional ^>= 1.5 + - exact-pi ^>= 0.5.0.2 - numtype-dk ^>= 0.5.0.3 "Bjorn Buckwalter @bjornbm": @@ -3311,11 +3640,11 @@ packages: - bordacount ^>= 0.1.0.0 - cache ^>= 0.1.3.0 - haskey < 0 - - haskey-btree ^>= 0.3.0.1 + - haskey-btree < 0 - haskey-mtl < 0 - intset-imperative ^>= 0.1.0.0 - lxd-client < 0 - - lxd-client-config ^>= 0.1.0.1 + - lxd-client-config < 0 - xxhash-ffi ^>= 0.2.0.0 - zeromq4-patterns ^>= 0.3.1.0 @@ -3324,63 +3653,76 @@ packages: - microsoft-translator < 0 "Tebello Thejane @tebello-thejane": - - bitx-bitcoin < 0 # compilation error + - bitx-bitcoin < 0 # 0.12.0.0 compile fail "Andrew Lelechenko @Bodigrim": - exp-pairs ^>= 0.2.1.0 - - fast-digits < 0 # https://github.com/commercialhaskell/stackage/issues/6167 - - chimera ^>= 0.3.2.0 + - fast-digits ^>= 0.3.2.0 + - chimera ^>= 0.3.4.0 - quadratic-irrational ^>= 0.1.1 - primitive-addr ^>= 0.1.0.2 - quickcheck-classes ^>= 0.6.5.0 - quickcheck-classes-base ^>= 0.6.2.0 - - arithmoi ^>= 0.12.0.1 - - bitvec ^>= 1.1.1.0 - - poly ^>= 0.5.0.0 + - arithmoi ^>= 0.13.0.0 + - bitvec ^>= 1.1.5.0 + - poly ^>= 0.5.1.0 - extended-reals ^>= 0.2.4.0 - - ChasingBottoms ^>= 1.3.1.11 + - ChasingBottoms ^>= 1.3.1.12 - data-interval ^>= 2.1.1 - - vector-rotcev ^>= 0.1.0.1 - - mod ^>= 0.1.2.2 - - tasty-rerun ^>= 1.1.18 + - vector-rotcev ^>= 0.1.0.2 + - mod ^>= 0.2.0.1 + - tasty-rerun ^>= 1.1.19 - integer-roots ^>= 1.0.2.0 - - smallcheck ^>= 1.2.1 - - quote-quot ^>= 0.2.0.0 - - tasty-bench ^>= 0.3.1 - - tasty-inspection-testing ^>= 0.1 + - smallcheck ^>= 1.2.1.1 + - quote-quot ^>= 0.2.1.0 + - tasty-bench ^>= 0.3.5 + - tasty-inspection-testing ^>= 0.2 + - text-rope ^>= 0.2 + - data-array-byte ^>= 0.1.0.1 + - text-builder-linear ^>= 0.1.2 + - hie-bios ^>= 0.13.1 + - infinite-list ^>= 0.1 + - regression-simple ^>= 0.2.1 + - tasty-bench-fit ^>= 0.1 + - alex-tools ^>= 0.6.1 + - language-lua ^>= 0.11.0.1 + - snap-server ^>= 1.1.2.1 "Ashley Yakeley @AshleyYakeley": - - countable ^>= 1.0 - - witness ^>= 0.5 - - open-witness < 0 + - countable ^>= 1.2 + - witness ^>= 0.6.2 + - open-witness ^>= 0.6 + - type-rig ^>= 0.1 + - monadology ^>= 0.3 + - primitive-serial ^>= 0.1 "Victor Denisov @VictorDenisov": - - mongoDB ^>= 2.7.1.1 + - mongoDB ^>= 2.7.1.2 - bson ^>= 0.4.0.1 "Alexis King @lexi-lambda": - freer-simple < 0 - monad-mock < 0 - test-fixture < 0 - - text-conversions ^>= 0.3.1 + - text-conversions ^>= 0.3.1.1 - th-to-exp < 0 - type-assertions < 0 "Patrick Chilton @chpatrick": - webrtc-vad ^>= 0.1.0.3 - - clang-pure < 0 # missing system libraries #3810/closed + - clang-pure < 0 # 0.2.0.6 missing system libraries #3810/closed - codec < 0 "Michal Konecny @michalkonecny": - - hmpfr < 0 + - hmpfr ^>= 0.4.5 - collect-errors ^>= 0.1.5.0 - - mixed-types-num < 0 + - mixed-types-num ^>= 0.5.12 - cdar-mBound ^>= 0.1.0.4 - - aern2-mp < 0 - - aern2-real < 0 + - aern2-mp ^>= 0.2.15.1 + - aern2-real ^>= 0.2.15 "Bartosz Nitka @niteria": - - oeis ^>= 0.3.10 + - oeis < 0 "Gergely Patai @cobbpg": - elerea ^>= 2.9.0 @@ -3390,8 +3732,8 @@ packages: "Dominic Orchard @dorchard": - array-memoize ^>= 0.6.0 - - codo-notation < 0 # MonadFail - - fortran-src ^>= 0.7.0 + - codo-notation < 0 # 0.5.2 compile fail MonadFail + - fortran-src < 0 "Cheng Shao @TerrorJack": - binaryen ^>= 0.0.6.0 @@ -3408,35 +3750,35 @@ packages: - cereal-time < 0 "Joachim Fasting @joachifm": - - libmpd ^>= 0.10.0.0 + - libmpd < 0 "Moritz Kiefer @cocreature": - - lrucaching ^>= 0.3.3 + - lrucaching < 0 - llvm-hs < 0 - - llvm-hs-pure ^>= 9.0.0 + - llvm-hs-pure < 0 "Thierry Bourrillon @tbourrillon": - heatshrink ^>= 0.1.0.0 - - hocilib ^>= 0.2.0 + - hocilib < 0 "Daniel Mendler @minad": - quickcheck-special ^>= 0.1.0.6 - - writer-cps-mtl ^>= 0.1.1.6 + - writer-cps-mtl < 0 - writer-cps-transformers ^>= 0.5.6.1 - - writer-cps-morph < 0 # https://github.com/louispan/writer-cps-morph/issues/2 + - writer-cps-morph < 0 # 0.1.0.2 compile fail https://github.com/louispan/writer-cps-morph/issues/2 - writer-cps-lens < 0 - writer-cps-full < 0 - - writer-cps-exceptions ^>= 0.1.0.1 + - writer-cps-exceptions < 0 - wl-pprint-annotated ^>= 0.1.0.1 - - wl-pprint-console ^>= 0.1.0.2 - - console-style ^>= 0.0.2.1 + - wl-pprint-console < 0 + - console-style < 0 - unlit ^>= 0.4.0.0 - - intro ^>= 0.9.0.0 + - intro < 0 - tasty-stats < 0 - colorful-monoids ^>= 0.2.1.3 - ihs ^>= 0.1.0.3 - paripari < 0 - - persist ^>= 0.1.1.5 + - persist < 0 "Taras Serduke @tserduke": - do-list ^>= 1.0.1 @@ -3444,13 +3786,13 @@ packages: "Travis Whitaker ": - cpuinfo ^>= 0.1.0.2 - lmdb ^>= 0.2.5 - - rdf ^>= 0.1.0.5 + - rdf < 0 - data-compat < 0 - deepseq-instances < 0 "Michael Swan @michael-swan": - - pcf-font < 0 # MonadFail - - pcf-font-embed < 0 + - pcf-font ^>= 0.2.2.1 + - pcf-font-embed < 0 # 0.1.2.0 compile fail "Iago Abal ": - bv ^>= 0.5 @@ -3459,20 +3801,20 @@ packages: - licensor < 0 "Florian Hofmann fho@f12n.de @fhaust": - - vector-split ^>= 1.0.0.2 + - vector-split ^>= 1.0.0.3 - vector-mmap ^>= 0.0.3 "Ondrej Palkovsky @ondrap": - - json-stream ^>= 0.4.2.4 + - json-stream ^>= 0.4.5.3 "Philipp Balzarek ": - xml-picklers ^>= 0.3.6 "Lennart Spitzner @lspitzner": - - multistate < 0 - - pqueue ^>= 1.4.1.4 + - multistate ^>= 0.8.0.4 + - pqueue ^>= 1.5.0.0 - butcher < 0 - - czipwith ^>= 1.0.1.4 + - czipwith < 0 - data-tree-print < 0 - brittany < 0 @@ -3480,47 +3822,50 @@ packages: - HDBC-mysql < 0 "Tony Morris @tonymorris": - - validation ^>= 1.1.2 + - validation ^>= 1.1.3 "Tony Day @tonyday567": - - numhask ^>= 0.8.1.0 - - numhask-array ^>= 0.9.1 - - numhask-prelude < 0 - - numhask-space ^>= 0.8.1.0 - - perf ^>= 0.9.0 + - chart-svg ^>= 0.5.2.0 + - markup-parse ^>= 0.1.1 + - numhask ^>= 0.11.1.0 + - numhask-array ^>= 0.11.0.1 + - numhask-space ^>= 0.11.1.0 + - perf ^>= 0.12.0.0 "Iphigenia Df @iphydf": - data-msgpack ^>= 0.0.13 - network-msgpack-rpc < 0 "Dino Morelli @dino-": - - epub-metadata < 0 - - hsinstall ^>= 2.7 + - epub-metadata ^>= 5.2 + - hsinstall ^>= 2.8 - tce-conf ^>= 1.3 "Jonathan Fischoff @jfischoff": - clock-extras < 0 - - postgres-options ^>= 0.2.0.0 - - tmp-postgres ^>= 1.34.1.0 + - postgres-options ^>= 0.2.1.0 + - tmp-postgres < 0 # 1.34.1.0 compile failure https://github.com/commercialhaskell/stackage/issues/7140 - pg-transact ^>= 0.3.2.0 - port-utils ^>= 0.2.1.0 - postgresql-libpq-notify ^>= 0.2.0.0 - - hasql-queue ^>= 1.2.0.2 + - hasql-queue < 0 "Jonathan Knowles @jonathanknowles": - - bech32 ^>= 1.1.2 + - bech32 ^>= 1.1.4 - bech32-th ^>= 1.1.1 - cardano-coin-selection ^>= 1.0.1 + - quickcheck-groups ^>= 0.0.1.0 + - quickcheck-monoid-subclasses ^>= 0.3.0.0 - quiet ^>= 0.2 - - roc-id ^>= 0.1.0.0 + - roc-id ^>= 0.2.0.0 "Mahdi Dibaiee @mdibaiee": - picedit < 0 - - mathexpr ^>= 0.3.0.0 + - mathexpr ^>= 0.3.1.0 - termcolor < 0 "XT @xtendo-org": - - rawfilepath ^>= 1.0.0 + - rawfilepath ^>= 1.1.0 "Konstantin Zudov @zudov": - html-email-validate ^>= 0.2.0.0 @@ -3532,11 +3877,11 @@ packages: - glob-posix ^>= 0.2.0.1 "Kadzuya Okamoto @arowM": - - type-level-kv-list ^>= 1.1.0 - - heterocephalus < 0 - - bookkeeping ^>= 0.4.0.1 - - ochintin-daicho ^>= 0.3.4.2 - - transaction ^>= 0.1.1.3 + - type-level-kv-list ^>= 2.0.2.0 + - heterocephalus ^>= 1.0.5.7 + - bookkeeping < 0 + - ochintin-daicho < 0 + - transaction ^>= 0.1.1.4 - tonaparser < 0 - tonalude < 0 - tonatona < 0 @@ -3549,48 +3894,49 @@ packages: - rawstring-qm ^>= 0.2.3.0 "Daniel YU ": - - salak ^>= 0.3.6 - - salak-yaml ^>= 0.3.5.3 + - salak < 0 + - salak-yaml < 0 - salak-toml < 0 - tensors ^>= 0.1.5 - menshen < 0 - - crc32c ^>= 0.0.0 - - boots ^>= 0.2.0.1 + - crc32c ^>= 0.1.0 + - boots < 0 "Tom Nielsen @glutamate": - - plotlyhs ^>= 0.2.1 - - inliterate ^>= 0.1.0 + - plotlyhs ^>= 0.2.3 + - inliterate < 0 "Hyunje Jun @noraesae": - line ^>= 4.0.1 "Hannes Saffrich @m0rphism": - [] - # - printcess # lens 4.16 + - printcess < 0 "Alexey Kuleshevich @lehins": - - wai-middleware-auth < 0 - hip < 0 - - massiv ^>= 1.0.1.1 + - massiv ^>= 1.0.4.0 - massiv-io ^>= 1.0.0.1 - massiv-test ^>= 1.0.0.0 - massiv-serialise ^>= 1.0.0.2 - - massiv-persist ^>= 1.0.0.2 + - massiv-persist < 0 - scheduler ^>= 2.0.0.1 - Color ^>= 0.3.3 - safe-decimal ^>= 0.2.1.0 - flush-queue ^>= 1.0.0 - pvar ^>= 1.0.0.0 + - conduit-aeson ^>= 0.1.0.1 + - vector-stream ^>= 0.1.0.0 + - FailT ^>= 0.1.2.0 "Hans-Peter Deifel @hpdeifel": - - hledger-iadd ^>= 1.3.16 + - hledger-iadd ^>= 1.3.19 "Roy Levien @orome": - - crypto-enigma ^>= 0.1.1.6 + - crypto-enigma < 0 # 0.1.1.6 compile fail https://github.com/orome/crypto-enigma-hs/issues/36 "BoldizsĂĄr NĂ©meth @nboldi": - - instance-control ^>= 0.1.2.0 - - references < 0 # compilation failure + - instance-control < 0 + - references < 0 # 0.3.3.1 compile fail - classyplate < 0 - haskell-tools-ast < 0 - haskell-tools-backend-ghc < 0 @@ -3610,38 +3956,35 @@ packages: - throwable-exceptions < 0 "Mitsutoshi Aoe @maoe": - - influxdb ^>= 1.9.2.2 + - influxdb ^>= 1.9.3 - sensu-run < 0 - viewprof < 0 "Dylan Simon @dylex": - - postgresql-typed ^>= 0.6.2.0 - - invertible < 0 - - ztail ^>= 1.2.0.2 - - zip-stream ^>= 0.2.1.0 + - postgresql-typed ^>= 0.6.2.5 + - invertible ^>= 0.2.0.8 + - ztail < 0 + - zip-stream ^>= 0.2.2.0 "Louis Pan @louispan": - alternators ^>= 1.0.0.0 - arrow-extras ^>= 0.1.0.1 - - data-diverse ^>= 4.7.0.0 - - data-diverse-lens < 0 # compile fail (lens) - - ghcjs-base-stub ^>= 0.3.0.2 + - data-diverse ^>= 4.7.1.0 + - data-diverse-lens < 0 # 4.3.0.0 compile fail (lens) + - ghcjs-base-stub < 0 - glaze < 0 - - glazier < 0 # compile fail (lens) + - glazier < 0 # 1.0.0.0 compile fail (lens) - glazier-react < 0 - glazier-react-widget < 0 - - javascript-extras ^>= 0.5.0.0 + - javascript-extras < 0 - lens-misc ^>= 0.0.2.0 - - l10n ^>= 0.1.0.1 + - l10n < 0 - pipes-category < 0 - pipes-fluid ^>= 0.6.0.1 - pipes-misc < 0 - stm-extras ^>= 0.1.0.3 - "SiniĆĄa Biđin @sbidin": - - sdl2-image < 0 - - sdl2-mixer < 0 - - sdl2-gfx < 0 + "SiniĆĄa Biđin @sbidin": [] "Aditya Manthramurthy @donatello": - minio-hs < 0 @@ -3652,11 +3995,11 @@ packages: - haskell-import-graph < 0 - string-transform ^>= 1.1.1 - uniq-deep ^>= 1.2.1 - - yesod-form-bootstrap4 ^>= 3.0.1 - - yesod-recaptcha2 ^>= 1.0.2 + - yesod-form-bootstrap4 ^>= 3.0.1.1 + - yesod-recaptcha2 ^>= 1.0.2.1 "Andrei Barbu @abarbu": - - nondeterminism ^>= 1.4 + - nondeterminism ^>= 1.5 - csp ^>= 1.4.0 - matplotlib ^>= 0.7.7 @@ -3664,7 +4007,7 @@ packages: - tsv2csv ^>= 0.1.0.2 "Thomas Sutton @thsutton": - - aeson-diff < 0 + - aeson-diff ^>= 1.1.0.13 - edit-distance-vector ^>= 1.0.0.4 "Kyle Van Berendonck @donkeybonks": @@ -3672,12 +4015,12 @@ packages: - dvorak ^>= 0.1.0.0 "Cuedo Business Solutions @cuedo": - - github-webhooks ^>= 0.15.0 + - github-webhooks ^>= 0.17.0 "Pavel Yakovlev @zmactep": - - hasbolt ^>= 0.1.6.1 + - hasbolt < 0 - uniprot-kb < 0 - - mmtf < 0 # MonadFail + - mmtf < 0 # 0.1.3.1 compile fail MonadFail "Christopher A. Gorski @cgorski": - general-games ^>= 1.1.1 @@ -3688,19 +4031,19 @@ packages: "Peter TrĆĄko @trskop": - between ^>= 0.11.0.0 - - connection-pool ^>= 0.2.2 + - connection-pool < 0 # 0.2.2 compile fail https://github.com/trskop/connection-pool/issues/2 - verbosity ^>= 0.4.0.0 "Devon Hollowood @devonhollowood": - - search-algorithms ^>= 0.3.1 + - search-algorithms ^>= 0.3.2 "Chris Dornan @cdornan": - sort ^>= 1.0.0.0 - - regex ^>= 1.1.0.0 + - regex ^>= 1.1.0.2 - regex-pcre-text < 0 - - regex-with-pcre ^>= 1.1.0.0 + - regex-with-pcre ^>= 1.1.0.2 - possibly ^>= 1.0.0.0 - - enum-text ^>= 0.5.2.1 + - enum-text ^>= 0.5.3.0 - rg ^>= 1.4.0.0 - columnar ^>= 1.0.0.0 - no-value ^>= 1.0.0.0 @@ -3714,48 +4057,55 @@ packages: "Hardy Jones @joneshf": - katip-rollbar < 0 - rollbar-hs < 0 - - servant-ruby ^>= 0.9.0.0 + - servant-ruby < 0 - wai-middleware-rollbar < 0 "Andrey Mokhov @snowleopard": - - algebraic-graphs ^>= 0.5 + - algebraic-graphs ^>= 0.7 "Albert Krewinkel @tarleb": - - hslua ^>= 2.0.1 - - hslua-classes ^>= 2.0.0 - - hslua-core ^>= 2.0.0.2 - - hslua-marshalling ^>= 2.0.1 - - hslua-module-doclayout ^>= 1.0.0 - - hslua-module-path ^>= 1.0.0 - - hslua-module-system ^>= 1.0.0 - - hslua-module-text ^>= 1.0.0 - - hslua-module-version ^>= 1.0.0 - - hslua-objectorientation ^>= 2.0.1 - - hslua-packaging ^>= 2.0.0 - - jira-wiki-markup ^>= 1.4.0 - - lpeg ^>= 1.0.1 - - lua ^>= 2.0.2 - - lua-arbitrary ^>= 1.0.0 - - pandoc-lua-marshal ^>= 0.1.2 - - tasty-hslua ^>= 1.0.0 - - tasty-lua ^>= 1.0.0 + - hslua ^>= 2.3.0 + - hslua-aeson ^>= 2.3.0.1 + - hslua-classes ^>= 2.3.0 + - hslua-cli ^>= 1.4.1 + - hslua-core ^>= 2.3.1 + - hslua-list ^>= 1.1.1 + - hslua-marshalling ^>= 2.3.0 + - hslua-module-doclayout ^>= 1.1.0 + - hslua-module-path ^>= 1.1.0 + - hslua-module-system ^>= 1.1.0.1 + - hslua-module-text ^>= 1.1.0.1 + - hslua-module-version ^>= 1.1.0 + - hslua-module-zip ^>= 1.1.0 + - hslua-objectorientation ^>= 2.3.0 + - hslua-packaging ^>= 2.3.0 + - hslua-repl ^>= 0.1.1 + - hslua-typing ^>= 0.1.0 + - jira-wiki-markup ^>= 1.5.1 + - lpeg ^>= 1.0.4 + - lua ^>= 2.3.1 + - lua-arbitrary ^>= 1.0.1.1 + - pandoc-lua-engine ^>= 0.2.1.2 + - pandoc-lua-marshal ^>= 0.2.2 + - tasty-hslua ^>= 1.1.0 + - tasty-lua ^>= 1.1.0 + - gridtables ^>= 0.1.0.0 "Judah Jacobson @judah": - - proto-lens-protobuf-types ^>= 0.7.1.0 - - proto-lens-protoc ^>= 0.7.1.0 - - proto-lens-runtime ^>= 0.7.0.1 - - proto-lens-setup ^>= 0.4.0.5 - - proto-lens ^>= 0.7.1.0 - - proto-lens-arbitrary ^>= 0.1.2.10 - - proto-lens-optparse ^>= 0.1.1.8 + - proto-lens-protobuf-types < 0 + - proto-lens-protoc < 0 + - proto-lens-runtime ^>= 0.7.0.4 + - proto-lens-setup < 0 + - proto-lens ^>= 0.7.1.3 + - proto-lens-arbitrary < 0 + - proto-lens-optparse < 0 - tensorflow-test ^>= 0.1.0.0 - pier-core < 0 - pier < 0 - - haskeline ^>= 0.8.2 - - ghc-source-gen ^>= 0.4.2.0 # tests disabled due to QuickCheck < 2.14 + - ghc-source-gen < 0 # tests disabled due to QuickCheck < 2.14 "Christof Schramm ": - - mnist-idx ^>= 0.1.2.8 + - mnist-idx ^>= 0.1.3.2 "Naushadh @naushadh": - persistent-mysql-haskell @@ -3775,36 +4125,36 @@ packages: - katip-scalyr-scribe < 0 "Sebastian Witte @saep": - - nvim-hs ^>= 2.1.0.7 - - nvim-hs-contrib < 0 - - nvim-hs-ghcid < 0 + - nvim-hs ^>= 2.3.2.3 + - nvim-hs-contrib ^>= 2.0.0.2 + - nvim-hs-ghcid ^>= 2.0.1.0 "Sam Protas @SamProtas": - - triplesec ^>= 0.2.2.1 + - triplesec < 0 - composable-associations ^>= 0.1.0.0 - - composable-associations-aeson ^>= 0.1.0.1 - - JuicyPixels-blurhash ^>= 0.1.0.3 + - composable-associations-aeson < 0 + - JuicyPixels-blurhash < 0 "Anton Ekblad @valderman": - - selda ^>= 0.5.1.0 - - selda-sqlite ^>= 0.1.7.1 - - selda-postgresql ^>= 0.1.8.1 - - selda-json ^>= 0.1.1.0 + - selda < 0 + - selda-sqlite < 0 + - selda-postgresql < 0 + - selda-json < 0 "Luis Pedro Coelho @luispedro": - - safeio ^>= 0.0.5.0 - - conduit-algorithms < 0 # compile fail + - safeio ^>= 0.0.6.0 + - conduit-algorithms < 0 - conduit-zstd ^>= 0.0.2.0 "Alex Biehl @alexbiehl": - - haddock-library ^>= 1.10.0 + - haddock-library ^>= 1.11.0 - http-client-openssl ^>= 0.3.3 "Steven Vandevelde @icidasset": - - shikensu ^>= 0.3.11 + - shikensu < 0 "George Pollard @Porges": - - email-validate ^>= 2.3.2.15 + - email-validate ^>= 2.3.2.19 "Alexander Ignatyev @aligusnet": - astro ^>= 0.4.3.0 @@ -3813,13 +4163,13 @@ packages: "Matt Noonan @matt-noonan": - justified-containers ^>= 0.3.0.0 - - roles ^>= 0.2.1.0 && >=0.2 + - roles ^>= 0.2.1.0 - lawful ^>= 0.1.0.0 - gdp ^>= 0.0.3.0 "Levent Erkok @LeventErkok": - - sbv ^>= 8.17 - - crackNum ^>= 3.2 + - sbv ^>= 10.2 + - crackNum ^>= 3.4 "JĂĄnos Tapolczai @jtapolczai": - listsafe ^>= 0.1.0.1 @@ -3827,32 +4177,33 @@ packages: "Serokell @serokell": - importify < 0 - log-warper < 0 - - o-clock ^>= 1.2.1 + - o-clock ^>= 1.4.0 - tasty-hunit-compat ^>= 0.2.0.1 - - universum ^>= 1.7.2 - - with-utf8 ^>= 1.0.2.3 + - universum ^>= 1.8.2 + - with-utf8 ^>= 1.0.2.4 - uncaught-exception ^>= 0.1.0 + - tztime ^>= 0.1.1.0 "Holmusk @arbus": - - elm-street < 0 + - elm-street ^>= 0.2.1.1 "Noel Kwan @kwannoel": - - servant-docs-simple ^>= 0.4.0.0 + - servant-docs-simple < 0 "Lorenz Moesenlechner @moesenle": - servant-websockets ^>= 2.0.0 "Daniel Campoverde @alx741": - - currencies ^>= 0.2.0.0 - - alerts ^>= 0.1.2.0 - - yesod-alerts ^>= 0.1.3.0 + - currencies < 0 + - alerts < 0 + - yesod-alerts < 0 - graphite ^>= 0.10.0.1 "JosĂ© Lorenzo RodrĂ­guez @lorenzo": - wrecker < 0 - - language-docker ^>= 10.4.0 + - language-docker ^>= 12.1.0 - docker-build-cacher < 0 - - mysql-haskell-nem < 0 + - mysql-haskell-nem ^>= 0.1.0.0 - hadolint < 0 "Phil Ruffwind @Rufflewind": @@ -3860,23 +4211,22 @@ packages: "Eitan Chatav @echatav": - free-categories ^>= 0.2.0.2 - - squeal-postgresql < 0 + - squeal-postgresql ^>= 0.9.1.3 "Sam Quinn @Lazersmoke": - ghost-buster ^>= 0.1.1.0 "typeable.io ": - - dom-parser < 0 - - xml-isogen < 0 + - dom-parser < 0 # 3.1.0 compile fail + - xml-isogen < 0 # 0.3.0 compile fail "Jeremy Huffman @jeremyjh": - - higher-leveldb ^>= 0.6.0.0 + - higher-leveldb < 0 - distributed-process-lifted < 0 - distributed-process-monad-control < 0 "Adam Curtis @kallisti-dev": - - webdriver < 0 - - cond ^>= 0.4.1.1 + - cond ^>= 0.5.1 "Naoto Shimazaki @nshimaza": - thread-hierarchy ^>= 0.3.0.2 @@ -3890,7 +4240,7 @@ packages: - docker < 0 "Hexirp @Hexirp": - - doctest-driver-gen ^>= 0.3.0.5 + - doctest-driver-gen ^>= 0.3.0.8 "VĂĄclav Haisman @wilx": - hs-bibutils ^>= 6.10.0.0 @@ -3899,60 +4249,67 @@ packages: - ghc-core ^>= 0.5.6 - colorize-haskell ^>= 1.0.1 - "Chris Martin @chris-martin": - - data-forest ^>= 0.1.0.9 - - loc < 0 - - partial-semigroup ^>= 0.5.1.12 - - path-text-utf8 < 0 - "Type Classes @argumatronic @chris-martin": - - ascii ^>= 1.1.1.0 - - ascii-case ^>= 1.0.0.8 - - ascii-char ^>= 1.0.0.12 - - ascii-group ^>= 1.0.0.8 - - ascii-predicates ^>= 1.0.0.6 - - ascii-superset ^>= 1.0.1.8 - - ascii-th ^>= 1.0.0.6 - - aws-cloudfront-signed-cookies ^>= 0.2.0.10 - - d10 ^>= 1.0.0.1 - - hex-text ^>= 0.1.0.4 - - stripe-concepts ^>= 1.0.3 - - stripe-signature ^>= 1.0.0.10 - - stripe-scotty ^>= 1.1 - - stripe-wreq ^>= 1.0.1.10 + - ascii ^>= 1.7.0.1 + - ascii-case ^>= 1.0.1.3 + - ascii-caseless ^>= 0.0.0.1 + - ascii-char ^>= 1.0.1.0 + - ascii-group ^>= 1.0.0.16 + - ascii-numbers ^>= 1.2.0.1 + - ascii-predicates ^>= 1.0.1.3 + - ascii-superset ^>= 1.3.0.1 + - ascii-th ^>= 1.2.0.1 + - attoparsec-run ^>= 0.0.2.0 + - aws-cloudfront-signed-cookies ^>= 0.2.0.12 + - d10 < 0 # 1.0.1.3 builds fine with cabal-install, stack issue? + - data-forest ^>= 0.1.0.12 + - hedgehog-optics < 0 + - hex-text ^>= 0.1.0.9 + - integer-types ^>= 0.1.4.0 + - invert ^>= 1.0.0.4 + - loc ^>= 0.2.0.0 + - memfd ^>= 1.0.1.3 + - partial-semigroup ^>= 0.6.0.2 + - path-text-utf8 < 0 + - quaalude ^>= 0.0.0.1 + - stripe-concepts ^>= 1.0.3.3 + - stripe-signature ^>= 1.0.0.16 + - stripe-wreq ^>= 1.0.1.16 + - systemd-socket-activation ^>= 1.1.0.1 + - unfork ^>= 1.0.0.1 "Viacheslav Lotsmanov @unclechu": - place-cursor-at ^>= 1.0.1 - - qm-interpolated-string ^>= 0.3.0.0 + - qm-interpolated-string ^>= 0.3.1.0 "Douglas Burke @DougBurke": - - swish ^>= 0.10.0.8 - - hvega ^>= 0.12.0.1 - - ihaskell-hvega ^>= 0.5.0.0 + - swish ^>= 0.10.7.0 + - hvega ^>= 0.12.0.7 + - ihaskell-hvega ^>= 0.5.0.4 "Adam Flott @adamflott": - - milena < 0 # compilation failures + - milena < 0 "Csongor Kiss @kcsongor": - - generic-lens ^>= 2.2.0.0 - - generic-optics ^>= 2.2.0.0 - - generic-lens-core ^>= 2.2.0.0 + - generic-lens ^>= 2.2.2.0 + - generic-optics ^>= 2.2.1.0 + - generic-lens-core ^>= 2.2.1.0 "Bogdan Neterebskii @ozzzzz": - cast ^>= 0.1.0.2 - - aeson-picker < 0 + - aeson-picker ^>= 0.1.0.6 "Warlock @A1-Triard": - errors-ext ^>= 0.4.2 - binary-ext < 0 "Bob Long @bobjflong": - - yesod-csp ^>= 0.2.5.0 + - yesod-csp < 0 # 0.2.5.0 text 1.2.5.0 exports `elem` "Alexander Vershilov @qnikst": - stm-conduit ^>= 4.0.1 - - co-log-concurrent < 0 - - HaskellNet < 0 + - co-log-concurrent ^>= 0.5.1.0 + - HaskellNet ^>= 0.6.1.2 "Tung Dao @tungd": - time-locale-vietnamese ^>= 1.0.0.0 @@ -3964,90 +4321,122 @@ packages: - hedgehog-corpus ^>= 0.2.0 "Tom Sydney Kerckhove @NorfairKing": - - autodocodec ^>= 0.0.0.0 - - autodocodec-openapi3 ^>= 0.0.0.0 - - autodocodec-schema ^>= 0.0.0.0 - - autodocodec-yaml ^>= 0.0.0.0 + - appendful ^>= 0.1.0.0 + - appendful-persistent ^>= 0.1.0.1 + - autodocodec ^>= 0.2.2.0 + - autodocodec-openapi3 ^>= 0.2.1.1 + - autodocodec-schema ^>= 0.1.0.3 + - autodocodec-yaml ^>= 0.2.0.3 - cursor ^>= 0.3.2.0 - cursor-brick ^>= 0.1.0.1 - cursor-fuzzy-time ^>= 0.0.0.0 - cursor-gen ^>= 0.4.0.0 - - fuzzy-time ^>= 0.2.0.0 - - genvalidity ^>= 1.0.0.1 - - genvalidity-aeson ^>= 1.0.0.0 - - genvalidity-bytestring ^>= 1.0.0.0 - - genvalidity-containers ^>= 1.0.0.0 - - genvalidity-criterion ^>= 1.0.0.0 - - genvalidity-hspec ^>= 1.0.0.0 + - fast-myers-diff ^>= 0.0.0 + - fuzzy-time ^>= 0.2.0.3 + - genvalidity ^>= 1.1.0.0 + - genvalidity-aeson ^>= 1.0.0.1 + - genvalidity-appendful ^>= 0.1.0.0 + - genvalidity-bytestring ^>= 1.0.0.1 + - genvalidity-case-insensitive ^>= 0.0.0.1 + - genvalidity-containers ^>= 1.0.0.1 + - genvalidity-criterion ^>= 1.1.0.0 + - genvalidity-hspec ^>= 1.0.0.3 - genvalidity-hspec-aeson ^>= 1.0.0.0 - genvalidity-hspec-binary ^>= 1.0.0.0 - genvalidity-hspec-cereal ^>= 1.0.0.0 - - genvalidity-hspec-hashable ^>= 1.0.0.0 + - genvalidity-hspec-hashable ^>= 1.0.0.1 - genvalidity-hspec-optics ^>= 1.0.0.0 - genvalidity-hspec-persistent ^>= 1.0.0.0 - - genvalidity-mergeful ^>= 0.3.0.0 + - genvalidity-mergeful ^>= 0.3.0.1 - genvalidity-mergeless ^>= 0.3.0.0 - - genvalidity-path ^>= 1.0.0.0 - - genvalidity-persistent ^>= 1.0.0.0 + - genvalidity-network-uri ^>= 0.0.0.0 + - genvalidity-path ^>= 1.0.0.1 + - genvalidity-persistent ^>= 1.0.0.2 - genvalidity-property ^>= 1.0.0.0 - genvalidity-scientific ^>= 1.0.0.0 - genvalidity-sydtest ^>= 1.0.0.0 - genvalidity-sydtest-aeson ^>= 1.0.0.0 - - genvalidity-sydtest-hashable ^>= 1.0.0.0 + - genvalidity-sydtest-hashable ^>= 1.0.0.1 - genvalidity-sydtest-lens ^>= 1.0.0.0 - genvalidity-sydtest-persistent ^>= 1.0.0.0 - - genvalidity-text ^>= 1.0.0.0 - - genvalidity-time ^>= 1.0.0.0 + - genvalidity-text ^>= 1.0.0.1 + - genvalidity-time ^>= 1.0.0.1 - genvalidity-typed-uuid ^>= 0.1.0.1 - - genvalidity-unordered-containers ^>= 1.0.0.0 - - genvalidity-uuid ^>= 1.0.0.0 + - genvalidity-unordered-containers ^>= 1.0.0.1 + - genvalidity-uuid ^>= 1.0.0.1 - genvalidity-vector ^>= 1.0.0.0 - - mergeful ^>= 0.2.0.0 - - mergeless ^>= 0.3.0.0 + - mergeful ^>= 0.3.0.0 + - mergeful-persistent ^>= 0.3.0.1 + - mergeless ^>= 0.4.0.0 + - mergeless-persistent ^>= 0.1.0.1 - pretty-relative-time ^>= 0.3.0.0 - - safe-coloured-text ^>= 0.1.0.0 - - safe-coloured-text-terminfo ^>= 0.0.0.0 - - sydtest ^>= 0.5.0.0 - - sydtest-discover ^>= 0.0.0.1 - - sydtest-persistent ^>= 0.0.0.0 - - sydtest-persistent-sqlite < 0 - - sydtest-servant ^>= 0.2.0.0 - - sydtest-wai ^>= 0.2.0.0 - - sydtest-yesod ^>= 0.3.0.0 + - safe-coloured-text ^>= 0.2.0.1 + - safe-coloured-text-gen ^>= 0.0.0.2 + - safe-coloured-text-layout ^>= 0.0.0.0 + - safe-coloured-text-layout-gen ^>= 0.0.0.0 + - safe-coloured-text-terminfo ^>= 0.1.0.0 + - sydtest ^>= 0.15.1.1 + - sydtest-aeson ^>= 0.1.0.0 + - sydtest-amqp ^>= 0.1.0.0 + - sydtest-autodocodec ^>= 0.0.0.0 + - sydtest-discover ^>= 0.0.0.4 + - sydtest-hedgehog ^>= 0.4.0.0 + - sydtest-hedis ^>= 0.0.0.0 + - sydtest-hspec ^>= 0.4.0.2 + - sydtest-mongo ^>= 0.0.0.0 + - sydtest-persistent ^>= 0.0.0.2 + - sydtest-persistent-postgresql < 0 + - sydtest-persistent-sqlite ^>= 0.2.0.3 + - sydtest-process ^>= 0.0.0.0 + - sydtest-rabbitmq ^>= 0.1.0.0 + - sydtest-servant ^>= 0.2.0.2 + - sydtest-typed-process ^>= 0.0.0.0 + - sydtest-wai ^>= 0.2.0.1 + - sydtest-webdriver ^>= 0.0.0.1 + - sydtest-webdriver-screenshot ^>= 0.0.0.2 + - sydtest-webdriver-yesod ^>= 0.0.0.1 + - sydtest-yesod ^>= 0.3.0.2 - typed-uuid ^>= 0.2.0.0 - - validity ^>= 0.12.0.0 - - validity-aeson ^>= 0.2.0.4 + - validity ^>= 0.12.0.2 + - validity-aeson ^>= 0.2.0.5 - validity-bytestring ^>= 0.4.1.1 + - validity-case-insensitive ^>= 0.0.0.0 - validity-containers ^>= 0.5.0.4 + - validity-network-uri ^>= 0.0.0.1 - validity-path ^>= 0.4.0.1 - validity-persistent ^>= 0.0.0.0 - validity-primitive ^>= 0.0.0.1 - validity-scientific ^>= 0.2.0.3 - - validity-text ^>= 0.3.1.2 + - validity-text ^>= 0.3.1.3 - validity-time ^>= 0.5.0.0 - validity-unordered-containers ^>= 0.2.0.3 - validity-uuid ^>= 0.1.0.3 - validity-vector ^>= 0.2.0.3 - - yamlparse-applicative ^>= 0.2.0.1 "Henry Laxen @HenryLaxen": - bbdb ^>= 0.8 + "Andrzej Rybczak @arybczak": + - effectful ^>= 2.3.0.0 + - effectful-core ^>= 2.3.0.1 + - effectful-plugin ^>= 1.1.0.2 + - effectful-th ^>= 1.0.0.1 + "Stevan Andjelkovic @stevana": - - quickcheck-state-machine < 0 + - quickcheck-state-machine ^>= 0.8.0 "Sebastian Nagel @ch1bo": - - hdevtools < 0 # compilation failure + - hdevtools < 0 # 0.1.8.0 compile fail - servant-exceptions ^>= 0.2.1 - servant-exceptions-server ^>= 0.2.1 "Vaibhav Sagar @vaibhavsagar": - - ihaskell ^>= 0.10.2.2 - - ghc-parser ^>= 0.2.3.0 + - ihaskell ^>= 0.10.4.0 && <0.11.0.0 # https://github.com/commercialhaskell/stackage/issues/7172 + - ghc-parser ^>= 0.2.6.0 "Alexis Williams @typedrat": - - stb-image-redux ^>= 0.2.1.3 + - stb-image-redux < 0 # deprecated version "Alexandre Peyroux @apeyroux": - HSlippyMap ^>= 3.0.1 @@ -4056,118 +4445,118 @@ packages: "Andrey Sverdlichenko @rblaze": - credential-store ^>= 0.1.2 - - dbus ^>= 1.2.21 + - dbus ^>= 1.3.1 - re2 ^>= 0.3 "Bardur Arantsson @BardurArantsson": - - peregrin ^>= 0.3.1 + - peregrin ^>= 0.4.2 - pg-harness-client ^>= 0.6.0 - pg-harness-server < 0 - - unliftio-pool ^>= 0.2.1.1 - - unliftio-streams ^>= 0.1.1.1 + - tempgres-client ^>= 1.0.0 + - unliftio-pool < 0 + - unliftio-streams ^>= 0.2.0.0 "Sebastian Graf @sgraf812": - pomaps < 0 "Alexey Kotlyarov @koterpillar": - appendmap ^>= 0.1.5 - - serverless-haskell < 0 + - serverless-haskell < 0 # 0.12.6 https://github.com/seek-oss/serverless-haskell/issues/188 "Guru Devanla @gdevanla": - pptable ^>= 0.3.0.0 - - cassava-records < 0 # compilation failure MonadFail - - pandoc-markdown-ghci-filter < 0 # https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 + - cassava-records < 0 # 0.1.0.4 compile fail MonadFail + - pandoc-markdown-ghci-filter < 0 # 0.1.0.0 compile fail https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 "Lucas David Traverso @ludat": - - map-syntax < 0 - - heist < 0 - - snap < 0 - conferer ^>= 1.1.0.0 - conferer-snap < 0 - - conferer-warp ^>= 1.1.0.0 + - conferer-warp ^>= 1.1.0.1 - conferer-hspec < 0 - conferer-aeson ^>= 1.1.0.2 "Tim Humphries @thumphries": - - transformers-either ^>= 0.1.2 - - transformers-fix ^>= 1.0 + - transformers-either ^>= 0.1.4 + - transformers-fix < 0 "Dan Firth @locallycompact": - - aeson-with ^>= 0.1.2.0 - - binary-instances ^>= 1.0.2 - - comonad-extras ^>= 4.0.1 + - aeson-with < 0 + - binary-instances ^>= 1.0.4 + - comonad-extras < 0 - compact ^>= 0.2.0.0 - composite-aeson < 0 - composite-aeson-path < 0 - composite-aeson-refined < 0 - composite-aeson-throw < 0 - - composite-base < 0 - - composite-binary < 0 + - composite-base ^>= 0.8.2.1 && <0.8.2.2 # https://github.com/commercialhaskell/stackage/issues/7193 + - composite-binary ^>= 0.8.2.2 - composite-ekg < 0 - - composite-hashable < 0 - - composite-tuple < 0 - - composite-xstep < 0 - - ixset-typed-binary-instance < 0 + - composite-hashable ^>= 0.8.2.2 + - composite-tuple ^>= 0.1.2.0 + - composite-xstep ^>= 0.1.0.0 + - ixset-typed-binary-instance ^>= 0.1.0.2 - ixset-typed-conversions < 0 - - ixset-typed-hashable-instance < 0 + - ixset-typed-hashable-instance ^>= 0.1.0.2 - lucid-cdn ^>= 0.2.2.0 - - natural-arithmetic ^>= 0.1.2.0 + - natural-arithmetic ^>= 0.1.4.0 - pandoc-dhall-decoder ^>= 0.1.0.1 - pandoc-throw ^>= 0.1.0.0 - path-binary-instance ^>= 0.1.0.1 - path-dhall-instance ^>= 0.2.1.0 - path-extensions ^>= 0.1.1.0 - - path-formatting ^>= 0.1.0.0 + - path-formatting < 0 - path-like ^>= 0.2.0.2 - path-utils ^>= 0.1.1.0 - - polysemy-extra ^>= 0.2.0.0 + - polysemy-extra < 0 - polysemy-fs ^>= 0.1.0.0 - - polysemy-fskvstore ^>= 0.1.1.0 - - polysemy-kvstore-jsonfile ^>= 0.1.1.0 - - polysemy-kvstore ^>= 0.1.2.0 - - polysemy-methodology ^>= 0.2.1.0 - - polysemy-path ^>= 0.2.1.0 - - polysemy-several ^>= 0.1.0.0 - - polysemy-socket ^>= 0.0.2.0 - - polysemy-uncontrolled ^>= 0.1.1.0 - - polysemy-video ^>= 0.2.0.1 - - polysemy-vinyl ^>= 0.1.5.0 + - polysemy-fskvstore < 0 + - polysemy-kvstore-jsonfile < 0 + - polysemy-kvstore < 0 + - polysemy-methodology < 0 + - polysemy-path < 0 + - polysemy-several < 0 + - polysemy-socket < 0 + - polysemy-uncontrolled < 0 + - polysemy-video < 0 + - polysemy-vinyl < 0 - primitive-offset ^>= 0.2.0.0 + - sdl2-gfx ^>= 0.3.0.0 + - sdl2-image ^>= 2.1.0.0 + - sdl2-mixer ^>= 1.2.0.0 - shake-plus ^>= 0.3.4.0 - - shake-plus-extended < 0 - - simple-media-timestamp ^>= 0.2.0.0 - - simple-media-timestamp-formatting ^>= 0.1.1.0 + - shake-plus-extended ^>= 0.4.1.0 + - simple-media-timestamp ^>= 0.2.1.0 + - simple-media-timestamp-formatting < 0 - simple-media-timestamp-attoparsec ^>= 0.1.0.0 - - srt ^>= 0.1.1.0 - - srt-attoparsec ^>= 0.1.0.0 - - srt-dhall ^>= 0.1.0.0 - - srt-formatting ^>= 0.1.0.0 + - srt ^>= 0.1.2.0 + - srt-attoparsec < 0 + - srt-dhall < 0 + - srt-formatting < 0 - tuples ^>= 0.1.0.0 - unliftio-path ^>= 0.0.2.0 - - variable-media-field ^>= 0.1.0.0 - - variable-media-field-dhall ^>= 0.1.0.0 - - variable-media-field-optics ^>= 0.1.0.0 + - variable-media-field < 0 + - variable-media-field-dhall < 0 + - variable-media-field-optics < 0 - vinyl-loeb ^>= 0.0.1.0 - within ^>= 0.2.0.1 - - zipper-extra ^>= 0.1.3.2 + - zipper-extra < 0 "Domen Kozar @domenkozar": - - elm2nix ^>= 0.2.1 - - mixpanel-client ^>= 0.3.0 - - netrc < 0 + - elm2nix < 0 # 0.3.0 compile fail + - mixpanel-client < 0 # 0.3.0 aeson 2, https://github.com/commercialhaskell/stackage/issues/6443 - pretty-sop ^>= 0.2.0.3 - - servant-auth ^>= 0.4.0.0 - - servant-auth-server < 0 - - servant-auth-client ^>= 0.4.1.0 - - servant-auth-swagger < 0 - - servant-auth-docs < 0 - - servant-elm < 0 + - servant-auth ^>= 0.4.1.0 + - servant-auth-server ^>= 0.4.8.0 + - servant-auth-client ^>= 0.4.1.1 + - servant-auth-swagger ^>= 0.2.10.2 + - servant-auth-docs ^>= 0.2.10.1 + - servant-elm ^>= 0.7.3 - systemd ^>= 2.3.0 "Andre Van Der Merwe @andrevdm": - bhoogle < 0 - - hyraxAbif < 0 - - postgresql-migration ^>= 0.2.1.3 + - hyraxAbif ^>= 0.2.4.5 + - postgresql-migration ^>= 0.2.1.7 "David Millar-Durrant @DavidM-D": - indexed-list-literals ^>= 0.2.1.3 @@ -4176,40 +4565,47 @@ packages: - csg < 0 - simple-vec3 ^>= 0.6.0.1 - static-text ^>= 0.2.0.7 - - th-env ^>= 0.1.0.3 + - th-env ^>= 0.1.1 - th-nowq ^>= 0.1.0.5 "Dan Fithian @dfithian": - - oauthenticated ^>= 0.2.1.0 - - datadog ^>= 0.2.5.0 + - oauthenticated < 0 # 0.3.0.0 compile fail https://github.com/tel/oauthenticated/issues/33 + - datadog ^>= 0.3.0.0 - interpolator < 0 - file-path-th ^>= 0.1.0.0 "Raghu Kaippully @rkaippully": - - webgear-server ^>= 0.2.1 + - webgear-core ^>= 1.0.5 + - webgear-openapi ^>= 1.0.5 + - webgear-server < 0 # 1.0.5 compile fail https://github.com/haskell-webgear/webgear/issues/16 "Alex Washburn @recursion-ninja": - - bv-little < 0 - - mono-traversable-keys ^>= 0.2.0 + - bv-little ^>= 1.3.2 + - mono-traversable-keys ^>= 0.3.0 "Avi Press @aviaviavi": - - curl-runnings ^>= 0.16.0 + - curl-runnings < 0 - cryptocompare ^>= 0.1.2 "Jack Kiefer @JackKiefer": - herms < 0 "Sergey Vinokurov @sergv": - - bencoding < 0 - - emacs-module < 0 # compilation failure ghc 8.10.1 #5436/closed - - tasty-ant-xml ^>= 1.1.8 + - bencoding < 0 # 0.4.5.4 compile fail not ghc-9.6 ready https://github.com/sergv/bencoding/issues/4 + - emacs-module ^>= 0.2.1 + - tasty-ant-xml ^>= 1.1.9 + - prettyprinter-combinators ^>= 0.1.2 + - composition-prelude ^>= 3.0.0.2 + - toml-reader-parse ^>= 0.1.1.1 + - atomic-counter ^>= 0.1.2.1 + - directory-ospath-streaming ^>= 0.1.0.1 "Eugene Smolanka @esmolanka": - - sexp-grammar ^>= 2.3.3.1 - - invertible-grammar ^>= 0.1.3.2 + - sexp-grammar ^>= 2.3.4.2 + - invertible-grammar ^>= 0.1.3.5 "Maximilian Tagher @MaxGabriel": - - aeson-iproute ^>= 0.2.1 + - aeson-iproute ^>= 0.3.0 - persistent-iproute ^>= 0.2.5 "Damian Nadales @capitanbatata": @@ -4219,60 +4615,61 @@ packages: - codec-beam ^>= 0.2.0 "Chris Parks @cdparks": - - closed ^>= 0.2.0.1 + - closed ^>= 0.2.0.2 "Chris Coffey @ChrisCoffey": - - servant-tracing ^>= 0.1.0.2 + - servant-tracing < 0 - cuckoo-filter < 0 - confcrypt < 0 "Rick Owens @owensmurray": - - om-elm < 0 + - om-elm ^>= 2.0.0.5 "ALeX Kazik @alexkazik": - exomizer ^>= 1.0.0 - qnap-decrypt < 0 - - qrcode-core ^>= 0.9.4 - - qrcode-juicypixels ^>= 0.8.2 + - qrcode-core ^>= 0.9.9 + - qrcode-juicypixels ^>= 0.8.5 "Reed Oei @ReedOei": - fuzzy-dates ^>= 0.1.1.2 "Matthew Farkas-Dyck @strake": - Fin < 0 - - alg ^>= 0.2.13.1 - - category ^>= 0.2.5.0 - - constraint ^>= 0.1.4.0 - - dual ^>= 0.1.1.1 - - either-both ^>= 0.1.1.1 + - alg < 0 + - category < 0 + - constraint < 0 + - dual < 0 # 0.1.1.1 compile fail deprecated (https://hackage.haskell.org/package/dual) and not ghc 9.6 ready + - either-both < 0 # 0.1.1.1 compile fail deprecated (https://hackage.haskell.org/package/either-both) and not ghc 9.6 ready - filtrable ^>= 0.1.6.0 - - foldable1 ^>= 0.1.0.0 + - foldable1 < 0 - hs-functors < 0 - lenz < 0 - natural-induction ^>= 0.2.0.0 - - peano ^>= 0.1.0.1 + - peano ^>= 0.1.0.2 - unconstrained ^>= 0.1.0.2 - - util ^>= 0.1.17.1 + - util < 0 # 0.1.17.1 compile fail needs DerivingVia enabled "Ben Sima @bensima": - - yesod-text-markdown ^>= 0.1.10 + - yesod-text-markdown < 0 "Alexander Krupenkin @akru": - web3 < 0 "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": - - can-i-haz ^>= 0.3.1.0 - - enum-subset-generate < 0 + - binary-generic-combinators ^>= 0.4.4.0 + - can-i-haz ^>= 0.3.1.1 + - enum-subset-generate ^>= 0.1.0.1 "Trevis Elser @telser": - - sendfile ^>= 0.7.11.1 + - sendfile ^>= 0.7.11.5 "Kristen Kozak @grayjay": - json-rpc-server < 0 - json-rpc-client < 0 "Magnus Therning @magthe": - - hsini ^>= 0.5.1.2 + - hsini ^>= 0.5.2.2 "Baojun Wang @wangbj": - elf ^>= 0.31 @@ -4284,39 +4681,39 @@ packages: - natural-sort ^>= 0.1.2 "John Biesnecker @biesnecker": - - async-pool ^>= 0.9.1 + - async-pool ^>= 0.9.2 "Zoltan Kelemen @kelemzol": - fswatch < 0 "Matthew Wraith @wraithm": - - prometheus ^>= 2.2.2 - - prometheus-wai-middleware ^>= 1.0.1.0 + - prometheus ^>= 2.2.4 + - prometheus-wai-middleware < 0 - hgrev < 0 - - seqid ^>= 0.6.2 + - seqid ^>= 0.6.3 - seqid-streams ^>= 0.7.2 "Daniel Gorin @jcpetruzza": - - barbies ^>= 2.0.3.0 + - barbies ^>= 2.0.5.0 - data-hash ^>= 0.2.0.1 "Eduard Sergeev @EduardSergeev": - - monad-memo ^>= 0.5.3 + - monad-memo ^>= 0.5.4 "Wanja Chresta @wchresta": - matrix-static ^>= 0.3 "Jean-Pierre Rupp @xenog": - - json-rpc ^>= 1.0.3 + - json-rpc ^>= 1.0.4 - rfc1751 ^>= 0.1.3 - murmur3 ^>= 1.0.5 - - nqe ^>= 0.6.3 - - secp256k1-haskell ^>= 0.6.0 + - nqe ^>= 0.6.5 + - secp256k1-haskell ^>= 1.1.0 - rocksdb-haskell ^>= 1.0.1 - - rocksdb-haskell-jprupp ^>= 2.1.3 + - rocksdb-haskell-jprupp ^>= 2.1.6 - rocksdb-query ^>= 0.4.2 - - haskoin-core ^>= 0.21.0 - - haskoin-node < 0 + - haskoin-core ^>= 1.0.2 + - haskoin-node ^>= 1.0.1 - haskoin-store < 0 "asakamirai @asakamirai": @@ -4324,6 +4721,10 @@ packages: "Eric Torreborre @etorreborre": - registry < 0 + - registry-aeson < 0 + - registry-hedgehog < 0 + - registry-hedgehog-aeson < 0 + - registry-options < 0 "Ryota Kameoka @ryota-ka": - duration ^>= 0.2.0.0 @@ -4344,26 +4745,28 @@ packages: - bazel-runfiles ^>= 0.12 "Rob Rix @robrix": - - fused-effects ^>= 1.1.1.1 + - fused-effects ^>= 1.1.2.2 "Josef Thorne @Grendel-Grendel-Grendel": - - focuslist ^>= 0.1.0.2 + - focuslist ^>= 0.1.1.0 "Pavan Rikhi @prikhi": - hs-php-session ^>= 0.0.9.3 - - wordpress-auth ^>= 1.0.0.1 - - servant-auth-wordpress ^>= 1.0.0.2 + - wordpress-auth < 0 # 1.0.0.1 # fails to compile https://github.com/prikhi/wordpress-auth/issues/1 + - servant-auth-wordpress < 0 - ca-province-codes ^>= 1.0.0.0 - mx-state-codes ^>= 1.0.0.0 - sitemap-gen ^>= 0.1.0.0 - - tasty-wai ^>= 0.1.1.1 - - stack-templatizer ^>= 0.1.0.2 + - tasty-wai ^>= 0.1.2.0 + - stack-templatizer ^>= 0.1.1.0 - immortal-queue ^>= 0.1.0.1 - wai-middleware-clacks ^>= 0.1.0.1 - - hledger-stockquotes ^>= 0.1.2.0 - - bnb-staking-csvs ^>= 0.2.0.0 - - solana-staking-csvs ^>= 0.1.1.0 - - cointracking-imports ^>= 0.1.0.1 + - hledger-stockquotes ^>= 0.1.2.1 + - bnb-staking-csvs ^>= 0.2.1.0 + - solana-staking-csvs ^>= 0.1.2.0 + - cointracking-imports ^>= 0.1.0.2 + - binance-exports ^>= 0.1.2.0 + - gemini-exports ^>= 0.1.0.0 "David Baynard @dbaynard": - time-qq < 0 @@ -4372,89 +4775,89 @@ packages: "Erick Gonzalez @codemonkeylabs-de": - eap ^>= 0.9.0.2 - - failable ^>= 1.2.4.0 - - ttl-hashtables ^>= 1.4.1.0 + - failable < 0 + - ttl-hashtables < 0 - radius ^>= 0.7.1.0 - - structured-cli ^>= 2.7.0.1 + - structured-cli < 0 "Jan Path @janpath": - smallcheck-series < 0 "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": - - oeis2 ^>= 1.0.6 + - oeis2 < 0 # 1.0.7 compile fail https://github.com/commercialhaskell/stackage/issues/6498 "David Himmelstrup @lemmih": - - chiphunk ^>= 0.1.4.0 - - reanimate-svg ^>= 0.13.0.1 + - chiphunk < 0 + - reanimate-svg < 0 # https://github.com/reanimate/reanimate-svg/issues/41 - reanimate < 0 - earcut < 0 - vector-circular < 0 - # required by reanimate as of 0.4.2.0 - hgeometry < 0 - hgeometry-combinatorial < 0 - approximate-equality ^>= 1.1.0.2 # required by hgeometry-combinatorial - type-level-natural-number ^>= 2.0 # required by approximate-equality "Vitaly Bragilevsky @bravit": - - Chart < 0 - - Chart-diagrams < 0 + - Chart ^>= 1.9.5 + - Chart-diagrams ^>= 1.9.5.1 "Juri ChomĂ© @2mol": - - msgpack < 0 + - msgpack ^>= 1.0.1.0 - msgpack-rpc < 0 - msgpack-idl < 0 - - msgpack-aeson < 0 + - msgpack-aeson < 0 # 0.1.0.0 compile fail https://github.com/commercialhaskell/stackage/issues/7135 - int-cast ^>= 0.2.0.0 "Akihito Kirisaki @kirisaki": - - caster ^>= 0.0.3.0 + - caster < 0 "Felix Paulusma @Vlix": - - safe-json ^>= 1.1.2.0 + - safe-json ^>= 1.2.0.0 "Olle Fredriksson @ollef": - - rope-utf16-splay ^>= 0.3.2.0 + - rope-utf16-splay ^>= 0.4.0.0 "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table ^>= 1.0.9 + - pandoc-csv2table < 0 "Elben Shira @elben": - pencil < 0 "Ivan Malison @IvanMalison": - - ConfigFile ^>= 1.1.4 + - ConfigFile < 0 - dbus-hslogger ^>= 0.1.0.1 - - gi-cairo-connector ^>= 0.1.1 - - gi-cairo-render ^>= 0.1.1 - - gtk-sni-tray ^>= 0.1.8.0 - - gtk-strut ^>= 0.1.3.0 - - rate-limit ^>= 1.4.2 + - gi-cairo-connector < 0 + - gi-cairo-render ^>= 0.1.2 + - gtk-sni-tray < 0 + - gtk-strut ^>= 0.1.3.2 + - rate-limit ^>= 1.4.3 - status-notifier-item ^>= 0.3.1.0 - taffybar < 0 - time-units ^>= 1.0.0 - xml-helpers ^>= 1.0.0 - - xdg-desktop-entry ^>= 0.1.1.1 + - xdg-desktop-entry < 0 "ARATA Mizuki @minoki": - unboxing-vector ^>= 0.2.0.0 - "Brandon Chinn @brandon-leapyear": - - aeson-schemas ^>= 1.3.5 - - github-rest ^>= 1.1.2 - - graphql-client < 0 - - hpc-lcov < 0 - - th-test-utils ^>= 1.1.1 - "Brandon Chinn @brandonchinn178": - - persistent-mtl ^>= 0.3.0.0 - - fourmolu ^>= 0.4.0.0 + - aeson-schemas ^>= 1.4.1.0 + - fourmolu ^>= 0.14.0.0 + - github-rest ^>= 1.1.4 + - graphql-client ^>= 1.2.2 + - hpc-lcov ^>= 1.1.1 + - http-api-data-qq ^>= 0.1.0.0 + - persistent-mtl < 0 + - tasty-autocollect ^>= 0.4.1 + - th-test-utils ^>= 1.2.1 + - toml-reader ^>= 0.2.1.0 "Akshay Mankar @akshaymankar": - - jsonpath ^>= 0.2.0.0 + - jsonpath ^>= 0.3.0.0 "James Brock @jamesdbrock": - - replace-megaparsec ^>= 1.4.4.0 - - replace-attoparsec ^>= 1.4.5.0 + - replace-megaparsec ^>= 1.5.0.1 + - replace-attoparsec ^>= 1.5.0.0 "Robbie McMichael @robbiemcmichael": - http-client-overrides ^>= 0.1.1.0 @@ -4467,84 +4870,94 @@ packages: "Davit Nalchevanidze @nalchevanidze": - morpheus-graphql < 0 - - morpheus-graphql-core < 0 - - morpheus-graphql-client < 0 - - morpheus-graphql-subscriptions < 0 - - morpheus-graphql-app < 0 + - morpheus-graphql-core ^>= 0.27.3 + - morpheus-graphql-client ^>= 0.27.3 + - morpheus-graphql-subscriptions ^>= 0.27.3 + - morpheus-graphql-app ^>= 0.27.3 + - morpheus-graphql-code-gen < 0 + - morpheus-graphql-tests ^>= 0.27.3 + - morpheus-graphql-code-gen-utils ^>= 0.27.3 + - morpheus-graphql-server ^>= 0.27.3 "Satoshi Egi @egisatoshi": - backtracking ^>= 0.1.0 - egison < 0 - mini-egison < 0 - sweet-egison < 0 - - egison-pattern-src < 0 + - egison-pattern-src ^>= 0.2.1.2 - egison-pattern-src-th-mode < 0 "Travis Cardwell @TravisCardwell": - - literatex ^>= 0.2.0.0 - - ttc ^>= 1.1.0.2 + - bm ^>= 0.2.0.0 + - horizontal-rule ^>= 0.6.0.0 + - literatex ^>= 0.3.0.0 + - phatsort ^>= 0.6.0.0 + - queue-sheet < 0 + - redact ^>= 0.5.0.0 + - ttc ^>= 1.4.0.0 "Jasper Woudenberg @jwoudenberg": - - bugsnag-hs ^>= 0.2.0.7 - - junit-xml ^>= 0.1.0.2 - - wai-feature-flags ^>= 0.1.0.2 - - tasty-test-reporter ^>= 0.1.1.4 - - pretty-diff ^>= 0.4.0.3 + - bugsnag-hs ^>= 0.2.0.12 + - junit-xml ^>= 0.1.0.3 + - wai-feature-flags ^>= 0.1.0.7 + - tasty-test-reporter < 0 + - pretty-diff < 0 "Eric Conlon @ejconlon": - blanks ^>= 0.5.0 - - climb ^>= 0.3.3 - - linenoise ^>= 0.3.2 - - little-rio ^>= 0.2.2 - - little-logger < 0 + - climb < 0 + - linenoise < 0 + - little-rio ^>= 2.0.1 + - little-logger ^>= 1.0.2 # Maintainership with @23Skidoo - ekg < 0 - - ekg-core < 0 + - ekg-core ^>= 0.1.1.7 - ekg-json < 0 - ekg-statsd < 0 "Jorah Gao @gqk007": - - aeson-default ^>= 0.9.1.0 + - aeson-default < 0 - vformat ^>= 0.14.1.0 - vformat-time ^>= 0.1.0.0 - - vformat-aeson ^>= 0.1.0.1 + - vformat-aeson < 0 - hkd-default ^>= 1.1.0.0 "Shintaro Sakata @chemirea": - utf8-conversions < 0 "Alessandro Marrella @amarrella": - - kubernetes-webhook-haskell ^>= 0.2.0.3 + - kubernetes-webhook-haskell < 0 "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": - - hpc-codecov ^>= 0.3.0.0 + - hpc-codecov ^>= 0.5.0.0 + - miniterion ^>= 0.1.1.0 "Hiromi Ishii @konn": - equational-reasoning ^>= 0.7.0.1 - - ghc-typelits-presburger ^>= 0.6.1.0 - - singletons-presburger ^>= 0.6.1.0 - - type-natural ^>= 1.1.0.0 - - subcategories ^>= 0.1.1.0 - - sized ^>= 1.0.0.0 + - ghc-typelits-presburger ^>= 0.7.2.0 + - singletons-presburger ^>= 0.7.2.0 + - type-natural ^>= 1.3.0.0 + - subcategories ^>= 0.2.0.1 + - sized ^>= 1.1.0.0 "Frank Doepper @woffs": - - amqp-utils ^>= 0.6.3.2 + - amqp-utils ^>= 0.6.4.0 - magic ^>= 1.1 "Ziyang Liu @zliu41": - - apply-refact ^>= 0.9.3.0 - - hadoop-streaming ^>= 0.2.0.3 + - apply-refact ^>= 0.13.0.0 + - hadoop-streaming < 0 - indexed-containers ^>= 0.1.0.2 - math-extras ^>= 0.1.1.0 - min-max-pqueue ^>= 0.1.0.2 - multi-containers ^>= 0.2 "Vaclav Svejcar @vaclavsvejcar": - - headroom < 0 # https://github.com/commercialhaskell/stackage/issues/6342 - - vcs-ignore ^>= 0.0.1.0 + - headroom < 0 # 0.4.3.0 compile fail + - vcs-ignore ^>= 0.0.2.0 "Adrian Sieber @ad-si": - - ulid < 0 + - ulid ^>= 0.3.2.0 "Rickey Visinski @rickeyski": - slack-api < 0 @@ -4553,39 +4966,42 @@ packages: - it-has < 0 "Gabriele Sales @gbrsales": - - cabal-appimage ^>= 0.3.0.3 + - cabal-appimage ^>= 0.4.0.2 "Dominik Schrempf @dschrempf": - - circular ^>= 0.4.0.1 - - covariance ^>= 0.1.0.5 - - dirichlet ^>= 0.1.0.5 - - elynx < 0 - - elynx-markov < 0 - - elynx-nexus ^>= 0.6.1.0 - - elynx-seq < 0 - - elynx-tools < 0 - - elynx-tree ^>= 0.6.1.0 + - circular ^>= 0.4.0.3 + - covariance ^>= 0.2.0.1 + - dirichlet ^>= 0.1.0.7 + - elynx ^>= 0.7.2.2 + - elynx-markov ^>= 0.7.2.2 + - elynx-nexus ^>= 0.7.2.2 + - elynx-seq ^>= 0.7.2.2 + - elynx-tools ^>= 0.7.2.2 + - elynx-tree ^>= 0.7.2.2 - glasso ^>= 0.1.0 - - mcmc ^>= 0.6.1.0 - - pava ^>= 0.1.1.2 - - slynx < 0 - - tlynx < 0 + - mcmc ^>= 0.8.2.0 + - pava ^>= 0.1.1.4 + - slynx ^>= 0.7.2.2 + - tlynx ^>= 0.7.2.2 "Eric Rochester @erochest": - - text-regex-replace ^>= 0.1.1.4 + - text-regex-replace ^>= 0.1.1.5 "Masahiro Honma @hiratara": - - string-random ^>= 0.1.4.1 + - string-random ^>= 0.1.4.3 "Michael B. Gale @mbg": - - c14n ^>= 0.1.0.1 + - c14n ^>= 0.1.0.3 - katip-logstash ^>= 0.1.0.2 - - logstash ^>= 0.1.0.3 + - logstash ^>= 0.1.0.4 - monad-logger-logstash ^>= 0.2.0.2 - - moss ^>= 0.2.0.0 - - wai-rate-limit ^>= 0.1.0.0 - - wai-rate-limit-redis ^>= 0.1.0.0 - - wai-saml2 ^>= 0.2.1.2 + - moss ^>= 0.2.0.1 + - network-wait ^>= 0.2.0.0 + - servant-rate-limit ^>= 0.2.0.0 + - time-units-types ^>= 0.2.0.1 + - wai-rate-limit ^>= 0.3.0.0 + - wai-rate-limit-redis ^>= 0.2.0.1 + - wai-saml2 ^>= 0.5 "Jun Narumi @narumij": - matrix-as-xyz ^>= 0.1.2.2 @@ -4596,26 +5012,29 @@ packages: - wakame ^>= 0.1.0.0 "Michael Williams @mlcfp": - - zenacy-html ^>= 2.0.4 - - zenacy-unicode ^>= 1.0.1 + - zenacy-html ^>= 2.1.0 + - zenacy-unicode ^>= 1.0.2 "Maxim Koltsov @maksbotan": - - openapi3 ^>= 3.1.0 - - servant-openapi3 ^>= 2.0.1.2 + - openapi3 ^>= 3.2.4 + - servant-openapi3 ^>= 2.0.1.6 "Song Zhang @HaskellZhangSong": - - derive-topdown < 0 + - derive-topdown ^>= 0.0.3.0 "NoRedInk ": - - nri-env-parser ^>= 0.1.0.7 - - nri-http ^>= 0.1.0.3 - - nri-kafka ^>= 0.1.0.2 - - nri-observability ^>= 0.1.1.3 - - nri-prelude ^>= 0.6.0.5 - - nri-postgresql ^>= 0.1.0.3 - - nri-redis ^>= 0.1.0.3 + - nri-env-parser < 0 + - nri-http < 0 + - nri-kafka < 0 + - nri-observability < 0 + - nri-prelude < 0 + - nri-postgresql < 0 + - nri-redis < 0 - nri-test-encoding < 0 + "Peter Lebbing @DigitalBrains1": + - prettyprinter-interp ^>= 0.2.0.0 + "Behrang Norouzinia @behrang": - jalaali ^>= 1.0.0.0 @@ -4626,202 +5045,367 @@ packages: - zydiskell < 0 "Alejandro Peralta Bazas @aleperaltabazas": - - hocon ^>= 0.1.0.4 + - hocon < 0 "Joshua Booth @jnbooth": - - bitwise-enum ^>= 1.0.1.0 + - bitwise-enum ^>= 1.0.1.2 "Shlomo Shuck @sjshuck": - - pcre2 ^>= 2.0.3 + - pcre2 ^>= 2.2.1 "Emil Axelsson <78emil@gmail.com> @emax": - tree-view ^>= 0.5.1 "Samuel GĂ©lineau @gelisam": - - haskell-awk ^>= 1.2.0.1 - - hint ^>= 0.9.0.5 - - recursion-schemes ^>= 5.2.2.2 + - haskell-awk < 0 + - hint ^>= 0.9.0.8 + - recursion-schemes ^>= 5.2.2.5 "Kyriakos Papachrysanthou @3kyro": - - keep-alive ^>= 0.2.0.0 + - keep-alive ^>= 0.2.1.0 "Brooklyn Zelenka @expede": - - rescue ^>= 0.4.2.1 + - rescue < 0 "Artem Pelenitsyn @ulysses4ever": - alex-meta ^>= 0.3.0.13 - - happy-meta ^>= 0.2.0.11 + - happy-meta ^>= 0.2.1.0 - BNFC-meta ^>= 0.6.1 + - vector-hashtables ^>= 0.1.1.4 "Tomasz Maciosowski @t4ccer": - - wai-session-redis ^>= 0.1.0.4 + - wai-session-redis ^>= 0.1.0.5 "Rory Tyler Hayford @ngua": - - ipa ^>= 0.3.1.1 + - ipa < 0 "Andreas Herrmann @aherrmann": - - capability ^>= 0.5.0.0 + - capability ^>= 0.5.0.1 "Dustin Sallings @dustin": - - net-mqtt < 0 # compile fail attoparsec 0.14 - - net-mqtt-lens < 0 + - net-mqtt ^>= 0.8.6.0 + - net-mqtt-lens ^>= 0.1.1.0 "David A Roberts @davidar": - - streamt ^>= 0.5.0.0 + - streamt < 0 "Martin Sosic @Martinsos": - - strong-path ^>= 1.1.1.0 + - strong-path < 0 "Arnaud Spiwack @aspiwack": - - linear-base ^>= 0.1.0 + - linear-base ^>= 0.4.0 + - linear-generics ^>= 0.2.2 "Ollie Charles @ocharles": - - rel8 ^>= 1.2.1.0 + - reactive-banana ^>= 1.3.2.0 + - rel8 < 0 + - logging-effect ^>= 1.4.0 "Grzegorz Milka @gregorias": - trimdent ^>= 0.1.0.0 "xmonad ": - - X11 ^>= 1.10.2 - - xmonad ^>= 0.17.0 - - xmonad-contrib ^>= 0.17.0 + - X11 ^>= 1.10.3 + - xmonad ^>= 0.17.2 + - xmonad-contrib < 0 "Marcellus Siegburg @marcellussiegburg": - - call-alloy ^>= 0.2.2.0 + - call-alloy ^>= 0.4.0.3 + - call-plantuml ^>= 0.0.1.3 + - hgal ^>= 2.0.0.3 "Rickard Andersson @GoNZooo": - - gotyno-hs ^>= 1.1.0 + - gotyno-hs < 0 # 1.1.0 compile fail https://github.com/commercialhaskell/stackage/issues/6766 - reddit-scrape ^>= 0.0.1 "James Cranch @jcranch": - - tophat ^>= 1.0.5.0 + - agreeing ^>= 0.2.2.0 + - mappings ^>= 0.3.0.0 + - partialord ^>= 0.0.2 + - tophat ^>= 1.0.7.0 "Jan Synacek @jsynacek": - - hpqtypes ^>= 1.9.2.1 - - hpqtypes-extras ^>= 1.13.1.0 + - hpqtypes ^>= 1.11.1.2 + - hpqtypes-extras ^>= 1.16.4.4 - fields-json ^>= 0.4.0.0 - - log-base ^>= 0.11.0.0 - - unjson ^>= 0.15.3 + - log-base ^>= 0.12.0.1 + - unjson ^>= 0.15.4 "Daan Leijen @daanx": - - isocline ^>= 1.0.5 + - isocline ^>= 1.0.9 "Chase @TotallyNotChase": - valida ^>= 1.1.0 - valida-base ^>= 0.2.0 "Andrew Miller @A1kmm": - - polysemy-webserver ^>= 0.2.1.1 + - polysemy-webserver ^>= 0.2.1.2 "Simon Shine @sshine": - - evm-opcodes ^>= 0.1.0 + - evm-opcodes ^>= 0.1.2 "Francesco Ariis @ffaf1": - - ansi-terminal-game ^>= 1.8.0.0 - - lentil ^>= 1.5.3.2 - - linebreak ^>= 1.1.0.1 - - timers-tick ^>= 0.5.0.1 + - ansi-terminal-game ^>= 1.9.2.0 + - lentil ^>= 1.5.6.0 + - linebreak ^>= 1.1.0.4 + - timers-tick ^>= 0.5.0.4 - unidecode ^>= 0.1.0.4 "Chris Smith ": - - HMock ^>= 0.5.0.0 - - explainable-predicates ^>= 0.1.2.0 + - HMock ^>= 0.5.1.2 + - explainable-predicates ^>= 0.1.2.4 "Tim Emiola @adetokunbo": - - hspec-tmp-proc ^>= 0.5.0.1 - - tmp-proc ^>= 0.5.0.1 - - wai-middleware-delegate ^>= 0.1.2.4 + - benri-hspec ^>= 0.1.0.1 + - attoparsec-framer ^>= 0.1.0.1 + - hspec-tmp-proc ^>= 0.5.2.0 + - keyed-vals ^>= 0.2.2.0 + - keyed-vals-hspec-tests ^>= 0.2.2.0 + - keyed-vals-mem ^>= 0.2.2.0 + - keyed-vals-redis ^>= 0.2.2.0 + - redis-glob ^>= 0.1.0.6 + - tmp-proc ^>= 0.5.3.0 + - tmp-proc-postgres ^>= 0.5.3.1 + - tmp-proc-redis ^>= 0.5.3.1 + - tmp-proc-rabbitmq ^>= 0.5.3.1 + - wai-middleware-delegate ^>= 0.1.4.0 "Francisco Vallarino @fjvallarino": - - monomer ^>= 1.2.0.0 - - nanovg ^>= 0.8.0.0 + - monomer ^>= 1.6.0.0 + - nanovg ^>= 0.8.1.0 + + "Ghais Issa <0x47@0x49.dev> @ghais": + - LetsBeRational ^>= 1.0.0.0 + + "Edward Yang @qwbarch": + - captcha-core < 0 + - captcha-2captcha < 0 + - captcha-capmonster < 0 + - data-default-extra < 0 + - data-default-instances-base ^>= 0.1.0.1 + - data-default-instances-bytestring ^>= 0.0.1 + - data-default-instances-case-insensitive ^>= 0.0.1 + - data-default-instances-new-base < 0 + - data-default-instances-text < 0 + - data-default-instances-unordered-containers ^>= 0.0.1 + - data-default-instances-vector ^>= 0.0.1 + - optics-operators ^>= 0.1.0.1 + + "David Spies @davidspies": + - fastmemo < 0 + + "comp @1Computer1": + - errata ^>= 0.4.0.1 + - reorder-expression < 0 + + "konsumlamm @konsumlamm": + - rrb-vector ^>= 0.2.1.0 + + "Co-Star Astrology Society @costarastrology @halawaykeller": + - Plural ^>= 0.0.2 + - bytebuild ^>= 0.3.14.0 + - byteslice ^>= 0.2.12.0 + - contiguous ^>= 0.6.4.0 + - fb ^>= 2.1.1.1 + - ip ^>= 1.7.7 + - pwstore-fast ^>= 2.4.4 + - rex ^>= 0.6.2 + - run-st ^>= 0.1.3.2 + - text-regex-replace ^>= 0.1.1.5 + - word-compat ^>= 0.0.6 + - zigzag ^>= 0.0.1.0 + + "Markus Schirp @mbj": + - stratosphere ^>= 0.60.0 + + "Clemens Schmid @nevrome": + - currycarbon ^>= 0.3.0.1 + + "Benjamin Orchard @raehik": + - flatparse ^>= 0.5.0.1 + - strongweak < 0 + - mason ^>= 0.2.6 + - fortran-src-extras < 0 + + "David Terei @dterei": + - memcache ^>= 0.3.0.1 + + "Teo Camarasu @TeofilC": + - bank-holidays-england ^>= 0.2.0.9 + - statistics-linreg ^>= 0.3 + - trie-simple ^>= 0.4.2 + - PSQueue ^>= 1.2.0 + - matchable ^>= 0.1.2.1 # dep of trie-simple + + "Fabricio Olivetti de Franca @folivetti": + - hegg ^>= 0.5.0.0 # dep of pandoc-symreg + - pandoc-symreg < 0 + - srtree ^>= 1.0.0.5 + + "Eugen Wissner @belka-ew": + - graphql ^>= 1.2.0.1 + + "Mike Pilgrem @mpilgrem": + - aeson-warning-parser ^>= 0.1.1 + - ansi-terminal ^>= 1.0 + - ansi-terminal-types ^>= 0.11.5 + - companion ^>= 0.1.0 + - stack ^>= 2.13.1 && (<9.9.9 || >9.9.9) + - static-bytes ^>= 0.1.0 + + "Torsten Schmits @tek": + - exon ^>= 1.6.1.0 + - incipit-base ^>= 0.5.1.0 + - incipit-core ^>= 0.5.1.0 + - polysemy ^>= 1.9.1.3 + - polysemy-plugin ^>= 0.4.5.1 + - polysemy-zoo < 0 + + "Michael Dressel @mdrslmr": + - MultipletCombiner ^>= 0.0.7 + + "Kazu Yamamoto @kazu-yamamoto": + - crypton ^>= 0.34 + - crypton-connection ^>= 0.3.1 + - crypton-x509 ^>= 1.7.6 + - crypton-x509-store ^>= 1.6.9 + - crypton-x509-system ^>= 1.6.7 + - crypton-x509-validation ^>= 1.6.12 + - http2 ^>= 5.0.0 + - network-control ^>= 0.0.2 + + "Patrick Nielsen @patrickmn": + - aeson-yaml ^>= 1.1.0.1 + + "Eric Mertens @glguy": + - toml-parser ^>= 1.3.1.1 + + "Andreas LĂ€ndle @alaendle": + - co-log ^>= 0.6.0.2 + - co-log-core ^>= 0.3.2.1 + - co-log-polysemy ^>= 0.0.1.4 + + "Alexander Esgen @amesgen": + - ghc-hs-meta ^>= 0.1.3.0 + + "Ian Davidson @bontaq": + - purview ^>= 0.2.0.2 + + "Logan McGrath @keywordsalad": + - hakyllbars ^>= 1.0.1.0 + + "David SĂĄnchez @DavSanchez": + - richenv ^>= 0.1.0.1 + + "Zac Slade @krakrjak": + - fits-parse ^>= 0.3.6 "Grandfathered dependencies": - - snappy ^>= 0.2.0.2 - - quicklz ^>= 1.5.0.11 + - BiobaseNewick ^>= 0.0.0.2 - Boolean ^>= 0.2.4 + - BoundedChan ^>= 1.0.3.0 + - Chart-cairo ^>= 1.9.4.1 - Decimal ^>= 0.5.2 - - Diff ^>= 0.4.0 + - Diff ^>= 0.4.1 - FloatingHex ^>= 0.5 - GenericPretty ^>= 1.2.2 - Glob ^>= 0.10.2 - - HDBC ^>= 2.4.0.3 - - HDBC-session ^>= 0.1.2.0 - - HTTP ^>= 4000.3.16 - - HasBigDecimal ^>= 0.1.1 - - HsOpenSSL ^>= 0.11.7.2 - - HsYAML ^>= 0.2.1.0 + - HDBC ^>= 2.4.0.4 + - HDBC-session ^>= 0.1.2.1 + - HTTP ^>= 4000.4.1 + - HasBigDecimal ^>= 0.2.0.0 + - HsOpenSSL ^>= 0.11.7.6 + - IfElse ^>= 0.85 + - Interpolation ^>= 0.3.0 - JuicyPixels-scale-dct ^>= 0.1.2 - - MemoTrie ^>= 0.6.10 + - MemoTrie ^>= 0.6.11 + - NoHoed ^>= 0.1.1 - NumInstances ^>= 1.4 - Only ^>= 0.1 - ParsecTools ^>= 0.0.2.0 - - QuickCheck ^>= 2.14.2 + - QuickCheck ^>= 2.14.3 - RSA ^>= 2.4.1 - Stream ^>= 0.4.7.2 - - aeson-compat ^>= 0.3.10 - - aeson-extra ^>= 0.5.1 - - aeson-optics ^>= 1.1.1 - - alsa-mixer ^>= 0.3.0 - - ansi-terminal ^>= 0.11.1 + - TypeCompose < 0 + - Yampa ^>= 0.14.6 + - accelerate-io-bmp < 0 + - accelerate-io-bytestring < 0 + - accelerate-io-repa < 0 + - accelerate-io-vector < 0 + - aeson-extra ^>= 0.5.1.3 + - aeson-optics ^>= 1.2.1 + - alsa-mixer ^>= 0.3.0.1 + - animalcase < 0 - appar ^>= 0.1.8 - arrows ^>= 0.4.4.2 - asn1-encoding ^>= 0.9.6 - asn1-parse ^>= 0.9.5 - asn1-types ^>= 0.3.4 - - assoc ^>= 1.0.2 - - attoparsec ^>= 0.14.1 + - assoc ^>= 1.1 + - attoparsec ^>= 0.14.4 + - attoparsec-aeson ^>= 2.1.0.0 - auto-update ^>= 0.1.6 + - aws ^>= 0.24.1 + - aws-lambda-haskell-runtime-wai < 0 - base-noprelude < 0 - base64-bytestring ^>= 1.2.1.0 - base64-bytestring-type ^>= 1.0.1 - base64-string ^>= 0.2 - - bimap ^>= 0.4.0 - - bin ^>= 0.1.1 # req'd by boring - - binary-orphans ^>= 1.0.2 - - binary-parser ^>= 0.5.7 + - bimap ^>= 0.5.0 + - bin ^>= 0.1.3 # req'd by boring + - binary-orphans ^>= 1.0.4.1 + - binary-parser ^>= 0.5.7.5 - binary-tagged ^>= 0.3.1 - bindings-DSL ^>= 1.0.25 + - bindings-uname ^>= 0.1 - bitarray ^>= 0.0.1.1 - - blaze-builder ^>= 0.4.2.2 - - blaze-svg ^>= 0.3.6.1 - - blaze-textual ^>= 0.2.2.1 - - boring ^>= 0.2 - - brick ^>= 0.65 - - buffer-builder ^>= 0.2.4.7 - - byte-order ^>= 0.1.2.0 + - blank-canvas ^>= 0.7.4 + - blaze-svg ^>= 0.3.7 + - blaze-textual ^>= 0.2.3.1 + - bloomfilter ^>= 2.0.1.2 + - boring ^>= 0.2.1 + - box ^>= 0.9.2.1 + - box-csv < 0 + - brick ^>= 2.1.1 + - broadcast-chan ^>= 0.2.1.2 + - buffer-builder ^>= 0.2.4.8 + - byte-order ^>= 0.1.3.0 - byteable ^>= 0.1.1 + - bytehash ^>= 0.1.1.0 + - bytesmith ^>= 0.3.10.0 - bytestring-builder ^>= 0.10.8.2.0 - bzlib ^>= 0.5.1.0 - - c2hs ^>= 0.28.8 - ca-province-codes ^>= 1.0.0.0 - - cabal-doctest ^>= 1.0.9 + - cabal-install-solver ^>= 3.10.2.1 - call-stack ^>= 0.4.0 - casing ^>= 0.1.4.1 - cassava-megaparsec ^>= 2.0.4 - - cborg ^>= 0.2.6.0 - - cereal ^>= 0.5.8.2 + - cborg ^>= 0.2.10.0 + - cereal ^>= 0.5.8.3 - cereal-text ^>= 0.1.0.2 - cereal-vector ^>= 0.2.0.1 - chunked-data ^>= 0.3.1 - - cipher-aes128 ^>= 0.7.0.6 + - cipher-aes128 < 0 # 0.7.0.6 compile fail + - cipher-blowfish < 0 # 0.0.3 compile fail - cipher-camellia ^>= 0.0.2 - - cipher-des ^>= 0.0.6 - - classy-prelude ^>= 1.5.0.2 + - cipher-des < 0 + - classy-prelude ^>= 1.5.0.3 - classy-prelude-conduit ^>= 1.5.0 - - clientsession ^>= 0.9.1.2 - - cmark-gfm ^>= 0.2.2 + - clientsession ^>= 0.9.2.0 + - cmark-gfm ^>= 0.2.6 - colour ^>= 2.3.6 + - colourista ^>= 0.1.0.2 + - commutative-semigroups ^>= 0.1.0.1 - concurrent-extra ^>= 0.7.0.12 - - conduit ^>= 1.3.4.2 - - config-ini ^>= 0.2.4.0 + - conduit ^>= 1.3.5 + - config-ini ^>= 0.2.7.0 - configurator ^>= 0.3.0.0 - - constraints-extras ^>= 0.3.2.0 - - contravariant-extras ^>= 0.3.5.3 + - constraints-extras ^>= 0.4.0.0 + - contravariant-extras ^>= 0.3.5.4 - control-monad-free ^>= 0.6.2 - control-monad-omega ^>= 0.3.2 - - convertible ^>= 1.1.1.0 - - cookie ^>= 0.4.5 + - convertible ^>= 1.1.1.1 + - cookie ^>= 0.4.6 - cpphs ^>= 1.20.9.1 - crypt-sha512 ^>= 0 - crypto-api ^>= 0.13.3 @@ -4830,17 +5414,17 @@ packages: - crypto-cipher-types ^>= 0.0.9 - crypto-numbers < 0 - crypto-pubkey < 0 - - crypto-random ^>= 0.0.9 + - crypto-pubkey-openssh < 0 # 0.2.7 compile fail + - crypto-random < 0 # 0.0.9 compile fail https://github.com/vincenthz/hs-crypto-random/issues/15 - cryptohash-cryptoapi ^>= 0.1.4 - - cryptohash-sha256 ^>= 0.11.102.1 - - cryptohash-sha512 ^>= 0.11.101.0 + - cryptostore ^>= 0.3.0.1 - css-text ^>= 0.1.3.0 - csv ^>= 0.1.2 - - cubicbezier ^>= 0.6.0.6 + - cubicbezier ^>= 0.6.0.7 - data-binary-ieee754 ^>= 0.4.4 - - data-bword ^>= 0.1.0.1 + - data-bword ^>= 0.1.0.2 - data-checked ^>= 0.3 - - data-clist ^>= 0.1.2.3 + - data-clist ^>= 0.2 - data-default ^>= 0.7.1.1 - data-default-class ^>= 0.1.2.0 - data-default-instances-containers ^>= 0.0.1 @@ -4849,90 +5433,114 @@ packages: - data-dword ^>= 0.3.2.1 - data-endian ^>= 0.1.1 - data-inttrie ^>= 0.1.4 - - data-lens-light ^>= 0.1.2.3 + - data-lens-light ^>= 0.1.2.4 - data-memocombinators ^>= 0.5.1 - data-msgpack-types ^>= 0.0.3 - data-serializer ^>= 0.3.5 - data-textual ^>= 0.3.0.3 - - dec ^>= 0.0.4 + - dec ^>= 0.0.5 - deepseq-generics ^>= 0.2.0.0 - - deferred-folds ^>= 0.9.17 - dense-linear-algebra ^>= 0.1.0.0 - - deque ^>= 0.4.4 - dictionary-sharing ^>= 0.1.0.0 - - direct-sqlite ^>= 2.3.26 + - direct-sqlite ^>= 2.3.28 - discount ^>= 0.1.1 + - distributed-process < 0 + - distributed-static ^>= 0.3.9 - dlist ^>= 1.0 - dlist-instances ^>= 0.1.1.1 - - dlist-nonempty ^>= 0.1.1 - - double-conversion ^>= 2.0.2.0 - - dual-tree ^>= 0.2.3.0 - - easy-file ^>= 0.2.2 + - dlist-nonempty ^>= 0.1.3 + - double-conversion ^>= 2.0.4.2 + - dual-tree ^>= 0.2.3.1 + - easy-file ^>= 0.2.5 - easytest < 0 - - ed25519 < 0 + - ed25519 ^>= 0.0.5.0 - edit-distance ^>= 0.2.2.1 - - elm-bridge < 0 + - elliptic-curve < 0 + - elm-bridge ^>= 0.8.2 - enclosed-exceptions ^>= 1.0.3 - - entropy ^>= 0.4.1.7 + - entropy ^>= 0.4.1.10 - erf ^>= 2.0.0.0 + - errorcall-eq-instance ^>= 0.3.0 - errors ^>= 2.3.0 - expiring-cache-map ^>= 0.0.6.1 + - extensible ^>= 0.9 - extensible-exceptions ^>= 0.1.1.4 - fail ^>= 4.9.0.0 - - fast-logger ^>= 3.1.0 + - fast-logger ^>= 3.2.2 - fast-math ^>= 1.0.2 + - fdo-notify ^>= 0.3.1 - fib < 0 - file-embed ^>= 0.0.15.0 - - file-embed-lzma ^>= 0 + - file-embed-lzma ^>= 0.0.1 - filemanip ^>= 0.3.6.3 - - fin ^>= 0.2 - - fingertree ^>= 0.1.4.2 + - fin ^>= 0.3 + - fingertree ^>= 0.1.5.0 - fmlist ^>= 0.9.4 + - formatn ^>= 0.3.0.1 - friendly-time ^>= 0.4.1 - - functor-classes-compat ^>= 2.0.0.1 - - functor-combinators < 0 - - generic-arbitrary ^>= 0.2.0 + - functor-classes-compat ^>= 2.0.0.2 + - functor-combinators < 0 # 0.4.1.2 compile fail https://github.com/mstksg/functor-combinators/issues/7 + - fuzzcheck ^>= 0.1.1 + - generic-arbitrary ^>= 1.0.1 + - generically ^>= 0.1.1 - generics-sop-lens ^>= 0.2.0.1 - ghc-byteorder ^>= 4.11.0.0.10 - ghc-compact ^>= 0.1.0.0 + - ghc-events ^>= 0.19.0.1 - ghc-paths ^>= 0.1.0.12 - - ghc-prof ^>= 1.4.1.9 - - github ^>= 0.27 + - ghc-prof < 0 + - ghcjs-dom-jsaddle < 0 + - git-lfs ^>= 1.2.1 + - gitlib ^>= 3.1.3 + - gitlib-libgit2 < 0 # 3.1.2.1 compile fail - groom ^>= 0.1.2.1 - groups ^>= 0.5.3 - - hackage-security < 0 - - hashable ^>= 1.3.5.0 + - gtk ^>= 0.15.8 + - haha ^>= 0.3.1.1 + - hamlet ^>= 1.2.0 + - harp < 0 + - hashable ^>= 1.4.3.0 - haskell-gi-overloading ^>= 1.0 - - haskell-lexer ^>= 1.1 - - haskell-lsp-types ^>= 0.24.0.0 - haskell-src-exts ^>= 1.23.1 + - haskell-src-exts-simple ^>= 1.23.0.0 + - haskell-tools-builtin-refactorings < 0 + - haskoin-store-data ^>= 1.2.2 + - hasql-dynamic-statements ^>= 0.3.1.2 + - hasql-implicits ^>= 0.1.1 - haxl < 0 - heap ^>= 1.0.4 + - here ^>= 1.2.14 - hex ^>= 0.2.0 + - hierarchical-clustering < 0 # 0.4.7 compile fail https://github.com/commercialhaskell/stackage/issues/6764 + - hjsonpointer < 0 + - hjsonschema < 0 + - hlibgit2 ^>= 0.18.0.16 - hmatrix ^>= 0.20.2 - hmatrix-gsl ^>= 0.19.0.1 + - hmatrix-special ^>= 0.19.0.0 - hostname ^>= 1.0 - hourglass ^>= 0.2.12 - - hsc2hs ^>= 0.68.8 - - hscolour ^>= 1.24.4 + - hsc2hs ^>= 0.68.10 + - hscolour ^>= 1.25 + - hse-cpp ^>= 0.2 - hslogger ^>= 1.3.1.0 - - hsp ^>= 0.10.0 + - hsp < 0 # 0.10.0 ghc-9.6 - hspec-attoparsec ^>= 0.1.0.2 - - hspec-contrib ^>= 0.5.1 - - hspec-expectations ^>= 0.8.2 + - hspec-contrib ^>= 0.5.2 + - hspec-expectations ^>= 0.8.4 - hspec-expectations-lifted ^>= 0.10.0 - - hspec-meta ^>= 2.7.8 - - hspec-smallcheck ^>= 0.5.2 + - hspec-meta ^>= 2.11.7 + - hspec-smallcheck ^>= 0.5.3 - html ^>= 1.0.1.2 - - html-entities ^>= 1.1.4.5 - - http-client-tls ^>= 0.3.5.3 + - html-entities ^>= 1.1.4.6 + - http-client-restricted ^>= 0.1.0 + - http-client-tls ^>= 0.3.6.3 - http-date ^>= 0.0.11 - - http-reverse-proxy ^>= 0.6.0 - - http-types ^>= 0.12.3 - - http2 ^>= 3.0.2 + - http-reverse-proxy ^>= 0.6.0.2 + - http-types ^>= 0.12.4 - httpd-shed ^>= 0.4.1.1 - - hw-json-simd ^>= 0.1.1.0 - - hw-string-parse ^>= 0.0.0.4 + - hw-json-simd < 0 + - hw-string-parse ^>= 0.0.0.5 - hxt ^>= 9.3.1.22 - hxt-charproperties ^>= 9.5.0.0 - hxt-http ^>= 9.1.5.2 @@ -4940,200 +5548,244 @@ packages: - hxt-unicode ^>= 9.0.2.4 - iconv ^>= 0.4.1.3 - ieee754 ^>= 0.8.0 + - incremental ^>= 0.3.1 - indexed ^>= 0.1.3 - infer-license ^>= 0.2.0 - - insert-ordered-containers ^>= 0.2.5.1 - - inspection-testing ^>= 0.4.6.0 + - insert-ordered-containers ^>= 0.2.5.3 + - inspection-testing ^>= 0.5.0.2 + - integer-conversion ^>= 0.1.0.1 - integer-logarithms ^>= 1.0.3.1 - - io-streams-haproxy < 0 - - ixset-typed < 0 - - json ^>= 0.10 + - interpolatedstring-perl6 ^>= 1.0.2 + - io-streams-haproxy ^>= 1.0.1.0 + - iproute ^>= 1.7.12 + - ixset-typed ^>= 0.5.1.0 + - jsaddle-dom < 0 + - json ^>= 0.11 - json-alt < 0 - - kleene < 0 + - jsonrpc-tinyclient < 0 + - kansas-comet ^>= 0.4.2 + - kleene ^>= 0.1 + - knob ^>= 0.2.2 - language-haskell-extract < 0 - largeword ^>= 1.2.5 - - lattices ^>= 2.0.3 + - lattices ^>= 2.2 - lazy-csv ^>= 0.5.1 - lazysmallcheck ^>= 0.6 - - libBF ^>= 0.6.2 + - leb128-cereal ^>= 1.2 + - libBF ^>= 0.6.7 - libyaml ^>= 0.1.2 - - lifted-async ^>= 0.10.2.2 - lifted-base ^>= 0.2.3.12 - loch-th ^>= 0.2.2 - - lockfree-queue ^>= 0.2.3.1 - - log-base ^>= 0.11.0.0 + - lockfree-queue ^>= 0.2.4 + - log-base ^>= 0.12.0.1 - logging-facade ^>= 0.3.1 - lrucache ^>= 1.2.0.1 - - lsp < 0 - - lsp-types < 0 - lukko ^>= 0.1.1.3 - lz4 ^>= 0.2.3.1 - - lzma ^>= 0.0.0.3 + - lzma ^>= 0.0.1.0 - lzma-clib ^>= 5.2.2 - - managed ^>= 1.0.9 - - math-functions ^>= 0.3.4.2 + - managed ^>= 1.0.10 + - markov-chain-usage-model ^>= 0.0.0 + - math-functions ^>= 0.3.4.3 + - membership ^>= 0.0.1 + - memcache ^>= 0.3.0.1 + - memory-hexstring < 0 - mersenne-random ^>= 1.0.0.1 - mersenne-random-pure64 ^>= 0.2.2.0 - - mfsolve ^>= 0.3.2.0 - - microstache ^>= 1.0.2 + - mfsolve ^>= 0.3.2.2 + - microstache ^>= 1.0.2.3 + - minisat-solver ^>= 0.1 + - missing-foreign ^>= 0.1.1 - mmap ^>= 0.5.9 - - mmorph ^>= 1.1.5 + - mmorph ^>= 1.2.0 - mockery ^>= 0.3.5 - monad-control ^>= 1.0.3.1 - - monad-logger ^>= 0.3.36 + - monad-extras ^>= 0.6.0 + - monad-interleave ^>= 0.2.0.1 + - monad-logger ^>= 0.3.40 - monad-loops ^>= 0.4.3 - - monad-time ^>= 0.3.1.0 - - monads-tf ^>= 0.1.0.3 + - monad-time ^>= 0.4.0.0 + - monadloc < 0 # 0.7.1 compile fail https://github.com/pepeiborra/monadloc/issues/4 + - monads-tf ^>= 0.3.0.1 - mono-traversable-instances ^>= 0.1.1.0 - - mono-traversable-keys ^>= 0.2.0 + - mono-traversable-keys ^>= 0.3.0 + - mstate < 0 + - multimap ^>= 1.2.1 - multiset ^>= 0.3.4.3 - mwc-random ^>= 0.15.0.2 - names-th ^>= 0.3.0.1 - nanospec ^>= 0.2.2 - nettle ^>= 0.3.0 - - network ^>= 3.1.2.5 + - network ^>= 3.1.4.0 - network-bsd ^>= 2.8.1.0 - - network-byte-order ^>= 0.1.6 - - network-info ^>= 0.2.0.10 + - network-byte-order ^>= 0.1.7 + - network-info ^>= 0.2.1 - network-ip ^>= 0.3.0.3 - - network-run ^>= 0.2.4 - - network-uri ^>= 2.6.4.1 && (<2.7.0.0 || >2.7.0.0) # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. - - newtype < 0 + - network-multicast ^>= 0.3.2 + - network-run ^>= 0.2.6 + - network-transport ^>= 0.5.6 + - network-uri ^>= 2.6.4.2 && (<2.7.0.0 || >2.7.0.0) # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. + - next-ref < 0 - nicify-lib ^>= 1.0.1 + - normaldistribution ^>= 1.1.0.3 + - nothunks ^>= 0.1.5 + - numhask-prelude < 0 - old-locale ^>= 1.0.0.7 - - old-time ^>= 1.1.0.3 - - one-liner ^>= 2.0 - - operational < 0 + - old-time ^>= 1.1.0.4 + - operational ^>= 0.2.4.2 - optional-args ^>= 1.0.2 - - options ^>= 1.2.1.1 - - optparse-applicative ^>= 0.16.1.0 + - options ^>= 1.2.1.2 + - optparse-applicative ^>= 0.18.1.0 + - optparse-simple ^>= 0.1.1.4 - parallel ^>= 3.2.2.0 + - parallel-io ^>= 0.3.5 - path-pieces ^>= 0.2.1 - - pcg-random ^>= 0.1.3.7 + - pcg-random ^>= 0.1.4.0 + - peggy < 0 - pipes-bytestring ^>= 2.1.7 - pipes-group ^>= 1.0.12 - placeholders ^>= 0.1 - poll ^>= 0.0.0.2 - - polyparse ^>= 1.13 - - postgresql-libpq ^>= 0.9.4.3 - - postgresql-simple ^>= 0.6.4 + - portable-lines ^>= 0.1 + - posix-pty ^>= 0.2.2 + - postgresql-libpq ^>= 0.10.0.0 + - postgresql-simple ^>= 0.7.0.0 - postgresql-simple-url ^>= 0.2.1.0 - pretty-hex ^>= 1.1 - pretty-show ^>= 1.10 - - prettyprinter-convert-ansi-wl-pprint ^>= 1.1.2 + - prettyprinter-convert-ansi-wl-pprint < 0 # 1.1.2 # fails to compile (#7017) - primes ^>= 0.2.1.0 - - primitive ^>= 0.7.3.0 - - primitive-unaligned ^>= 0.1.1.1 + - primitive ^>= 0.8.0.0 && <0.9 # https://github.com/commercialhaskell/stackage/issues/7138 + - primitive-unaligned ^>= 0.1.1.2 - process-extras ^>= 0.7.4 - - product-isomorphic < 0 - project-template ^>= 0.2.1.0 - - protobuf ^>= 0.2.1.3 + - protobuf ^>= 0.2.1.3 && (<0.2.1.4 || >0.2.1.4) # deprecated version + - ptr ^>= 0.16.8.5 - pureMD5 ^>= 2.1.4 - - quickcheck-instances ^>= 0.3.27 + - quickcheck-instances ^>= 0.3.30 - quickcheck-io ^>= 0.2.0 - quickcheck-simple ^>= 0.1.1.1 - quickcheck-unicode ^>= 1.0.1.0 - - ral ^>= 0.2 # req'd by boring - - random ^>= 1.2.1 + - quicklz ^>= 1.5.0.11 + - ral ^>= 0.2.1 # req'd by boring + - random ^>= 1.2.1.1 - random-shuffle ^>= 0.0.4 - range-set-list ^>= 0.1.3.1 + - rank1dynamic ^>= 0.4.1 + - ratio-int ^>= 0.1.2 - raw-strings-qq ^>= 1.1 - readable ^>= 0.3.1 + - readline < 0 # 1.0.3.0 setup fail + - recv ^>= 0.1.0 + - refinery < 0 # 0.4.0.0 # fails to compile (#7017) - regex-applicative-text < 0 - - regex-pcre-builtin ^>= 0.95.2.3.8.44 - regex-tdfa-text < 0 - - relapse < 0 - - relational-schemas < 0 - - resolv ^>= 0.1.2.0 - - resource-pool ^>= 0.2.3.2 - - resourcet ^>= 1.2.4.3 + - relapse ^>= 1.0.0.1 + - relational-schemas ^>= 0.1.8.1 + - resource-pool ^>= 0.4.0.0 + - resourcet ^>= 1.3.0 + - rest-rewrite ^>= 0.4.2 - rfc5051 ^>= 0.2 - - rio ^>= 0.1.21.0 + - rio ^>= 0.1.22.0 - rio-orphans ^>= 0.1.2.0 + - row-types ^>= 1.0.1.2 + - run-haskell-module ^>= 0.0.2 + - safe-exceptions-checked < 0 - safecopy ^>= 0.10.4.2 + - sandi ^>= 0.5 + - scale < 0 - scientific ^>= 0.3.7.0 - securemem ^>= 0.1.10 - - selective ^>= 0.4.2 - - semialign ^>= 1.2.0.1 - - semialign-indexed ^>= 1.2 - - semialign-optics ^>= 1.2 - - serialise ^>= 0.2.4.0 - - servant-client-core ^>= 0.18.3 - - servant-multipart-client ^>= 0.12.1 - - servant-swagger-ui ^>= 0.3.5.3.52.5 + - selective ^>= 0.7 + - semialign ^>= 1.3 + - serialise ^>= 0.2.6.1 + - servant-client-core ^>= 0.20 + - servant-multipart-client ^>= 0.12.2 + - servant-swagger-ui ^>= 0.3.5.5.0.0 - servant-swagger-ui-core ^>= 0.3.5 - servant-swagger-ui-redoc ^>= 0.3.4.1.22.3 - servant-yaml < 0 - setenv ^>= 0.1.1.3 - - shakespeare ^>= 2.0.25 + - shakespeare ^>= 2.1.0.1 + - shakespeare-text ^>= 1.1.0 - shell-escape ^>= 0.2.0 - - silently ^>= 1.2.5.2 - simple-reflect ^>= 0.3.3 - - simple-sendfile ^>= 0.2.30 - - singleton-bool ^>= 0.1.6 - - size-based < 0 + - simple-sendfile ^>= 0.2.32 + - singleton-bool ^>= 0.1.7 + - size-based ^>= 0.1.3.2 - skein ^>= 1.0.9.4 - - snap-core < 0 - - some ^>= 1.0.3 + - snap-core ^>= 1.0.5.1 + - snappy < 0 + - some ^>= 1.0.6 + - spdx < 0 - special-values ^>= 0.1.0.0 - splice ^>= 0.6.1.1 - - split ^>= 0.2.3.4 - - splitmix ^>= 0.1.0.4 - - sql-words ^>= 0.1.6.4 + - split ^>= 0.2.4 + - splitmix ^>= 0.1.0.5 + - sql-words ^>= 0.1.6.5 - stateref ^>= 0.3 - - statistics ^>= 0.15.2.0 - - step-function ^>= 0.2 + - static-canvas ^>= 0.2.0.3 + - statistics ^>= 0.16.2.1 + - step-function ^>= 0.2.0.1 - stm-delay ^>= 0.1.1.1 - storable-complex ^>= 0.2.3.0 - - streaming-cassava ^>= 0.2.0.0 - - strict ^>= 0.4.0.1 - - strict-list ^>= 0.1.6 - - string-qq ^>= 0.0.4 + - streaming-cassava < 0 + - streaming-wai ^>= 0.1.1 + - strict ^>= 0.5 + - strict-lens ^>= 0.4.0.3 + - strict-list ^>= 0.1.7.4 + - string-qq ^>= 0.0.5 + - string-variants < 0 + - stringable ^>= 0.1.3 - stringbuilder ^>= 0.5.1 - structured ^>= 0.1.1 - sundown ^>= 0.6 - - syb ^>= 0.7.2.1 + - syb ^>= 0.7.2.4 - system-fileio ^>= 0.3.16.4 - system-filepath ^>= 0.4.14 - tabular ^>= 0.2.2.8 - - tar ^>= 0.5.1.1 - - tasty-lua ^>= 1.0.0 + - tar ^>= 0.5.1.1 && <0.6 # https://github.com/commercialhaskell/stackage/issues/7202 + - tasty-lua ^>= 1.1.0 - tasty-th ^>= 0.1.7 - - tdigest ^>= 0.2.1.1 - - template-haskell-compat-v0208 ^>= 0.1.7 + - tdigest ^>= 0.3 + - telegram-bot-api < 0 + - template ^>= 0.2.0.10 + - template-haskell-compat-v0208 ^>= 0.1.9.3 - temporary ^>= 1.3 - temporary-rc ^>= 1.2.0.3 - temporary-resourcet ^>= 0.1.0.1 - - test-framework ^>= 0.8.2.0 - test-framework-hunit ^>= 0.3.0.2 - test-framework-quickcheck2 ^>= 0.3.0.5 - test-framework-smallcheck ^>= 0.2 - test-framework-th < 0 - - testing-feat < 0 + - testing-feat ^>= 1.1.1.1 - testing-type-modifiers ^>= 0.1.0.1 - - text-icu ^>= 0.7.1.0 + - text-binary ^>= 0.2.1.1 + - text-iso8601 ^>= 0.1 - text-latin1 ^>= 0.3.1 - text-postgresql ^>= 0.0.3.1 - text-printer ^>= 0.5.0.2 - - text-short ^>= 0.1.4 - - text-zipper ^>= 0.11 + - text-short ^>= 0.1.5 + - text-zipper ^>= 0.13 - tf-random ^>= 0.5 - - th-extras ^>= 0.0.0.5 - - th-lift-instances ^>= 0.1.18 - - th-utilities ^>= 0.2.4.3 - - these ^>= 1.1.1.1 - - these-lens ^>= 1.0.1.2 && (<1.0.1 || >1.0.1) - - these-optics ^>= 1.0.1.2 && (<1.0.1 || >1.0.1) - - threads ^>= 0.5.1.6 - - thyme < 0 + - th-extras ^>= 0.0.0.7 + - th-lift-instances ^>= 0.1.20 + - th-utilities ^>= 0.2.5.0 + - these ^>= 1.2 + - these-lens ^>= 1.0.1.3 + - these-optics ^>= 1.0.1.2 + - threads ^>= 0.5.1.8 + - threads-extras ^>= 0.1.0.3 + - thyme ^>= 0.4 - time-locale-compat ^>= 0.1.1.5 - - time-parsers ^>= 0.1.2.1 + - time-parsers ^>= 0.2 - timeit ^>= 2.0 - tls-session-manager ^>= 0.0.4 - - token-bucket < 0 + - token-bucket ^>= 0.1.0.1 - tonatona < 0 + - torrent ^>= 10000.1.3 - transformers-base ^>= 0.4.6 - - tree-diff ^>= 0.2.1 + - tree-diff ^>= 0.3.0.1 - trivial-constraint ^>= 0.7.0.0 - true-name < 0 - tuple-th ^>= 0.2.5 @@ -5141,108 +5793,120 @@ packages: - type-hint ^>= 0.1 - uglymemo ^>= 0.1.0.1 - unbounded-delays ^>= 0.1.1.1 - - unicode-collation ^>= 0.1.3.1 + - unfoldable < 0 + - unicode-collation ^>= 0.1.3.5 - universe ^>= 1.2.2 - - universe-base ^>= 1.1.3 + - universe-base ^>= 1.1.3.1 - universe-dependent-sum ^>= 1.3 - universe-instances-base < 0 - universe-instances-extended ^>= 1.1.3 - universe-instances-trans < 0 - universe-reverse-instances ^>= 1.1.1 - universe-some ^>= 1.2.1 - - unix-time ^>= 0.4.7 + - unix-time ^>= 0.4.11 - url ^>= 2.1.3 - - utf8-light ^>= 0.4.2 + - utf8-light ^>= 0.4.4.0 - utf8-string ^>= 1.0.2 - - uuid-types ^>= 1.0.5 + - uuid-types ^>= 1.0.5.1 + - validationt < 0 # 0.3.0 # fails to compile (#7017) - vault ^>= 0.3.1.5 - - vec ^>= 0.4 - - vector ^>= 0.12.3.1 - - vector-algorithms ^>= 0.8.0.4 - - vector-binary-instances ^>= 0.2.5.2 + - vec ^>= 0.5 + - vector ^>= 0.13.1.0 + - vector-algorithms ^>= 0.9.0.1 - vector-space ^>= 0.16 - vector-th-unbox ^>= 0.2.2 - - vty ^>= 5.33 - - wai ^>= 3.2.3 - - wai-app-static ^>= 3.1.7.2 + - verset ^>= 0.0.1.8 + - vty ^>= 6.1 + - vty-crossplatform ^>= 0.4.0.0 + - vty-unix ^>= 0.2.0.0 + - wai ^>= 3.2.4 + - wai-app-static ^>= 3.1.8 - wai-conduit ^>= 3.0.0.4 - wai-eventsource ^>= 3.0.0 - wai-handler-launch ^>= 3.0.3.1 - - wai-logger ^>= 2.3.7 + - wai-logger ^>= 2.4.0 - wai-session ^>= 0.3.3 - - warp ^>= 3.3.18 + - warp ^>= 3.3.31 - wcwidth ^>= 0.0.2 + - web3-bignum < 0 + - web3-crypto < 0 + - web3-ethereum < 0 + - web3-polkadot < 0 + - web3-provider < 0 + - web3-solidity < 0 - with-location ^>= 0.1.0 - wizards ^>= 1.0.3 - word-wrap ^>= 0.5 - word8 ^>= 0.1.3 - - x509 ^>= 1.7.5 - - x509-store ^>= 1.6.7 - - x509-system ^>= 1.6.6 - - x509-validation ^>= 1.6.11 + - x509 ^>= 1.7.7 + - x509-store ^>= 1.6.9 + - x509-system ^>= 1.6.7 + - x509-validation ^>= 1.6.12 - xml ^>= 1.3.14 - - xml-conduit ^>= 1.9.1.1 - - xml-conduit-writer ^>= 0.1.1.2 - - xml-hamlet ^>= 0.5.0.1 + - xml-conduit ^>= 1.9.1.3 + - xml-conduit-writer < 0 # 0.1.1.4 # fails to compile (#7017) + - xml-hamlet ^>= 0.5.0.2 - xml-types ^>= 0.3.8 - - xss-sanitize ^>= 0.3.7 + - xss-sanitize ^>= 0.3.7.2 - yeshql-core ^>= 4.2.0.0 - yeshql-hdbc < 0 - - yesod-core ^>= 1.6.21.0 - - yesod-form ^>= 1.7.0 - - yesod-persistent ^>= 1.6.0.7 - - zlib ^>= 0.6.2.3 + - yesod-core ^>= 1.6.25.1 + - yesod-form ^>= 1.7.6 + - yesod-persistent ^>= 1.6.0.8 + - zlib ^>= 0.6.3.0 - zlib-bindings ^>= 0.1.1.5 # If you stop maintaining a package (either just on stackage, or - # completely),you can move it here. It will be disabled if it + # completely), you can move it here. It will be disabled if it # starts causing problems. # # See #1056/closed # # When disabling one of these packages, move it to "Removed packages". "Abandoned packages": + - cheapskate-highlight < 0 + - cheapskate-lucid < 0 + - cmark-lucid ^>= 0.1.0.0 + - cmark-highlight < 0 + - Spock-lucid < 0 + - charsetdetect-ae ^>= 1.1.0.4 + - text-all < 0 - Earley ^>= 0.13.0.1 - - bower-json ^>= 1.0.0.1 + - bower-json < 0 - boxes ^>= 0.1.5 - - cassava ^>= 0.5.2.0 - - coercible-utils ^>= 0.1.0 # 6271 + - charsetdetect-ae ^>= 1.1.0.4 # #6326/closed + - coercible-utils < 0 # #6271 + - compiler-warnings ^>= 0.1.0 # #6326/closed - curl ^>= 1.3.8 - - first-class-patterns ^>= 0.3.2.5 # #5965/closed - - hashing ^>= 0.1.0.1 # 6271 - - hnix-store-core ^>= 0.5.0.0 # 6271 + - docopt < 0 # #6326/closed + - dynamic-state ^>= 0.3.1 # #6326/closed + - first-class-patterns < 0 # #5965/closed + - ghc-trace-events ^>= 0.1.2.7 # #6326/closed + - hashing ^>= 0.1.1.0 # #6271 + - hnix-store-core ^>= 0.7.0.0 # #6271 - ilist ^>= 0.4.0.1 # #5965/closed - - monadlist ^>= 0.0.2 # 6271 + - io-storage ^>= 0.3 # #6326/closed + - monadlist ^>= 0.0.2 # #6271 - non-empty-sequence ^>= 0.2.0.4 - - path ^>= 0.9.1 # 6271 - - pattern-arrows ^>= 0.0.2 - - relude ^>= 1.0.0.1 # #5965/closed - - shellmet ^>= 0.0.4.0 # #5965/closed - - slist ^>= 0.2.0.0 # #5965/closed - - type-errors-pretty ^>= 0.0.1.2 # #5965/closed - - typerep-map ^>= 0.4.0.0 # #5965/closed - - validation-selective ^>= 0.1.0.1 # #5965/closed - - # moved from ethercrow (#6326) - - charsetdetect-ae ^>= 1.1.0.4 - - compiler-warnings ^>= 0.1.0 - - docopt ^>= 0.7.0.7 - - dynamic-state ^>= 0.3.1 - - io-storage ^>= 0.3 - - oo-prototypes ^>= 0.1.0.0 - - opentelemetry ^>= 0.7.0 - - opentelemetry-extra ^>= 0.7.0 - - opentelemetry-wai ^>= 0.7.0 - - opentelemetry-lightstep ^>= 0.7.0 - - planb-token-introspection < 0 - - pointedlist ^>= 0.6.1 - - unordered-intmap < 0 - - word-trie ^>= 0.3.0 - - xdg-basedir ^>= 0.2.2 - - yi-rope ^>= 0.11 - # needed for opentelemetry - - ghc-trace-events ^>= 0.1.2.4 # @maoe - - numeric-limits ^>= 0.1.0.0 # Lennart Augustsson + - numeric-limits ^>= 0.1.0.0 # #6326/closed + - oo-prototypes ^>= 0.1.0.0 # #6326/closed + - opentelemetry ^>= 0.8.0 # #6326/closed + - opentelemetry-extra ^>= 0.8.0 # #6326/closed + - opentelemetry-lightstep ^>= 0.8.0 # #6326/closed + - opentelemetry-wai ^>= 0.8.0 # #6326/closed + - path ^>= 0.9.5 # #6271 + - pattern-arrows < 0 + - planb-token-introspection < 0 # #6326/closed + - pointedlist ^>= 0.6.1 # #6326/closed + - relude ^>= 1.2.1.0 # #5965/closed + - shellmet ^>= 0.0.4.1 # #5965/closed + - slist ^>= 0.2.1.0 # #5965/closed + - syb-with-class < 0 + - type-errors-pretty < 0 # #5965/closed + - unordered-intmap < 0 # #6326/closed + - word-trie ^>= 0.3.0 # #6326/closed + - xdg-basedir ^>= 0.2.2 # #6326/closed + - yi-rope ^>= 0.11 # #6326/closed # Packages without maintainers that cause issues, # this is to prevent us from including them by accident. They can @@ -5255,36 +5919,30 @@ packages: # affected. Packages will be kept in this list indefinitely so # that new packages depending on it will be flagged as well. "Removed packages": - - PSQueue < 0 # build failure with GHC 8.4 (nowhere to report, it's ancient just let it die) - - Unique < 0 # GHC 8.4 via base-4.11.0.0 - - cli < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - co-log-core < 0 # #5965/closed - - co-log-polysemy < 0 # #5965/closed - - fingertree-psqueue < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - hastache < 0 # GHC 8.4 via base-4.11.0.0 - - heart-core < 0 # deprecated - - hnix < 0 # 6271 - - json-builder < 0 # build failure with GHC 8.4 https://github.com/lpsmith/json-builder/issues/2 - - lens-labels < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - - membrain < 0 # #5965/closed - - preprocessor-tools < 0 # build failure with GHC 8.4 - - present < 0 # 6271 - - prim-array < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - - shortcut-links < 0 # #5965/closed - - snap-server < 0 # 6271 - - syb-with-class < 0 # GHC 8.4 via template-haskell-2.13.0.0 - - tinytemplate < 0 # build failure with GHC 8.4 - - tomland < 0 # #5965/closed - - type-combinators < 0 # build failure with GHC 8.4 https://github.com/kylcarte/type-combinators/issues/8 - - wai-route < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - xxhash < 0 # BuildFailureException Process exited with ExitFailure 1: ./Setup build - - universe-instances-base < 0 # deprecated - - universe-instances-trans < 0 # deprecated - - "GHC upper bounds": - # Need to always match the version shipped with GHC - - Win32 ^>= 2.10.0.0 && ==2.10.0.0 + - 2captcha < 0 # 0.1.0.0 deprecated + - Unique < 0 # 0.4.7.9 removed + - cli < 0 # 0.2.0 removed + - fingertree-psqueue < 0 # 0.3 compile fail + - hastache < 0 # 0.6.1 bounds + - heart-core < 0 # 0.3.2 compile fail, deprecated + - hnix < 0 # 0.17.0 #6271/closed + - json-builder < 0 # 0.3 bounds + - lens-labels < 0 # 0.3.0.1 bounds, deprecated #4358/closed + - membrain < 0 # 0.0.0.2 bounds #5965/closed + - preprocessor-tools < 0 # 2.0.2 + - present < 0 # 4.1.0 compile fail #6271 + - prim-array < 0 # 0.2.2 bounds + - proto-lens-combinators < 0 # 0.4.0.1 deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - shortcut-links < 0 # 0.5.1.1 #5965/closed + - tinytemplate < 0 # 0.1.2.0 compile fail + - tomland < 0 # 1.3.3.2 #5965/closed + - type-combinators < 0 # 0.2.4.3 compile fail https://github.com/kylcarte/type-combinators/issues/8 + - typerep-map < 0 # 0.6.0.0 internal library #5965/closed + - universe-instances-base < 0 # 1.1 deprecated + - universe-instances-trans < 0 # 1.1 deprecated + - validation-selective < 0 # 0.2.0.0 #5965/closed + - wai-route < 0 # 1.0.0 compile fail + - xxhash < 0 # 0.0.2 compile fail # Section for packages that have been mass-disabled due to # compilation failures, e.g. after we upgrade GHC. Every package @@ -5295,396 +5953,324 @@ packages: # it's clear that they must be built if we want to confirm that # they are working. "Compilation failures": - - Fin < 0 # `@' not in scope - - HDBC-mysql < 0 - - Spock-core < 0 - - Workflow < 0 - - accuerr < 0 + - BiobaseBlast < 0 # 0.3.3.0 compile fail aeson 2.0 + - Fin < 0 # 0.2.9.0 `@' not in scope + - HDBC-mysql < 0 # 0.7.1.0 + - Taxonomy < 0 # 2.2.0 compile fail aeson 2.0 + - Workflow < 0 # 0.8.3 + - accuerr < 0 # 0.2.0.2 - aeson-lens < 0 # 0.5.0.0 - - arrow-list < 0 # 0.7.1 - - auto < 0 - - aws-xray-client < 0 - - backprop < 0 - - bencoding < 0 - - binary-ext < 0 - - bins < 0 - - bitcoin-script < 0 - - btrfs < 0 - - bv-little < 0 - - cabal-debian < 0 - - cabal-toolkit < 0 - - chaselev-deque < 0 - - compdata < 0 - - courier < 0 - - cql < 0 - - crypto-numbers < 0 + - aeson-with < 0 # 0.1.2.0 compile fail aeson 2.0 + - auto < 0 # 0.4.3.1 + - binary-ext < 0 # 2.0.4 + - bins < 0 # 0.1.2.0 + - bitcoin-script < 0 # 0.11.1 + - boolean-like < 0 # 0.1.1.0 + - cabal-toolkit < 0 # 0.0.7 + - capataz < 0 # 0.2.1.0 + - chaselev-deque < 0 # 0.5.0.5 + - cipher-des < 0 # 0.0.6 + - coercible-utils < 0 # 0.1.0 + - composable-associations-aeson < 0 # 0.1.0.1 compile fail aeson 2.0 + - courier < 0 # 0.1.1.5 + - crypto-numbers < 0 # 0.2.7 - cuckoo-filter < 0 # 0.2.0.2 benchmarks are an exe - - derive-topdown < 0 # 0.0.2.2 - - distributed-closure < 0 # 0.4.2.0 + - data-default-instances-new-base < 0 # 0.0.2 + - descriptive < 0 # 0.9.5 compile fail aeson 2.0 - djinn-ghc < 0 # 0.0.2.3 - drinkery < 0 # 0.4 - - elm-bridge < 0 # 0.6.1 - - elynx-seq < 0 - - elynx-tools < 0 - - enum-subset-generate < 0 - - essence-of-live-coding-quickcheck < 0 + - elm-export-persistent < 0 # 1.0.0 compile fail aeson 2.0 + - etc < 0 # 0.4.1.0 compile fail aeson 2.0 - etcd < 0 # 1.0.5 - - farmhash < 0 # 0.1.0.5 - eve < 0 # 0.1.9.0 - - eventsource-store-specs < 0 - - exinst < 0 + - eventsource-api < 0 # 1.5.1 compile fail aeson 2.0 + - eventsource-store-specs < 0 # 1.2.1 + - farmhash < 0 # 0.1.0.5 - ftp-client-conduit < 0 # 0.5.0.5 - - ginger < 0 # 0.10.2.0 - - giphy-api < 0 # https://github.com/passy/giphy-api/pull/19 - - groundhog-th < 0 # 0.11 + - ghcjs-base-stub < 0 # 0.3.0.2 compile fail aeson 2.0 + - giphy-api < 0 # 0.7.0.0 https://github.com/passy/giphy-api/pull/19 - gluturtle < 0 # 0.0.58.1 - - haskell-import-graph < 0 - - haskell-spacegoo < 0 - - haskoin-node < 0 - - haxl < 0 - - hbeanstalk < 0 - - heterocephalus < 0 - - hexml-lens < 0 - - hexstring < 0 - - hs-functors < 0 - - hschema < 0 - - hstatsd < 0 - - inline-r < 0 - - interpolator < 0 - - io-choice < 0 + - groundhog < 0 # 0.12.0 + - haskell-awk < 0 # 1.2.0.1 + - haskell-import-graph < 0 # 1.0.4 + - haskell-spacegoo < 0 # 0.2.0.1 + - hbeanstalk < 0 # 0.2.4 + - hexstring < 0 # 0.11.1 + - highjson < 0 # 0.5.0.0 compile fail aeson 2.0 + - hs-functors < 0 # 0.1.7.1 + - hschema < 0 # 0.0.1.1 + - hsebaysdk < 0 # 0.4.1.0 compile fail aeson 2.0 + - hstatsd < 0 # 0.1 + - interpolator < 0 # 1.1.0.2 + - io-choice < 0 # 0.0.7 + - json-rpc-generic < 0 # 0.2.1.6 compile fail aeson 2.0 - katydid < 0 # 0.4.0.2 MonadFail - - kdt < 0 # 0.2.4 https://github.com/giogadi/kdt/issues/5 - - lens-typelevel < 0 - - llvm-hs < 0 - - llvm-hs-pretty < 0 - - machines-binary < 0 - - machines-io < 0 - - marvin-interpolate < 0 - - mixed-types-num < 0 - - mltool < 0 - - moesocks < 0 - - monad-recorder < 0 - - monad-unlift < 0 - - morpheus-graphql < 0 - - morpheus-graphql-app < 0 - - morpheus-graphql-client < 0 - - morpheus-graphql-core < 0 - - morpheus-graphql-subscriptions < 0 - - murmur < 0 - - n2o-protocols < 0 - - nonempty-containers < 0 - - nvim-hs-contrib < 0 # 2.0.0.0 - - odbc < 0 - - open-witness < 0 - - operational < 0 - - pandoc-markdown-ghci-filter < 0 - - partial-isomorphisms < 0 - - pencil < 0 - - pipes-aeson < 0 - - pipes-binary < 0 - - pipes-network < 0 - - pipes-text < 0 - - pkcs10 < 0 - - planb-token-introspection < 0 - - postgresql-transactional < 0 - - raaz < 0 - - regex-compat-tdfa < 0 - - rhine < 0 - - rose-trees < 0 # compilation seems to hang? - - safe-money < 0 - - sdl2-gfx < 0 - - sdl2-image < 0 - - sdl2-mixer < 0 - - sequence-formats < 0 - - sessiontypes < 0 - - simplistic-generics < 0 - - slack-api < 0 - - squeal-postgresql < 0 - - stm-stats < 0 - - strive < 0 - - sydtest-persistent-sqlite < 0 - - text-region < 0 - - th-data-compat < 0 - - throttle-io-stream < 0 - - throwable-exceptions < 0 - - thyme < 0 - - time-qq < 0 - - timemap < 0 # https://github.com/athanclark/timemap/issues/1 - - tintin < 0 - - tracing-control < 0 - - traverse-with-class < 0 - - turtle-options < 0 - - type-assertions < 0 - - type-map < 0 - - typecheck-plugin-nat-simple < 0 - - ulid < 0 - - uncertain < 0 - - unordered-intmap < 0 - - users-persistent < 0 - - wai-middleware-auth < 0 - - wai-predicates < 0 - - webdriver < 0 - - webex-teams-pipes < 0 - - websockets-rpc < 0 - - word24 < 0 - - xls < 0 - - xml-conduit-parse < 0 - - xml-lens < 0 - - xturtle < 0 - - yeshql-hdbc < 0 - - yesod-auth < 0 # 1.6.10.3 + - kawhi < 0 # 0.3.0 compile fail aeson 2.0 + - lens-typelevel < 0 # 0.1.1.0 + - llvm-hs < 0 # 9.0.1 llvm-config + - llvm-hs-pretty < 0 # 0.9.0.0 + - machines-binary < 0 # 7.0.0.0 + - machines-io < 0 # 7.0.0.0 + - marvin-interpolate < 0 # 1.1.2 + - mltool < 0 # 0.2.0.1 + - moesocks < 0 # 1.0.1.0 + - monad-recorder < 0 # 0.1.1 + - monad-unlift < 0 # 0.2.0 + - murmur < 0 # 0.0.0.2 + - n2o-protocols < 0 # 0.11.2 + - nri-prelude < 0 # 0.6.0.6 compile fail aeson 2.0 + - odbc < 0 # 0.2.6 odbc + - pdfinfo < 0 # 1.5.4 + - pencil < 0 # 1.0.1 + - pipes-aeson < 0 # 0.4.1.8 + - pipes-network < 0 # 0.6.5 + - pkcs10 < 0 # 0.2.0.0 + - planb-token-introspection < 0 # 0.1.4.0 + - postgresql-orm < 0 # 0.5.1 + - postgresql-transactional < 0 # 1.1.1 + - protocol-buffers < 0 # 2.4.17 + - pushbullet-types < 0 # 0.4.1.0 compile fail aeson 2.0 + - raaz < 0 # 0.3.8 multiple libraries + - record-wrangler < 0 # 0.1.1.0 + - regex-compat-tdfa < 0 # 0.95.1.4 + - rescue < 0 # 0.4.2.1 + - rigel-viz < 0 # 0.2.0.0 compile fail aeson 2.0 + - rose-trees < 0 # 0.0.4.5 compilation seems to hang? + - servant-cli < 0 # 0.1.0.2 compile fail aeson 2.0 + - servant-github-webhook < 0 # 0.4.2.0 compile fail aeson 2.0 + - servant-tracing < 0 # 0.2.0.0 compile fail aeson 2.0 + - sessiontypes < 0 # 0.1.2 + - simplistic-generics < 0 # 2.0.0 + - slack-api < 0 # 0.12 + - snappy < 0 # 0.2.0.2 + - stm-stats < 0 # 0.2.0.0 + - sum-type-boilerplate < 0 # 0.1.1 + - swagger < 0 # 0.3.0 compile fail aeson 2.0 + - template-toolkit < 0 # 0.1.1.0 compile fail aeson 2.0 + - text-region < 0 # 0.3.1.0 + - throttle-io-stream < 0 # 0.2.0.1 + - throwable-exceptions < 0 # 0.1.0.9 + - time-qq < 0 # 0.0.1.0 + - timemap < 0 # 0.0.7 https://github.com/athanclark/timemap/issues/1 + - tintin < 0 # 1.10.1 + - tinylog < 0 # 0.15.0 + - turtle-options < 0 # 0.1.0.4 + - type-assertions < 0 # 0.1.0.0 + - uncertain < 0 # 0.3.1.0 + - unordered-intmap < 0 # 0.1.1 + - users-persistent < 0 # 0.5.0.2 + - wai-predicates < 0 # 1.0.0 + - webex-teams-pipes < 0 # 0.2.0.1 + - websockets-rpc < 0 # 0.7.0 + - word24 < 0 # 2.0.1 + - xls < 0 # 0.1.3 gcc failed + - xml-conduit-parse < 0 # 0.3.1.2 + - xml-to-json < 0 # 2.0.1 compile fail aeson 2.0 + - xturtle < 0 # 0.2.0.0 xft + - yeshql-hdbc < 0 # 4.2.0.0 + # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. # # This section is meant for libraries and executables that have - # bene disabled due to bounds issues, there is a separate section + # been disabled due to bounds issues, there is a separate section # for compilation failures as we need to build those packages to # verify if they have been fixeq. "Library and exe bounds failures": - - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* does not support: network-3.1.2.5 - - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* does not support: network-3.1.2.5 - - Chart < 0 # tried Chart-1.9.3, but its *library* requires the disabled package: operational - - Chart-cairo < 0 # tried Chart-cairo-1.9.3, but its *library* requires the disabled package: operational - - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* does not support: SVGFonts-1.8.0.1 - - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* requires the disabled package: operational - - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: biocore - - FPretty < 0 # tried FPretty-1.1, but its *library* does not support: base-4.15.0.0 - - GPipe < 0 # tried GPipe-2.2.5, but its *library* does not support: linear-1.21.8 + - BiobaseENA < 0 # tried BiobaseENA-0.0.0.2, but its *library* requires the disabled package: BiobaseTypes + - BiobaseFasta < 0 # tried BiobaseFasta-0.4.0.1, but its *library* requires the disabled package: BiobaseTypes + - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* requires network < =2.8.0.0 and the snapshot contains network-3.1.4.0 + - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* requires the disabled package: Taxonomy + - BiobaseTypes < 0 # tried BiobaseTypes-0.2.1.0, but its *library* requires the disabled package: PrimitiveArray + - BiobaseXNA < 0 # tried BiobaseXNA-0.11.1.1, but its *library* requires the disabled package: PrimitiveArray + - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* requires network ==2.8.0.0 and the snapshot contains network-3.1.4.0 + - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* requires the disabled package: BiobaseBlast + - ConfigFile < 0 # tried ConfigFile-1.1.4, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: Taxonomy + - FPretty < 0 # tried FPretty-1.1, but its *library* requires base >=4.5 && < 4.11 and the snapshot contains base-4.18.1.0 + - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires hashtables >=1.2 && < 1.3 and the snapshot contains hashtables-1.3.1 + - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires linear >=1.18 && < 1.21 and the snapshot contains linear-1.22 + - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - Genbank < 0 # tried Genbank-1.0.3, but its *library* requires the disabled package: biocore - - H < 0 # tried H-0.9.0.1, but its *executable* requires the disabled package: inline-r - - HaskellNet < 0 # tried HaskellNet-0.6, but its *library* does not support: base-4.15.0.0 - - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.3.4.4, but its *library* requires the disabled package: HaskellNet + - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.3.4.4, but its *library* requires the disabled package: connection - Hoed < 0 # tried Hoed-0.5.1, but its *library* requires the disabled package: regex-tdfa-text - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: optparse-applicative-0.16.1.0 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: IPv6Addr-2.0.3 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: aeson-1.5.6.0 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: attoparsec-0.14.1 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: hedis-0.15.0 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: unordered-containers-0.2.15.0 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: attoparsec-0.14.1 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: text-show-3.9.3 + - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *executable* requires fast-logger >=2.4.8 && < 3.1 and the snapshot contains fast-logger-3.2.2 + - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *executable* requires optparse-applicative >=0.12.1.0 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 + - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *executable* requires wai-logger >=2.2.7 && < 2.4 and the snapshot contains wai-logger-2.4.0 + - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *library* requires aeson ==2.0.* and the snapshot contains aeson-2.1.2.1 + - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires attoparsec >=0.12 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires text-show >=3.7 && < 3.9 and the snapshot contains text-show-3.10.4 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *executable* requires optparse-applicative >=0.14.3 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: TCache - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: Workflow - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: monadloc - - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: pwstore-fast - - MapWith < 0 # tried MapWith-0.2.0.0, but its *library* does not support: base-4.15.0.0 - - Network-NineP < 0 # tried Network-NineP-0.4.7.1, but its *library* requires the disabled package: mstate - - NoTrace < 0 # tried NoTrace-0.3.0.4, but its *library* does not support: base-4.15.0.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseBlast-0.3.3.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseFasta-0.4.0.1 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseHTTP-1.2.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseTypes-0.2.1.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: aeson-1.5.6.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: network-3.1.2.5 + - MapWith < 0 # tried MapWith-0.2.0.0, but its *library* requires base >=4.9.1 && < 4.15 and the snapshot contains base-4.18.1.0 + - NanoID < 0 # tried NanoID-3.4.0, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - Network-NineP < 0 # tried Network-NineP-0.4.7.3, but its *library* requires the disabled package: mstate + - NoTrace < 0 # tried NoTrace-0.3.0.4, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires BiobaseFasta ==0.3.0.* and the snapshot contains BiobaseFasta-0.4.0.1 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires BiobaseHTTP ==1.1.0 and the snapshot contains BiobaseHTTP-1.2.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires BiobaseTypes ==0.2.0.* and the snapshot contains BiobaseTypes-0.2.1.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires aeson < =1.4.2.0 and the snapshot contains aeson-2.1.2.1 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires network < =2.8.0.0 and the snapshot contains network-3.1.4.0 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: BiobaseBlast + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: Taxonomy - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: hierarchical-clustering + - Spintax < 0 # tried Spintax-0.3.6, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - Spintax < 0 # tried Spintax-0.3.6, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core - Spock-api-server < 0 # tried Spock-api-server-0.14.0.0, but its *library* requires the disabled package: Spock-core - Spock-lucid < 0 # tried Spock-lucid-0.4.0.1, but its *library* requires the disabled package: Spock - Spock-worker < 0 # tried Spock-worker-0.3.1.0, but its *library* requires the disabled package: Spock - - Strafunski-StrategyLib < 0 # tried Strafunski-StrategyLib-5.0.1.0, but its *library* does not support: base-4.15.0.0 - - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: base-4.15.0.0 - - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: lens-5.0.1 - - YampaSynth < 0 # tried YampaSynth-0.2, but its *executable* requires the disabled package: Yampa - - accelerate < 0 # tried accelerate-1.3.0.0, but its *library* does not support: base-4.15.0.0 - - accelerate-arithmetic < 0 # tried accelerate-arithmetic-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 + - Strafunski-StrategyLib < 0 # tried Strafunski-StrategyLib-5.0.1.0, but its *library* requires base >4.4 && < 4.14 and the snapshot contains base-4.18.1.0 + - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 + - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* requires lens >=4.16 && < 4.20 and the snapshot contains lens-5.2.3 + - TypeCompose < 0 # tried TypeCompose-0.9.14, but its *library* requires base >=4.9 && < 4.16 and the snapshot contains base-4.18.1.0 + - accelerate < 0 # tried accelerate-1.3.0.0, but its *library* requires base >=4.12 && < 4.15 and the snapshot contains base-4.18.1.0 + - accelerate-arithmetic < 0 # tried accelerate-arithmetic-1.0.0.1, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx - - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate - - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm - - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native - - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-bmp - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-repa - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-io-vector - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: normaldistribution - - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate - - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm - - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native - - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx - - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: lens-accelerate - - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 - - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* does not support: accelerate-io-1.3.0.0 - - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* does not support: accelerate-1.3.0.0 - - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* does not support: containers-0.6.4.1 + - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: llvm-hs-pure + - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: cublas + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-fft + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: lens-accelerate + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: linear-accelerate + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: repa + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: repa-io + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native + - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx + - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: cufft + - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 + - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* requires accelerate-io >=1.0 && < 1.1 and the snapshot contains accelerate-io-1.3.0.0 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 + - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - accelerate-io < 0 # tried accelerate-io-1.3.0.0, but its *library* requires the disabled package: accelerate + - accelerate-io-bmp < 0 # tried accelerate-io-bmp-0.1.0.0, but its *library* requires the disabled package: accelerate + - accelerate-io-bytestring < 0 # tried accelerate-io-bytestring-0.1.0.0, but its *library* requires the disabled package: accelerate + - accelerate-io-repa < 0 # tried accelerate-io-repa-0.1.0.0, but its *library* requires the disabled package: accelerate + - accelerate-io-repa < 0 # tried accelerate-io-repa-0.1.0.0, but its *library* requires the disabled package: repa + - accelerate-io-vector < 0 # tried accelerate-io-vector-0.1.0.0, but its *library* requires the disabled package: accelerate - accelerate-llvm < 0 # tried accelerate-llvm-1.3.0.0, but its *library* requires the disabled package: llvm-hs + - accelerate-llvm-native < 0 # tried accelerate-llvm-native-1.3.0.0, but its *library* requires libffi >=0.1 && < 0.2 and the snapshot contains libffi-0.2.1 - accelerate-llvm-native < 0 # tried accelerate-llvm-native-1.3.0.0, but its *library* requires the disabled package: llvm-hs - accelerate-llvm-ptx < 0 # tried accelerate-llvm-ptx-1.3.0.0, but its *library* requires the disabled package: llvm-hs - - accelerate-utility < 0 # tried accelerate-utility-1.0.0.1, but its *library* does not support: accelerate-1.3.0.0 - - aern2-mp < 0 # tried aern2-mp-0.2.8.0, but its *library* requires the disabled package: mixed-types-num - - aern2-real < 0 # tried aern2-real-0.2.8.0, but its *library* requires the disabled package: mixed-types-num - - aeson-diff < 0 # tried aeson-diff-1.1.0.9, but its *library* does not support: base-4.15.0.0 - - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: lens-5.0.1 - - aeson-picker < 0 # tried aeson-picker-0.1.0.5, but its *library* does not support: lens-5.0.1 - - aeson-utils < 0 # tried aeson-utils-0.3.0.2, but its *library* does not support: aeson-1.5.6.0 - - aeson-utils < 0 # tried aeson-utils-0.3.0.2, but its *library* does not support: attoparsec-0.14.1 - - airship < 0 # tried airship-0.9.4, but its *library* does not support: base64-bytestring-1.2.1.0 - - airship < 0 # tried airship-0.9.4, but its *library* does not support: bytestring-trie-0.2.6 - - airship < 0 # tried airship-0.9.4, but its *library* does not support: semigroups-0.19.2 - - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-3.2.3 - - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-extra-3.1.7 - - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: http-client-0.7.9 - - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: unliftio-core-0.2.0.1 - - amazonka-apigateway < 0 # tried amazonka-apigateway-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-application-autoscaling < 0 # tried amazonka-application-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-appstream < 0 # tried amazonka-appstream-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-athena < 0 # tried amazonka-athena-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-autoscaling < 0 # tried amazonka-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-budgets < 0 # tried amazonka-budgets-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-certificatemanager < 0 # tried amazonka-certificatemanager-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudformation < 0 # tried amazonka-cloudformation-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudfront < 0 # tried amazonka-cloudfront-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudhsm < 0 # tried amazonka-cloudhsm-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudsearch < 0 # tried amazonka-cloudsearch-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudsearch-domains < 0 # tried amazonka-cloudsearch-domains-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudtrail < 0 # tried amazonka-cloudtrail-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudwatch < 0 # tried amazonka-cloudwatch-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudwatch-events < 0 # tried amazonka-cloudwatch-events-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cloudwatch-logs < 0 # tried amazonka-cloudwatch-logs-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-codebuild < 0 # tried amazonka-codebuild-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-codecommit < 0 # tried amazonka-codecommit-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-codedeploy < 0 # tried amazonka-codedeploy-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-codepipeline < 0 # tried amazonka-codepipeline-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cognito-identity < 0 # tried amazonka-cognito-identity-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cognito-idp < 0 # tried amazonka-cognito-idp-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-cognito-sync < 0 # tried amazonka-cognito-sync-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-config < 0 # tried amazonka-config-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-core < 0 # tried amazonka-core-1.6.1, but its *library* does not support: http-client-0.7.9 - - amazonka-datapipeline < 0 # tried amazonka-datapipeline-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-devicefarm < 0 # tried amazonka-devicefarm-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-directconnect < 0 # tried amazonka-directconnect-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-discovery < 0 # tried amazonka-discovery-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-dms < 0 # tried amazonka-dms-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-ds < 0 # tried amazonka-ds-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-dynamodb < 0 # tried amazonka-dynamodb-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-ecr < 0 # tried amazonka-ecr-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-ecs < 0 # tried amazonka-ecs-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-efs < 0 # tried amazonka-efs-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-elasticache < 0 # tried amazonka-elasticache-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-elasticbeanstalk < 0 # tried amazonka-elasticbeanstalk-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-elasticsearch < 0 # tried amazonka-elasticsearch-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-elastictranscoder < 0 # tried amazonka-elastictranscoder-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-elb < 0 # tried amazonka-elb-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-elbv2 < 0 # tried amazonka-elbv2-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-emr < 0 # tried amazonka-emr-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-gamelift < 0 # tried amazonka-gamelift-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-glacier < 0 # tried amazonka-glacier-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-glue < 0 # tried amazonka-glue-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-health < 0 # tried amazonka-health-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-iam < 0 # tried amazonka-iam-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-importexport < 0 # tried amazonka-importexport-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-inspector < 0 # tried amazonka-inspector-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-iot < 0 # tried amazonka-iot-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-iot-dataplane < 0 # tried amazonka-iot-dataplane-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-kinesis < 0 # tried amazonka-kinesis-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-kinesis-analytics < 0 # tried amazonka-kinesis-analytics-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-kinesis-firehose < 0 # tried amazonka-kinesis-firehose-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-kms < 0 # tried amazonka-kms-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-lambda < 0 # tried amazonka-lambda-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-lightsail < 0 # tried amazonka-lightsail-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-marketplace-analytics < 0 # tried amazonka-marketplace-analytics-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-marketplace-metering < 0 # tried amazonka-marketplace-metering-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-ml < 0 # tried amazonka-ml-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-opsworks < 0 # tried amazonka-opsworks-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-opsworks-cm < 0 # tried amazonka-opsworks-cm-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-pinpoint < 0 # tried amazonka-pinpoint-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-polly < 0 # tried amazonka-polly-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-rds < 0 # tried amazonka-rds-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-redshift < 0 # tried amazonka-redshift-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-rekognition < 0 # tried amazonka-rekognition-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-route53 < 0 # tried amazonka-route53-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-route53-domains < 0 # tried amazonka-route53-domains-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-s3 < 0 # tried amazonka-s3-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-sdb < 0 # tried amazonka-sdb-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-servicecatalog < 0 # tried amazonka-servicecatalog-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-ses < 0 # tried amazonka-ses-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-shield < 0 # tried amazonka-shield-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-sms < 0 # tried amazonka-sms-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-snowball < 0 # tried amazonka-snowball-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-sns < 0 # tried amazonka-sns-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-sqs < 0 # tried amazonka-sqs-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-ssm < 0 # tried amazonka-ssm-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-stepfunctions < 0 # tried amazonka-stepfunctions-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-storagegateway < 0 # tried amazonka-storagegateway-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-sts < 0 # tried amazonka-sts-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-support < 0 # tried amazonka-support-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-swf < 0 # tried amazonka-swf-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-test < 0 # tried amazonka-test-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-waf < 0 # tried amazonka-waf-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-workspaces < 0 # tried amazonka-workspaces-1.6.1, but its *library* requires the disabled package: amazonka-core - - amazonka-xray < 0 # tried amazonka-xray-1.6.1, but its *library* requires the disabled package: amazonka-core - - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: ansi-terminal-0.11.1 - - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: base-4.15.0.0 - - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka - - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka-core - - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: amazonka - - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: amazonka-core - - antiope-messages < 0 # tried antiope-messages-7.5.3, but its *library* requires the disabled package: amazonka - - antiope-messages < 0 # tried antiope-messages-7.5.3, but its *library* requires the disabled package: amazonka-core - - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: amazonka - - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: amazonka-core - - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka - - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka-core - - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka - - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka-core - - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: protolude - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: lens-5.0.1 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: optparse-applicative-0.16.1.0 - - asif < 0 # tried asif-6.0.4, but its *library* requires the disabled package: thyme - - async-timer < 0 # tried async-timer-0.2.0.0, but its *library* does not support: unliftio-core-0.2.0.1 - - atom-conduit < 0 # tried atom-conduit-0.9.0.1, but its *library* requires the disabled package: refined - - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: attoparsec-0.14.1 - - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: base-4.15.0.0 - - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: cryptonite-0.29 - - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: memory-0.16.0 - - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: template-haskell-2.17.0.0 + - accelerate-utility < 0 # tried accelerate-utility-1.0.0.1, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 + - aeson-better-errors < 0 # tried aeson-better-errors-0.9.1.1, but its *library* requires aeson >=0.7 && < 1.6 || >=2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - aeson-better-errors < 0 # tried aeson-better-errors-0.9.1.1, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - aeson-commit < 0 # tried aeson-commit-1.6.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - aeson-default < 0 # tried aeson-default-0.9.1.0, but its *library* requires aeson >=1.2 && < 2 and the snapshot contains aeson-2.1.2.1 + - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires base >=4.7 && < 4.17 and the snapshot contains base-4.18.1.0 + - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires lens >=4.13 && < 5.2 and the snapshot contains lens-5.2.3 + - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires servant-docs >=0.7 && < 0.13 and the snapshot contains servant-docs-0.13 + - airship < 0 # tried airship-0.9.5, but its *library* requires mime-types >=0.1.0 && < 0.1.1 and the snapshot contains mime-types-0.1.2.0 + - airship < 0 # tried airship-0.9.5, but its *library* requires unix >=2.7 && < 2.8 and the snapshot contains unix-2.8.1.0 + - al < 0 # tried al-0.1.4.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - alerts < 0 # tried alerts-0.1.2.0, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.0.2 + - alg < 0 # tried alg-0.2.13.1, but its *library* requires base >=4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - alg < 0 # tried alg-0.2.13.1, but its *library* requires the disabled package: dual + - alg < 0 # tried alg-0.2.13.1, but its *library* requires the disabled package: util + - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* requires ansi-terminal >=0.6 && < 0.9 and the snapshot contains ansi-terminal-1.0 + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* requires base >=4.6 && < 4.13 and the snapshot contains base-4.18.1.0 + - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: antiope-core + - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: antiope-core + - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: antiope-messages + - app-settings < 0 # tried app-settings-0.2.0.12, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires lens >=4.16 && < 5 and the snapshot contains lens-5.2.3 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires optparse-applicative >=0.14 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires postgresql-simple >=0.5 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - arbtt < 0 # tried arbtt-0.12.0.3, but its *executable* requires the disabled package: bytestring-progress + - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires haskell-src-exts >=1.22.0 && < 1.23 and the snapshot contains haskell-src-exts-1.23.1 + - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires template-haskell >=2.14.0 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 + - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires transformers >=0.5.6 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - asciidiagram < 0 # tried asciidiagram-1.3.3.3, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - asciidiagram < 0 # tried asciidiagram-1.3.3.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - async-timer < 0 # tried async-timer-0.2.0.0, but its *library* requires unliftio-core >=0.1.1.0 && < 0.2 and the snapshot contains unliftio-core-0.2.1.0 + - aur < 0 # tried aur-7.0.7, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - aura < 0 # tried aura-3.2.9, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - aura < 0 # tried aura-3.2.9, but its *library* requires aeson ^>=2.0 and the snapshot contains aeson-2.1.2.1 + - aura < 0 # tried aura-3.2.9, but its *library* requires algebraic-graphs >=0.1 && < 0.7 and the snapshot contains algebraic-graphs-0.7 + - aura < 0 # tried aura-3.2.9, but its *library* requires time >=1.8 && < 1.12 and the snapshot contains time-1.12.2 + - aura < 0 # tried aura-3.2.9, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.0 + - aura < 0 # tried aura-3.2.9, but its *library* requires unix ^>=2.7.2.2 and the snapshot contains unix-2.8.1.0 + - aura < 0 # tried aura-3.2.9, but its *library* requires versions ^>=5 and the snapshot contains versions-6.0.3 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires MonadRandom >=0.4.2.3 && < 0.6 and the snapshot contains MonadRandom-0.6 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires aeson >=1.1.2.1 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires attoparsec >=0.13.1.0 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires base >=4.9.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires cryptonite >=0.21 && < 0.29 and the snapshot contains cryptonite-0.30 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires memory >=0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires resource-pool >=0.2.3.2 && < 0.3 and the snapshot contains resource-pool-0.4.0.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires template-haskell >=2.11.0.0 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires time >=1.6.0.1 && < 1.10 and the snapshot contains time-1.12.2 + - avers < 0 # tried avers-0.0.17.1, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - avers-api < 0 # tried avers-api-0.1.0, but its *library* requires the disabled package: avers - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: avers - - avwx < 0 # tried avwx-0.3.0.3, but its *library* does not support: lens-5.0.1 - - aws-xray-client-wai < 0 # tried aws-xray-client-wai-0.1.0.1, but its *library* requires the disabled package: aws-xray-client - - axel < 0 # tried axel-0.0.12, but its *library* does not support: base-4.15.0.0 - - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient-universe - - b9 < 0 # tried b9-3.2.0, but its *library* does not support: aeson-1.5.6.0 - - b9 < 0 # tried b9-3.2.0, but its *library* does not support: hspec-2.8.5 - - b9 < 0 # tried b9-3.2.0, but its *library* does not support: lens-5.0.1 - - b9 < 0 # tried b9-3.2.0, but its *library* does not support: shake-0.19.6 - - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: posix-pty - - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: template - - base-noprelude < 0 # tried base-noprelude-4.13.0.0, but its *library* does not support: base-4.15.0.0 - - bcp47 < 0 # tried bcp47-0.2.0.4, but its *library* requires the disabled package: country - - bcp47-orphans < 0 # tried bcp47-orphans-0.1.0.4, but its *library* requires the disabled package: bcp47 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: dlist-1.0 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: ghc-prim-0.7.0 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: vector-sized-1.5.0 - - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: ghc-prim-0.7.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: aeson-1.5.6.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: beam-core-0.9.1.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: hashable-1.3.5.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: mysql-0.2.1 - - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: attoparsec-0.14.1 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: attoparsec-0.14.1 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: dlist-1.0 - - bench-show < 0 # tried bench-show-0.3.1, but its *library* requires the disabled package: Chart - - bench-show < 0 # tried bench-show-0.3.1, but its *library* requires the disabled package: Chart-diagrams - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: brick-0.65 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: bytestring-0.10.12.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: directory-1.3.6.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: filepath-1.4.2.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: lens-5.0.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: process-1.6.11.0 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: protolude-0.3.0 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: text-1.2.4.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: time-1.9.3 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: typed-process-0.2.8.0 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vector-0.12.3.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vty-5.33 - - binary-bits < 0 # tried binary-bits-0.5, but its *library* does not support: base-4.15.0.0 + - avwx < 0 # tried avwx-0.3.0.3, but its *library* requires lens >=4.1 && < 5 and the snapshot contains lens-5.2.3 + - avwx < 0 # tried avwx-0.3.0.3, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - aws-lambda-haskell-runtime < 0 # tried aws-lambda-haskell-runtime-4.1.2, but its *library* requires the disabled package: safe-exceptions-checked + - aws-lambda-haskell-runtime-wai < 0 # tried aws-lambda-haskell-runtime-wai-2.0.2, but its *library* requires the disabled package: aws-lambda-haskell-runtime + - axel < 0 # tried axel-0.0.12, but its *library* requires base >=4.12 && < 4.13 and the snapshot contains base-4.18.1.0 + - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient + - b9 < 0 # tried b9-3.2.3, but its *library* requires aeson ==1.4.* and the snapshot contains aeson-2.1.2.1 + - b9 < 0 # tried b9-3.2.3, but its *library* requires hspec ==2.7.* and the snapshot contains hspec-2.11.7 + - b9 < 0 # tried b9-3.2.3, but its *library* requires lens ==4.* and the snapshot contains lens-5.2.3 + - b9 < 0 # tried b9-3.2.3, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - base-noprelude < 0 # tried base-noprelude-4.13.0.0, but its *library* requires base ==4.13.0.0 and the snapshot contains base-4.18.1.0 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires base16 ^>=0.3 and the snapshot contains base16-1.0 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.11.5.2 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires lens >=4 && < 5.1 and the snapshot contains lens-5.2.3 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires base32 ^>=0.2 and the snapshot contains base32-0.4 + - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.11.5.2 + - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.2.3 + - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires base >=4.14 && < 4.17 and the snapshot contains base-4.18.1.0 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.11.5.2 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.2.3 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - beam-migrate < 0 # tried beam-migrate-0.5.2.1, but its *library* requires pqueue >=1.3 && < 1.5 and the snapshot contains pqueue-1.5.0.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires aeson >=0.11 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires beam-core >=0.8 && < 0.9 and the snapshot contains beam-core-0.10.1.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires free >=4.12 && < 5.2 and the snapshot contains free-5.2 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires hashable >=1.1 && < 1.3 and the snapshot contains hashable-1.4.3.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires mysql >=0.1 && < 0.2 and the snapshot contains mysql-0.2.1 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires time >=1.6 && < 1.10 and the snapshot contains time-1.12.2 + - beam-postgres < 0 # tried beam-postgres-0.5.3.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - beam-postgres < 0 # tried beam-postgres-0.5.3.1, but its *library* requires postgresql-libpq >=0.8 && < 0.10 and the snapshot contains postgresql-libpq-0.10.0.0 + - beam-postgres < 0 # tried beam-postgres-0.5.3.1, but its *library* requires postgresql-simple >=0.5 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 + - beam-sqlite < 0 # tried beam-sqlite-0.5.3.0, but its *library* requires the disabled package: beam-migrate + - bench < 0 # tried bench-1.0.12, but its *executable* requires optparse-applicative >=0.14.0.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - bench-show < 0 # tried bench-show-0.3.2, but its *executable* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 + - bench-show < 0 # tried bench-show-0.3.2, but its *executable* requires optparse-applicative >=0.14.2 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - bench-show < 0 # tried bench-show-0.3.2, but its *library* requires ansi-wl-pprint >=0.6 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - bench-show < 0 # tried bench-show-0.3.2, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - bhoogle < 0 # tried bhoogle-0.1.4.2, but its *executable* requires the disabled package: hoogle + - binary-bits < 0 # tried binary-bits-0.5, but its *library* requires base >=4 && < 4.13 and the snapshot contains base-4.18.1.0 + - binary-parsers < 0 # tried binary-parsers-0.2.4.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - bioace < 0 # tried bioace-0.0.1, but its *library* requires the disabled package: biocore - bioalign < 0 # tried bioalign-0.0.5, but its *library* requires the disabled package: biocore - - biocore < 0 # tried biocore-0.3.1, but its *library* does not support: base-4.15.0.0 - - biocore < 0 # tried biocore-0.3.1, but its *library* requires the disabled package: stringable + - biocore < 0 # tried biocore-0.3.1, but its *library* requires base >=3 && < 4.11 and the snapshot contains base-4.18.1.0 - biofasta < 0 # tried biofasta-0.0.3, but its *library* requires the disabled package: biocore - biofastq < 0 # tried biofastq-0.1, but its *library* requires the disabled package: biocore - biopsl < 0 # tried biopsl-0.4, but its *library* requires the disabled package: biocore @@ -5697,1065 +6283,1807 @@ packages: - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: bitcoin-script - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: hexstring - bitcoin-types < 0 # tried bitcoin-types-0.9.2, but its *library* requires the disabled package: hexstring + - bits-extra < 0 # tried bits-extra-0.0.2.3, but its *library* requires ghc-prim >=0.5 && < 0.10 and the snapshot contains ghc-prim-0.10.0 - blastxml < 0 # tried blastxml-0.3.2, but its *library* requires the disabled package: biocore - - blosum < 0 # tried blosum-0.1.1.4, but its *executable* requires the disabled package: pipes-text - - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* does not support: base-4.15.0.0 - - boundingboxes < 0 # tried boundingboxes-0.2.3, but its *library* does not support: lens-5.0.1 - - brittany < 0 # tried brittany-0.14.0.0, but its *library* does not support: aeson-1.5.6.0 - - brittany < 0 # tried brittany-0.14.0.0, but its *library* does not support: text-1.2.4.1 - - broadcast-chan < 0 # tried broadcast-chan-0.2.1.1, but its *library* does not support: base-4.15.0.0 + - bookkeeping < 0 # tried bookkeeping-0.4.0.1, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* requires base >=4.6 && < 4.14 and the snapshot contains base-4.18.1.0 + - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* requires cond >=0.4.1 && < 0.5 and the snapshot contains cond-0.5.1 + - boots < 0 # tried boots-0.2.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - both < 0 # tried both-0.1.1.2, but its *library* requires the disabled package: zero + - bower-json < 0 # tried bower-json-1.1.0.0, but its *library* requires the disabled package: aeson-better-errors + - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires box ^>=0.8 and the snapshot contains box-0.9.2.1 + - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires time ^>=1.9 and the snapshot contains time-1.12.2 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires aeson ^>=2.0.1 and the snapshot contains aeson-2.1.2.1 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires base ^>=4.15.0 and the snapshot contains base-4.18.1.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires bytestring ^>=0.10.12 and the snapshot contains bytestring-0.11.5.2 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc ^>=9.0.1 and the snapshot contains ghc-9.6.3 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-boot ^>=9.0.1 and the snapshot contains ghc-boot-9.6.3 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-boot-th ^>=9.0.1 and the snapshot contains ghc-boot-th-9.6.3 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-exactprint ^>=0.6.4 and the snapshot contains ghc-exactprint-1.7.0.1 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires mtl ^>=2.2.2 and the snapshot contains mtl-2.3.1 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires semigroups ^>=0.19.2 and the snapshot contains semigroups-0.20 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires strict ^>=0.4.0 and the snapshot contains strict-0.5 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires text ^>=1.2.5 and the snapshot contains text-2.0.2 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires transformers ^>=0.5.6 and the snapshot contains transformers-0.6.1.0 - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: regex-tdfa-text - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: elliptic-curve - - butcher < 0 # tried butcher-1.3.3.2, but its *library* does not support: base-4.15.0.0 - - cabal-file < 0 # tried cabal-file-0.1.1, but its *library* requires the disabled package: hackage-security - - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: Cabal-3.4.0.0 - - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: base-4.15.0.0 - - cairo < 0 # tried cairo-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 - - cereal-time < 0 # tried cereal-time-0.1.0.0, but its *library* does not support: time-1.9.3 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: aeson-1.5.6.0 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: aeson-casing-0.2.0.0 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: connection-0.3.1 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-api-data-0.4.3 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-client-0.7.9 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: req-3.9.2 - - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytebuild - - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: byteslice - - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytesmith - - chronos-bench < 0 # tried chronos-bench-0.2.0.2, but its *library* requires the disabled package: chronos - - clang-compilation-database < 0 # tried clang-compilation-database-0.1.0.1, but its *library* does not support: base-4.15.0.0 - - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: base-4.15.0.0 - - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: template-haskell-2.17.0.0 - - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* does not support: clock-0.8.2 - - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* does not support: cmark-0.6 - - co-log-concurrent < 0 # tried co-log-concurrent-0.5.1.0, but its *library* requires the disabled package: co-log-core - - code-builder < 0 # tried code-builder-0.1.3, but its *library* does not support: containers-0.6.4.1 + - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: galois-field + - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 + - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires bifunctors < 5.6 and the snapshot contains bifunctors-5.6.1 + - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires free < 5.2 and the snapshot contains free-5.2 + - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 + - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires aeson >=1.5.5.1 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 + - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires wuss >=1.1.18 && < 1.2 and the snapshot contains wuss-2.0.1.5 + - bytestring-progress < 0 # tried bytestring-progress-1.4, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - cabal-flatpak < 0 # tried cabal-flatpak-0.1.0.4, but its *executable* requires optparse-applicative >=0.11 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires aeson >=1.5.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires lens >=4.19.2 && < 5.1 and the snapshot contains lens-5.2.3 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires lens-aeson >=1.1.3 && < 1.2 and the snapshot contains lens-aeson-1.2.3 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires aeson >=1.5.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires lens >=4.19.2 && < 5.1 and the snapshot contains lens-5.2.3 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires lens-aeson >=1.1.3 && < 1.2 and the snapshot contains lens-aeson-1.2.3 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires aeson >=1.5.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires lens >=4.19.2 && < 5.1 and the snapshot contains lens-5.2.3 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 + - caster < 0 # tried caster-0.0.3.0, but its *library* requires the disabled package: fast-builder + - category < 0 # tried category-0.2.5.0, but its *library* requires base >=4.10 && < 4.15 and the snapshot contains base-4.18.1.0 + - category < 0 # tried category-0.2.5.0, but its *library* requires the disabled package: dual + - category < 0 # tried category-0.2.5.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - cayley-client < 0 # tried cayley-client-0.4.19.2, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - cayley-client < 0 # tried cayley-client-0.4.19.2, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - cayley-client < 0 # tried cayley-client-0.4.19.2, but its *library* requires transformers >=0.4.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - cereal-time < 0 # tried cereal-time-0.1.0.0, but its *library* requires time >=1.5 && < 1.8.1 and the snapshot contains time-1.12.2 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires aeson >=1.0.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires aeson-casing >=0.1.0.5 && < 0.2 and the snapshot contains aeson-casing-0.2.0.0 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires connection >=0.2.7 && < 0.3 and the snapshot contains connection-0.3.1 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires http-api-data >=0.3.5 && < 0.3.9 and the snapshot contains http-api-data-0.5.1 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires http-client >=0.5.5.0 && < 0.6 and the snapshot contains http-client-0.7.15 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires req >=1.0.0 && < 1.3.0 and the snapshot contains req-3.13.1 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires text >=0.9 && < 1.3 and the snapshot contains text-2.0.2 + - cheapskate-highlight < 0 # tried cheapskate-highlight-0.1.0.0, but its *library* requires the disabled package: highlighting-kate + - cheapskate-lucid < 0 # tried cheapskate-lucid-0.1.0.0, but its *library* requires the disabled package: cheapskate + - chiphunk < 0 # tried chiphunk-0.1.4.0, but its *library* requires hashable >=1.2.6.0 && < 1.4 and the snapshot contains hashable-1.4.3.0 + - clang-compilation-database < 0 # tried clang-compilation-database-0.1.0.1, but its *library* requires base >=4.8 && < 4.12 and the snapshot contains base-4.18.1.0 + - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* requires base >=4.10 && < 4.13 and the snapshot contains base-4.18.1.0 + - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* requires template-haskell >=2.12 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 + - cleff-plugin < 0 # tried cleff-plugin-0.1.0.0, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 + - cleff-plugin < 0 # tried cleff-plugin-0.1.0.0, but its *library* requires ghc >=8.6 && < 9.3 and the snapshot contains ghc-9.6.3 + - climb < 0 # tried climb-0.4.1, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* requires clock >=0.4.6 && < 0.8.0 and the snapshot contains clock-0.8.4 + - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* requires cmark ==0.5.* and the snapshot contains cmark-0.6.1 + - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* requires the disabled package: highlighting-kate - codec < 0 # tried codec-0.2.1, but its *library* requires the disabled package: binary-bits - colour-accelerate < 0 # tried colour-accelerate-0.4.0.0, but its *library* requires the disabled package: accelerate - - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: generic-deriving-1.14.1 - - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: profunctors-5.6.2 - - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: template-haskell-2.17.0.0 - - composite-aeson-path < 0 # tried composite-aeson-path-0.7.5.0, but its *library* does not support: path-0.9.1 - - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: composite-aeson - - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: refined + - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.0.1 + - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires aeson >=1.1.2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires mmorph >=1.0.9 && < 1.2 and the snapshot contains mmorph-1.2.0 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires template-haskell >=2.11.1.0 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires time >=1.6.0.1 && < 1.12 and the snapshot contains time-1.12.2 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires vector >=0.12.0.1 && < 0.13 and the snapshot contains vector-0.13.1.0 + - composite-aeson-path < 0 # tried composite-aeson-path-0.8.2.2, but its *library* requires path >=0.6 && < 0.9 and the snapshot contains path-0.9.5 + - composite-aeson-refined < 0 # tried composite-aeson-refined-0.8.2.2, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - composite-aeson-refined < 0 # tried composite-aeson-refined-0.8.2.2, but its *library* requires refined >=0.1.2.1 && < 0.7 and the snapshot contains refined-0.8.1 + - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: aeson-better-errors - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: composite-aeson - - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: profunctors-5.6.2 - - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: template-haskell-2.17.0.0 - - composite-binary < 0 # tried composite-binary-0.7.5.0, but its *library* requires the disabled package: composite-base - - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* requires the disabled package: composite-base - - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* requires the disabled package: ekg-core - - composite-hashable < 0 # tried composite-hashable-0.7.5.0, but its *library* requires the disabled package: composite-base - - composite-tuple < 0 # tried composite-tuple-0.1.2.0, but its *library* requires the disabled package: composite-base - - composite-xstep < 0 # tried composite-xstep-0.1.0.0, but its *library* requires the disabled package: composite-base - - compressed < 0 # tried compressed-3.11, but its *library* does not support: containers-0.6.4.1 - - compressed < 0 # tried compressed-3.11, but its *library* does not support: hashable-1.3.5.0 + - composite-ekg < 0 # tried composite-ekg-0.8.2.2, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - compressed < 0 # tried compressed-3.11, but its *library* requires containers >=0.3 && < 0.6 and the snapshot contains containers-0.6.7 + - compressed < 0 # tried compressed-3.11, but its *library* requires hashable >=1.1.2.1 && < 1.3 and the snapshot contains hashable-1.4.3.0 + - compressed < 0 # tried compressed-3.11, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.0.1 + - conduit-algorithms < 0 # tried conduit-algorithms-0.0.13.0, but its *library* requires the disabled package: lzma-conduit + - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 + - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - conduit-throttle < 0 # tried conduit-throttle-0.3.1.0, but its *library* requires the disabled package: throttle-io-stream - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* does not support: optparse-applicative-0.16.1.0 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires amazonka >=1.6 && < 1.7 and the snapshot contains amazonka-2.0 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires amazonka-kms >=1.6 && < 1.7 and the snapshot contains amazonka-kms-2.0 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires the disabled package: crypto-pubkey-openssh - - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* does not support: hspec-core-2.8.5 - - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* does not support: conferer-1.1.0.0 - - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* requires the disabled package: snap-server - - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: base-4.15.0.0 - - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: megaparsec-9.2.0 - - country < 0 # tried country-0.2.1, but its *library* does not support: attoparsec-0.14.1 - - country < 0 # tried country-0.2.1, but its *library* does not support: base-4.15.0.0 - - cql-io < 0 # tried cql-io-1.1.1, but its *library* requires the disabled package: cql + - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* requires hspec-core >=2.0.0 && < 2.8.0 and the snapshot contains hspec-core-2.11.7 + - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* requires conferer >=1.0.0.0 && < 1.1.0.0 and the snapshot contains conferer-1.1.0.0 + - connection < 0 # tried connection-0.3.1, but its *library* requires tls >=1.4 && < 1.7 and the snapshot contains tls-1.8.0 + - console-style < 0 # tried console-style-0.0.2.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - constraint < 0 # tried constraint-0.1.4.0, but its *library* requires the disabled package: category + - construct < 0 # tried construct-0.3.1.1, but its *library* requires rank2classes >=1 && < 1.5 and the snapshot contains rank2classes-1.5.3 + - containers-unicode-symbols < 0 # tried containers-unicode-symbols-0.3.1.3, but its *library* requires containers >=0.5 && < 0.6.5 and the snapshot contains containers-0.6.7 + - cprng-aes < 0 # tried cprng-aes-0.6.1, but its *library* requires the disabled package: crypto-random - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-numbers + - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-random - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-blowfish - - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: QuickCheck-2.14.2 - - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: attoparsec-0.14.1 - - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: simple-vec3-0.6.0.1 - - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: strict-0.4.0.1 - - css-syntax < 0 # tried css-syntax-0.1.0.0, but its *library* does not support: base-4.15.0.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: Cabal-3.4.0.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: attoparsec-0.14.1 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: base-4.15.0.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: constraints-0.13.2 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: cryptonite-0.29 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: memory-0.16.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* requires the disabled package: regex-compat-tdfa - - data-accessor-template < 0 # tried data-accessor-template-0.2.1.16, but its *library* does not support: template-haskell-2.17.0.0 - - data-compat < 0 # tried data-compat-0.1.0.3, but its *library* does not support: base-4.15.0.0 - - data-tree-print < 0 # tried data-tree-print-0.1.0.2, but its *library* does not support: base-4.15.0.0 - - decidable < 0 # tried decidable-0.3.0.0, but its *library* requires the disabled package: functor-products - - deepseq-instances < 0 # tried deepseq-instances-0.1.0.1, but its *library* does not support: base-4.15.0.0 - - dependent-map < 0 # tried dependent-map-0.4.0.0, but its *library* requires the disabled package: dependent-sum - - dependent-sum < 0 # tried dependent-sum-0.7.1.0, but its *library* does not support: some-1.0.3 - - dependent-sum-template < 0 # tried dependent-sum-template-0.1.1.1, but its *library* requires the disabled package: dependent-sum - - detour-via-sci < 0 # tried detour-via-sci-1.0.0, but its *library* requires the disabled package: newtype - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.0.17, but its *library* requires the disabled package: haskell-lsp - - dhall-nix < 0 # tried dhall-nix-1.1.23, but its *library* requires the disabled package: hnix - - diagrams-builder < 0 # tried diagrams-builder-0.8.0.5, but its *library* requires the disabled package: haskell-src-exts-simple - - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* requires the disabled package: statestack - - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: blank-canvas - - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: statestack - - diagrams-gtk < 0 # tried diagrams-gtk-1.4, but its *library* requires the disabled package: gtk - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: base-4.15.0.0 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: containers-0.6.4.1 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: diagrams-core-1.5.0 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: lens-5.0.1 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: optparse-applicative-0.16.1.0 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: statestack - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: static-canvas - - diagrams-postscript < 0 # tried diagrams-postscript-1.5, but its *library* requires the disabled package: statestack - - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* does not support: base-4.15.0.0 - - dice < 0 # tried dice-0.1.0.1, but its *library* requires the disabled package: random-fu - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* does not support: criterion-1.5.11.0 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: attoparsec-0.14.1 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: base-4.15.0.0 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: containers-0.6.4.1 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: exceptions-0.10.4 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: time-1.9.3 - - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* does not support: Cabal-3.4.0.0 + - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-des + - csg < 0 # tried csg-0.1.0.6, but its *executable* requires turtle < 1.6 and the snapshot contains turtle-1.6.2 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires QuickCheck < 2.13 and the snapshot contains QuickCheck-2.14.3 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires attoparsec < 0.14 and the snapshot contains attoparsec-0.14.4 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires simple-vec3 ==0.4.* and the snapshot contains simple-vec3-0.6.0.1 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires strict < 0.4 and the snapshot contains strict-0.5 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 + - csv-conduit < 0 # tried csv-conduit-0.7.3.0, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - curl-runnings < 0 # tried curl-runnings-0.17.0, but its *library* requires the disabled package: connection + - curl-runnings < 0 # tried curl-runnings-0.17.0, but its *library* requires the disabled package: dhall-json + - currencies < 0 # tried currencies-0.2.0.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - cusolver < 0 # tried cusolver-0.3.0.0, but its *library* requires the disabled package: cublas + - cusolver < 0 # tried cusolver-0.3.0.0, but its *library* requires the disabled package: cusparse + - czipwith < 0 # tried czipwith-1.0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 + - czipwith < 0 # tried czipwith-1.0.1.4, but its *library* requires template-haskell >=2.9 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires Cabal >=2.4 && < 3.7 and the snapshot contains Cabal-3.10.1.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires attoparsec >=0.13.0.1 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires base >=4.10 && < 4.16 and the snapshot contains base-4.18.1.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires bytestring >=0.10.6 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires constraints >=0.11 && < 0.13 and the snapshot contains constraints-0.13.4 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires cryptonite >=0.24 && < 0.30 and the snapshot contains cryptonite-0.30 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires fgl >=5.5.2.3 && < 5.8 and the snapshot contains fgl-5.8.2.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires hashable >=1.2.3.3 && < 1.4 and the snapshot contains hashable-1.4.3.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires http-types >=0.12.1 && < 0.12.4 and the snapshot contains http-types-0.12.4 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires memory >=0.14 && < 0.17 and the snapshot contains memory-0.18.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires regex-tdfa >=1.3.1.0 && < 1.3.2 and the snapshot contains regex-tdfa-1.3.2.2 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires text >=1.2.1.3 && < 1.3 and the snapshot contains text-2.0.2 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires time >=1.5.0.1 && < 1.10 and the snapshot contains time-1.12.2 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires unix >=2.7.1.0 && < 2.8 and the snapshot contains unix-2.8.1.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires unix-compat >=0.5 && < 0.6 and the snapshot contains unix-compat-0.7.1 + - darcs < 0 # tried darcs-2.16.5, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - data-accessor-template < 0 # tried data-accessor-template-0.2.1.16, but its *library* requires template-haskell >=2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - data-compat < 0 # tried data-compat-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.18 and the snapshot contains base-4.18.1.0 + - data-default-extra < 0 # tried data-default-extra-0.1.0, but its *library* requires the disabled package: data-default-instances-new-base + - data-default-instances-text < 0 # tried data-default-instances-text-0.0.1, but its *library* requires text >=0.2 && < 2 and the snapshot contains text-2.0.2 + - data-tree-print < 0 # tried data-tree-print-0.1.0.2, but its *library* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 + - datasets < 0 # tried datasets-0.4.0, but its *library* requires the disabled package: streaming-cassava + - dawg-ord < 0 # tried dawg-ord-0.5.1.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - dawg-ord < 0 # tried dawg-ord-0.5.1.2, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - dawg-ord < 0 # tried dawg-ord-0.5.1.2, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - decidable < 0 # tried decidable-0.3.1.0, but its *library* requires singletons-base < 3.2 and the snapshot contains singletons-base-3.2 + - deepseq-instances < 0 # tried deepseq-instances-0.1.0.1, but its *library* requires base >=4.13.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires optparse-applicative >=0.14.0.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires lens >=4.16.1 && < 5.2 and the snapshot contains lens-5.2.3 + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires lsp >=1.2.0.0 && < 1.5 and the snapshot contains lsp-2.3.0.0 + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires transformers >=0.5.5.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - dhall-nix < 0 # tried dhall-nix-1.1.26, but its *executable* requires optparse-generic >=1.1.1 && < 1.5 and the snapshot contains optparse-generic-1.5.2 + - dhall-nix < 0 # tried dhall-nix-1.1.26, but its *library* requires the disabled package: hnix + - dhall-yaml < 0 # tried dhall-yaml-1.2.12, but its *library* requires optparse-applicative >=0.14.0.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires aeson >=1.4.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires base >=4.12.0.0 && < 4.15.0.0 and the snapshot contains base-4.18.1.0 + - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* requires criterion >=0.6.2.1 && < 1.4 and the snapshot contains criterion-1.6.3.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires attoparsec >=0.10.4.0 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires base >=4.8.2 && < 4.11 and the snapshot contains base-4.18.1.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires containers >=0.5.6.2 && < 0.6 and the snapshot contains containers-0.6.7 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires exceptions >=0.8.3 && < 0.9 and the snapshot contains exceptions-0.10.7 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires time >=1.5.0.1 && < 1.9 and the snapshot contains time-1.12.2 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires Cabal >=2.0 && < 2.2 and the snapshot contains Cabal-3.10.1.0 - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires the disabled package: cabal-toolkit - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: containers-0.6.4.1 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: hashable-1.3.5.0 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: random-1.2.1 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: stm-2.5.0.0 - - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires the disabled package: distributed-process + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires hashable >=1.2.0.5 && < 1.3 and the snapshot contains hashable-1.4.3.0 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires stm >=2.4 && < 2.5 and the snapshot contains stm-2.5.1.0 + - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - distributed-process-monad-control < 0 # tried distributed-process-monad-control-0.5.1.3, but its *library* requires the disabled package: distributed-process - - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: containers-0.6.4.1 - - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-3.1.2.5 - - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-transport-tcp-0.8.0 - - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* requires the disabled package: network-multicast - - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: network-3.1.2.5 - - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: random-1.2.1 - - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* requires the disabled package: rematch - - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: containers-0.6.4.1 - - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: random-1.2.1 - - diversity < 0 # tried diversity-0.8.1.0, but its *library* requires the disabled package: fasta - - docker < 0 # tried docker-0.6.0.6, but its *library* does not support: unliftio-core-0.2.0.1 - - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* does not support: language-docker-10.4.0 - - dom-parser < 0 # tried dom-parser-3.1.0, but its *library* requires the disabled package: xml-lens - - drawille < 0 # tried drawille-0.1.2.0, but its *library* does not support: containers-0.6.4.1 - - earcut < 0 # tried earcut-0.1.0.4, but its *library* does not support: base-4.15.0.0 - - easytest < 0 # tried easytest-0.3, but its *library* does not support: hedgehog-1.0.5 - - ed25519 < 0 # tried ed25519-0.0.5.0, but its *library* does not support: ghc-prim-0.7.0 - - edit < 0 # tried edit-1.0.1.0, but its *library* does not support: QuickCheck-2.14.2 - - edit < 0 # tried edit-1.0.1.0, but its *library* does not support: base-4.15.0.0 - - effect-handlers < 0 # tried effect-handlers-0.1.0.8, but its *library* does not support: free-5.1.7 - - egison < 0 # tried egison-4.1.2, but its *library* requires the disabled package: sweet-egison - - egison-pattern-src < 0 # tried egison-pattern-src-0.2.1.2, but its *library* does not support: parser-combinators-1.3.0 - - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* does not support: template-haskell-2.17.0.0 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* does not support: base-4.15.0.0 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires the disabled package: snap-server - - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: amazonka - - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: amazonka-core - - ekg-cloudwatch < 0 # tried ekg-cloudwatch-0.0.1.6, but its *library* requires the disabled package: ekg-core - - ekg-core < 0 # tried ekg-core-0.1.1.7, but its *library* does not support: base-4.15.0.0 - - ekg-core < 0 # tried ekg-core-0.1.1.7, but its *library* does not support: ghc-prim-0.7.0 - - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* does not support: base-4.15.0.0 - - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* does not support: base-4.15.0.0 - - ekg-wai < 0 # tried ekg-wai-0.1.0.3, but its *library* does not support: time-1.9.3 - - elm-street < 0 # tried elm-street-0.1.0.4, but its *library* does not support: base-4.15.0.0 - - elynx < 0 # tried elynx-0.6.1.0, but its *executable* requires the disabled package: elynx-tools - - elynx-markov < 0 # tried elynx-markov-0.6.1.0, but its *library* requires the disabled package: elynx-seq - - emd < 0 # tried emd-0.2.0.0, but its *library* requires the disabled package: typelits-witnesses - - epub-metadata < 0 # tried epub-metadata-4.5, but its *library* requires the disabled package: regex-compat-tdfa + - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires random ==1.1.* and the snapshot contains random-1.2.1.1 + - docker < 0 # tried docker-0.7.0.1, but its *library* requires text >=1.0.0 && < 2.0.0 and the snapshot contains text-2.0.2 + - docker < 0 # tried docker-0.7.0.1, but its *library* requires tls >=1.3.7 && < 1.7.0 and the snapshot contains tls-1.8.0 + - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* requires language-docker >=6.0.4 && < 7.0 and the snapshot contains language-docker-12.1.0 + - docopt < 0 # tried docopt-0.7.0.7, but its *library* requires containers >=0.6.2 && < 0.6.6 and the snapshot contains containers-0.6.7 + - earcut < 0 # tried earcut-0.1.0.4, but its *library* requires base >=4.5 && < 4.15 and the snapshot contains base-4.18.1.0 + - easytest < 0 # tried easytest-0.3, but its *library* requires hedgehog >=0.6 && < =0.6.1 and the snapshot contains hedgehog-1.4 + - edit < 0 # tried edit-1.0.1.0, but its *library* requires QuickCheck >=2.10 && < 2.13 and the snapshot contains QuickCheck-2.14.3 + - edit < 0 # tried edit-1.0.1.0, but its *library* requires base >=4.9 && < 4.12 and the snapshot contains base-4.18.1.0 + - edit < 0 # tried edit-1.0.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - effect-handlers < 0 # tried effect-handlers-0.1.0.8, but its *library* requires free >=4.9 && < 5 and the snapshot contains free-5.2 + - egison < 0 # tried egison-4.1.3, but its *library* requires text >=0.2 && < 1.3 and the snapshot contains text-2.0.2 + - egison < 0 # tried egison-4.1.3, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - egison < 0 # tried egison-4.1.3, but its *library* requires vector ==0.12.* and the snapshot contains vector-0.13.1.0 + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* requires mtl ^>=2.2.1 and the snapshot contains mtl-2.3.1 + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* requires template-haskell >=2.2.0 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* requires text >=0.1.0 && < 1.3 and the snapshot contains text-2.0.2 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires aeson >=0.4 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires base >=4.5 && < 4.15 and the snapshot contains base-4.18.1.0 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 + - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 + - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* requires aeson >=0.4 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* requires base >=4.5 && < 4.15 and the snapshot contains base-4.18.1.0 + - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 + - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires base >=4.6 && < 4.15 and the snapshot contains base-4.18.1.0 + - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 + - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 + - ekg-wai < 0 # tried ekg-wai-0.1.1.0, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 + - elliptic-curve < 0 # tried elliptic-curve-0.3.0, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.3 + - emd < 0 # tried emd-0.2.0.0, but its *library* requires the disabled package: conduino + - essence-of-live-coding-gloss < 0 # tried essence-of-live-coding-gloss-0.2.7, but its *library* requires the disabled package: essence-of-live-coding + - essence-of-live-coding-pulse < 0 # tried essence-of-live-coding-pulse-0.2.7, but its *library* requires the disabled package: essence-of-live-coding + - essence-of-live-coding-quickcheck < 0 # tried essence-of-live-coding-quickcheck-0.2.7, but its *library* requires the disabled package: essence-of-live-coding + - essence-of-live-coding-warp < 0 # tried essence-of-live-coding-warp-0.2.7, but its *library* requires the disabled package: essence-of-live-coding - euler-tour-tree < 0 # tried euler-tour-tree-0.1.1.0, but its *library* requires the disabled package: Unique - - event < 0 # tried event-0.1.4, but its *library* does not support: containers-0.6.4.1 - - event < 0 # tried event-0.1.4, but its *library* does not support: semigroups-0.19.2 - - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: amazonka + - event < 0 # tried event-0.1.4, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 + - event < 0 # tried event-0.1.4, but its *library* requires semigroups >=0.16 && < 0.19 and the snapshot contains semigroups-0.20 + - event < 0 # tried event-0.1.4, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - eventful-core < 0 # tried eventful-core-0.2.0, but its *library* requires the disabled package: sum-type-boilerplate + - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: eventful-core + - eventful-memory < 0 # tried eventful-memory-0.2.0, but its *library* requires the disabled package: eventful-core + - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-core - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-sql-common - - eventful-sql-common < 0 # tried eventful-sql-common-0.2.0, but its *library* does not support: persistent-template-2.12.0.0 + - eventful-sql-common < 0 # tried eventful-sql-common-0.2.0, but its *library* requires persistent-template < 2.7 and the snapshot contains persistent-template-2.12.0.0 + - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-core - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-sql-common + - eventful-test-helpers < 0 # tried eventful-test-helpers-0.2.0, but its *library* requires the disabled package: eventful-core + - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-api - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-store-specs - - exception-hierarchy < 0 # tried exception-hierarchy-0.1.0.4, but its *library* does not support: template-haskell-2.17.0.0 - - fasta < 0 # tried fasta-0.10.4.2, but its *library* requires the disabled package: pipes-text + - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventstore + - eventsource-stub-store < 0 # tried eventsource-stub-store-1.1.1, but its *library* requires the disabled package: eventsource-api + - failable < 0 # tried failable-1.2.4.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - failable < 0 # tried failable-1.2.4.0, but its *library* requires transformers >=0.4.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - fast-builder < 0 # tried fast-builder-0.1.3.0, but its *library* requires base >=4.8 && < 4.16 and the snapshot contains base-4.18.1.0 + - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude - - filecache < 0 # tried filecache-0.4.1, but its *library* requires the disabled package: strict-base-types - - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: BiobaseNewick + - filecache < 0 # tried filecache-0.4.1, but its *library* requires fsnotify ==0.3.* and the snapshot contains fsnotify-0.4.1.0 + - filecache < 0 # tried filecache-0.4.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: hierarchical-clustering - - freer-simple < 0 # tried freer-simple-1.2.1.1, but its *library* does not support: template-haskell-2.17.0.0 - - friday < 0 # tried friday-0.2.3.1, but its *library* does not support: containers-0.6.4.1 - - friday < 0 # tried friday-0.2.3.1, but its *library* requires the disabled package: ratio-int - - friday-juicypixels < 0 # tried friday-juicypixels-0.1.2.4, but its *library* requires the disabled package: friday - - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: base-4.15.0.0 - - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: haskeline-0.8.2 - - ftp-client < 0 # tried ftp-client-0.5.1.4, but its *library* does not support: attoparsec-0.14.1 - - functor-combinators < 0 # tried functor-combinators-0.4.1.0, but its *library* requires the disabled package: nonempty-containers - - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: poly-0.5.0.0 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: protolude-0.3.0 + - first-class-patterns < 0 # tried first-class-patterns-0.3.2.5, but its *library* requires transformers >=0.1.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - fold-debounce-conduit < 0 # tried fold-debounce-conduit-0.2.0.7, but its *library* requires base >=4.9.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - fold-debounce-conduit < 0 # tried fold-debounce-conduit-0.2.0.7, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - foldable1 < 0 # tried foldable1-0.1.0.0, but its *library* requires the disabled package: util + - foldable1 < 0 # tried foldable1-0.1.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - fortran-src < 0 # tried fortran-src-0.15.1, but its *library* requires singletons-base >=3.0 && < 3.2 and the snapshot contains singletons-base-3.2 + - fortran-src < 0 # tried fortran-src-0.15.1, but its *library* requires singletons-th >=3.0 && < 3.2 and the snapshot contains singletons-th-3.2 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - freer-simple < 0 # tried freer-simple-1.2.1.2, but its *library* requires template-haskell >=2.11 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 + - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* requires haskeline >=0.7 && < 0.8 and the snapshot contains haskeline-0.8.2.1 + - ftp-client < 0 # tried ftp-client-0.5.1.4, but its *library* requires the disabled package: connection + - functor-products < 0 # tried functor-products-0.1.2.0, but its *library* requires singletons-base < 3.2 and the snapshot contains singletons-base-3.2 + - functor-products < 0 # tried functor-products-0.1.2.0, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires MonadRandom >=0.5.1 && < 0.6 and the snapshot contains MonadRandom-0.6 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires mod >=0.1.0 && < 0.2 and the snapshot contains mod-0.2.0.1 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires poly >=0.3.2 && < 0.5 and the snapshot contains poly-0.5.1.0 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.3 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires vector >=0.12.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - gdax < 0 # tried gdax-0.6.0.0, but its *library* requires the disabled package: regex-tdfa-text - - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: base-4.15.0.0 - - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: generic-deriving-1.14.1 - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: dhall-1.40.2 - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: ghc-9.0.1 - - ghc-syb-utils < 0 # tried ghc-syb-utils-0.3.0.0, but its *library* does not support: ghc-9.0.1 - - ghcjs-dom < 0 # tried ghcjs-dom-0.9.4.0, but its *library* requires the disabled package: ghcjs-dom-jsaddle - - gi-gsk < 0 # tried gi-gsk-4.0.4, but its *library* does not support: gi-gdk-3.0.25 - - gi-webkit2 < 0 # tried gi-webkit2-4.0.28, but its *library* requires the disabled package: gi-soup - - gingersnap < 0 # tried gingersnap-0.3.1.0, but its *library* requires the disabled package: snap-core - - gio < 0 # tried gio-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: IfElse - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: aws - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: bloomfilter - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: fdo-notify - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: git-lfs - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: http-client-restricted - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: network-multicast - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: sandi - - git-annex < 0 # tried git-annex-8.20211123, but its *executable* requires the disabled package: torrent - - git-vogue < 0 # tried git-vogue-0.3.0.2, but its *executable* requires the disabled package: stylish-haskell - - github-webhook-handler < 0 # tried github-webhook-handler-0.0.8, but its *library* does not support: base-4.15.0.0 - - github-webhook-handler-snap < 0 # tried github-webhook-handler-snap-0.0.7, but its *library* does not support: base-4.15.0.0 - - gitlib-libgit2 < 0 # tried gitlib-libgit2-3.1.2.1, but its *library* requires the disabled package: gitlib - - glaze < 0 # tried glaze-0.3.0.1, but its *library* does not support: lens-5.0.1 + - generic-aeson < 0 # tried generic-aeson-0.2.0.14, but its *library* requires base >=4.4 && < 4.17 and the snapshot contains base-4.18.1.0 + - generic-aeson < 0 # tried generic-aeson-0.2.0.14, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* requires base >=4.5 && < 4.14 and the snapshot contains base-4.18.1.0 + - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* requires generic-deriving >=1.6 && < 1.14 and the snapshot contains generic-deriving-1.14.5 + - geniplate-mirror < 0 # tried geniplate-mirror-0.7.9, but its *library* requires template-haskell < 2.20 and the snapshot contains template-haskell-2.20.0.0 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires dhall >=1.30.0 && < 1.34 and the snapshot contains dhall-1.42.1 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires ghc >=8.8.2 && < 8.11 and the snapshot contains ghc-9.6.3 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires text >=1.2.3.2 && < 1.3 and the snapshot contains text-2.0.2 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires text-icu >=0.7.0 && < 0.8 and the snapshot contains text-icu-0.8.0.4 + - ghc-prof < 0 # tried ghc-prof-1.4.1.12, but its *library* requires base >=4.6 && < 4.18 and the snapshot contains base-4.18.1.0 + - ghc-source-gen < 0 # tried ghc-source-gen-0.4.3.0, but its *library* requires ghc >=8.4 && < 9.3 and the snapshot contains ghc-9.6.3 + - ghc-syb-utils < 0 # tried ghc-syb-utils-0.3.0.0, but its *library* requires ghc >=7.10 && < 8.6 and the snapshot contains ghc-9.6.3 + - ghcjs-dom < 0 # tried ghcjs-dom-0.9.5.0, but its *library* requires text >=0.11.0.6 && < 1.3 and the snapshot contains text-2.0.2 + - ghcjs-dom < 0 # tried ghcjs-dom-0.9.5.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - ghcjs-dom-jsaddle < 0 # tried ghcjs-dom-jsaddle-0.9.5.0, but its *library* requires the disabled package: jsaddle-dom + - gi-cairo-connector < 0 # tried gi-cairo-connector-0.1.1, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - gi-gsk < 0 # tried gi-gsk-4.0.7, but its *library* requires gi-gdk ==4.0.* and the snapshot contains gi-gdk-3.0.28 + - github-webhook-handler < 0 # tried github-webhook-handler-0.0.8, but its *library* requires base >=4 && < 4.11 and the snapshot contains base-4.18.1.0 + - github-webhook-handler-snap < 0 # tried github-webhook-handler-snap-0.0.7, but its *library* requires base >=4 && < 4.11 and the snapshot contains base-4.18.1.0 + - gitlab-haskell < 0 # tried gitlab-haskell-1.0.0.3, but its *library* requires the disabled package: connection + - glaze < 0 # tried glaze-0.3.0.1, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: ghcjs-base-stub - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: glazier - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: ghcjs-base-stub - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: glazier - - glib < 0 # tried glib-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: linear-accelerate - - gloss-examples < 0 # tried gloss-examples-1.13.0.3, but its *executable* does not support: random-1.2.1 + - gloss-examples < 0 # tried gloss-examples-1.13.0.4, but its *executable* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - gloss-raster < 0 # tried gloss-raster-1.13.1.2, but its *library* requires the disabled package: repa - gloss-raster-accelerate < 0 # tried gloss-raster-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate - - google-cloud < 0 # tried google-cloud-0.0.4, but its *library* does not support: base-4.15.0.0 - - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* does not support: base64-bytestring-1.2.1.0 - - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-api-data-0.4.3 - - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-client-0.7.9 - - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: path-0.9.1 - - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires the disabled package: groundhog-th - - groundhog-mysql < 0 # tried groundhog-mysql-0.11, but its *library* does not support: mysql-0.2.1 - - grouped-list < 0 # tried grouped-list-0.2.2.1, but its *library* does not support: base-4.15.0.0 - - gtk3 < 0 # tried gtk3-0.15.6, but its *library* does not support: Cabal-3.4.0.0 - - hOpenPGP < 0 # tried hOpenPGP-2.9.7, but its *library* requires the disabled package: ixset-typed - - hackage-security < 0 # tried hackage-security-0.6.0.1, but its *library* does not support: template-haskell-2.17.0.0 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: http-client-0.7.9 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-0.18.3 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-client-0.18.3 - - hadolint < 0 # tried hadolint-2.8.0, but its *library* does not support: deepseq-1.4.5.0 - - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: colourista - - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: spdx - - hamilton < 0 # tried hamilton-0.1.0.3, but its *library* requires the disabled package: typelits-witnesses - - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *library* does not support: path-0.9.1 - - happstack-hsp < 0 # tried happstack-hsp-7.3.7.5, but its *library* requires the disabled package: harp - - haskell-lsp < 0 # tried haskell-lsp-0.24.0.0, but its *executable* does not support: base-4.15.0.0 - - haskell-lsp-client < 0 # tried haskell-lsp-client-1.0.0.1, but its *library* requires the disabled package: haskell-lsp - - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires the disabled package: traverse-with-class - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - gogol < 0 # tried gogol-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-adexchange-buyer < 0 # tried gogol-adexchange-buyer-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-adexchange-seller < 0 # tried gogol-adexchange-seller-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-admin-datatransfer < 0 # tried gogol-admin-datatransfer-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-admin-directory < 0 # tried gogol-admin-directory-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-admin-emailmigration < 0 # tried gogol-admin-emailmigration-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-admin-reports < 0 # tried gogol-admin-reports-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-adsense < 0 # tried gogol-adsense-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-adsense-host < 0 # tried gogol-adsense-host-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-affiliates < 0 # tried gogol-affiliates-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-analytics < 0 # tried gogol-analytics-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-android-enterprise < 0 # tried gogol-android-enterprise-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-android-publisher < 0 # tried gogol-android-publisher-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-appengine < 0 # tried gogol-appengine-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-apps-activity < 0 # tried gogol-apps-activity-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-apps-calendar < 0 # tried gogol-apps-calendar-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-apps-licensing < 0 # tried gogol-apps-licensing-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-apps-reseller < 0 # tried gogol-apps-reseller-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-apps-tasks < 0 # tried gogol-apps-tasks-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-appstate < 0 # tried gogol-appstate-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-autoscaler < 0 # tried gogol-autoscaler-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-bigquery < 0 # tried gogol-bigquery-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-billing < 0 # tried gogol-billing-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-blogger < 0 # tried gogol-blogger-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-books < 0 # tried gogol-books-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-civicinfo < 0 # tried gogol-civicinfo-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-classroom < 0 # tried gogol-classroom-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-cloudmonitoring < 0 # tried gogol-cloudmonitoring-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-cloudtrace < 0 # tried gogol-cloudtrace-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-compute < 0 # tried gogol-compute-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-container < 0 # tried gogol-container-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-customsearch < 0 # tried gogol-customsearch-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-dataflow < 0 # tried gogol-dataflow-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-dataproc < 0 # tried gogol-dataproc-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-datastore < 0 # tried gogol-datastore-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-debugger < 0 # tried gogol-debugger-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-deploymentmanager < 0 # tried gogol-deploymentmanager-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-dfareporting < 0 # tried gogol-dfareporting-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-discovery < 0 # tried gogol-discovery-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-dns < 0 # tried gogol-dns-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-doubleclick-bids < 0 # tried gogol-doubleclick-bids-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-doubleclick-search < 0 # tried gogol-doubleclick-search-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-drive < 0 # tried gogol-drive-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-firebase-rules < 0 # tried gogol-firebase-rules-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-fitness < 0 # tried gogol-fitness-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-fonts < 0 # tried gogol-fonts-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-freebasesearch < 0 # tried gogol-freebasesearch-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-fusiontables < 0 # tried gogol-fusiontables-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-games < 0 # tried gogol-games-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-games-configuration < 0 # tried gogol-games-configuration-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-games-management < 0 # tried gogol-games-management-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-genomics < 0 # tried gogol-genomics-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-gmail < 0 # tried gogol-gmail-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-groups-migration < 0 # tried gogol-groups-migration-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-groups-settings < 0 # tried gogol-groups-settings-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-identity-toolkit < 0 # tried gogol-identity-toolkit-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-kgsearch < 0 # tried gogol-kgsearch-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-latencytest < 0 # tried gogol-latencytest-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-logging < 0 # tried gogol-logging-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-maps-coordinate < 0 # tried gogol-maps-coordinate-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-maps-engine < 0 # tried gogol-maps-engine-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-mirror < 0 # tried gogol-mirror-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-monitoring < 0 # tried gogol-monitoring-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-oauth2 < 0 # tried gogol-oauth2-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-pagespeed < 0 # tried gogol-pagespeed-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-partners < 0 # tried gogol-partners-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-people < 0 # tried gogol-people-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-play-moviespartner < 0 # tried gogol-play-moviespartner-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-plus < 0 # tried gogol-plus-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-plus-domains < 0 # tried gogol-plus-domains-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-prediction < 0 # tried gogol-prediction-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-proximitybeacon < 0 # tried gogol-proximitybeacon-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-pubsub < 0 # tried gogol-pubsub-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-qpxexpress < 0 # tried gogol-qpxexpress-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-replicapool < 0 # tried gogol-replicapool-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-replicapool-updater < 0 # tried gogol-replicapool-updater-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-resourcemanager < 0 # tried gogol-resourcemanager-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-resourceviews < 0 # tried gogol-resourceviews-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-script < 0 # tried gogol-script-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-sheets < 0 # tried gogol-sheets-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-shopping-content < 0 # tried gogol-shopping-content-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-siteverification < 0 # tried gogol-siteverification-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-spectrum < 0 # tried gogol-spectrum-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-sqladmin < 0 # tried gogol-sqladmin-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-storage < 0 # tried gogol-storage-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-storage-transfer < 0 # tried gogol-storage-transfer-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-tagmanager < 0 # tried gogol-tagmanager-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-taskqueue < 0 # tried gogol-taskqueue-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-translate < 0 # tried gogol-translate-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-urlshortener < 0 # tried gogol-urlshortener-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-useraccounts < 0 # tried gogol-useraccounts-0.3.0, but its *library* requires the disabled package: gogol-core + - gogol-vision < 0 # tried gogol-vision-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-webmaster-tools < 0 # tried gogol-webmaster-tools-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-youtube < 0 # tried gogol-youtube-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-youtube-analytics < 0 # tried gogol-youtube-analytics-0.5.0, but its *library* requires the disabled package: gogol-core + - gogol-youtube-reporting < 0 # tried gogol-youtube-reporting-0.5.0, but its *library* requires the disabled package: gogol-core + - google-cloud < 0 # tried google-cloud-0.0.4, but its *library* requires base >=4.4 && < 4.11 and the snapshot contains base-4.18.1.0 + - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* requires base64-bytestring >=1.0.0 && < 1.2.0.1 and the snapshot contains base64-bytestring-1.2.1.0 + - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* requires bytestring >=0.10.6 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - google-translate < 0 # tried google-translate-0.5, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - google-translate < 0 # tried google-translate-0.5, but its *library* requires http-api-data >=0.2 && < 0.4 and the snapshot contains http-api-data-0.5.1 + - google-translate < 0 # tried google-translate-0.5, but its *library* requires http-client >=0.4 && < 0.6 and the snapshot contains http-client-0.7.15 + - google-translate < 0 # tried google-translate-0.5, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - google-translate < 0 # tried google-translate-0.5, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - gothic < 0 # tried gothic-0.1.8.1, but its *library* requires vector >=0.12.0.1 && < 0.13 and the snapshot contains vector-0.13.1.0 + - greskell < 0 # tried greskell-2.0.3.0, but its *library* requires base >=4.9.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - greskell < 0 # tried greskell-2.0.3.0, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - greskell < 0 # tried greskell-2.0.3.0, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - greskell-core < 0 # tried greskell-core-1.0.0.1, but its *library* requires base >=4.9.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - greskell-core < 0 # tried greskell-core-1.0.0.1, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - greskell-websocket < 0 # tried greskell-websocket-1.0.0.1, but its *library* requires base >=4.9.1.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - greskell-websocket < 0 # tried greskell-websocket-1.0.0.1, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires groundhog-th >=0.8 && < 0.12 and the snapshot contains groundhog-th-0.12 + - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires the disabled package: groundhog + - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* requires mysql >=0.1.1.3 && < 0.2 and the snapshot contains mysql-0.2.1 + - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* requires the disabled package: groundhog + - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* requires transformers >=0.2.1 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires postgresql-simple >=0.3 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 + - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires the disabled package: groundhog + - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires transformers >=0.2.1 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - groundhog-sqlite < 0 # tried groundhog-sqlite-0.12.0, but its *library* requires the disabled package: groundhog + - groundhog-th < 0 # tried groundhog-th-0.12, but its *library* requires aeson >=0.7 && < 2 and the snapshot contains aeson-2.1.2.1 + - groundhog-th < 0 # tried groundhog-th-0.12, but its *library* requires the disabled package: groundhog + - grouped-list < 0 # tried grouped-list-0.2.3.0, but its *library* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 + - gtk-sni-tray < 0 # tried gtk-sni-tray-0.1.8.1, but its *library* requires the disabled package: gi-cairo-connector + - hOpenPGP < 0 # tried hOpenPGP-2.9.8, but its *library* requires the disabled package: incremental-parser + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires http-client ==0.5.* and the snapshot contains http-client-0.7.15 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires servant >=0.9 && < 0.13 and the snapshot contains servant-0.20.1 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires servant-client >=0.9 && < 0.13 and the snapshot contains servant-client-0.20 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - hadolint < 0 # tried hadolint-2.12.0, but its *library* requires language-docker >=11.0.0 && < 12 and the snapshot contains language-docker-12.1.0 + - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires text >=1.2.2.0 && < 1.3 and the snapshot contains text-2.0.2 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *executable* requires optparse-applicative >=0.11 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires ansi-terminal >=0.9 && < 0.12 and the snapshot contains ansi-terminal-1.0 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires path >=0.5 && < 0.9 and the snapshot contains path-0.9.5 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires path-io >=1.2 && < 1.7 and the snapshot contains path-io-1.8.1 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires time >=1.5 && < 1.11 and the snapshot contains time-1.12.2 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - happstack-hsp < 0 # tried happstack-hsp-7.3.7.7, but its *library* requires the disabled package: hsp + - harp < 0 # tried harp-0.4.3.6, but its *library* requires base < 4.18 and the snapshot contains base-4.18.1.0 + - hasbolt < 0 # tried hasbolt-0.1.6.3, but its *library* requires the disabled package: connection + - hashable-time < 0 # tried hashable-time-0.3, but its *library* requires base >=4.7 && < 4.16 and the snapshot contains base-4.18.1.0 + - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires aeson >=0.8.0.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires bytestring >=0.10.4.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: ghc-boot-th-9.0.1 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires ghc-boot-th >=8.4 && < 8.7 and the snapshot contains ghc-boot-th-9.6.3 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: Glob-0.10.2 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: optparse-applicative-0.16.1.0 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: strict-0.4.0.1 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires Cabal >=2.0 && < 2.5 and the snapshot contains Cabal-3.10.1.0 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires the disabled package: references + - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* requires Glob >=0.9 && < 0.10 and the snapshot contains Glob-0.10.2 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires strict >=0.3 && < 0.4 and the snapshot contains strict-0.5 - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: Cabal-3.4.0.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: Diff-0.4.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: network-3.1.2.5 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: optparse-applicative-0.16.1.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: strict-0.4.0.1 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires Cabal >=2.0 && < 2.5 and the snapshot contains Cabal-3.10.1.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires Diff >=0.3 && < 0.4 and the snapshot contains Diff-0.4.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires network >=2.6 && < 2.9 and the snapshot contains network-3.1.4.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires strict >=0.3 && < 0.4 and the snapshot contains strict-0.5 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: warp-3.3.18 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires warp >=3.2 && < 3.3 and the snapshot contains warp-3.3.31 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: Cabal-3.4.0.0 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: aeson-1.5.6.0 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: ghc-9.0.1 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires Cabal >=2.0 && < 2.5 and the snapshot contains Cabal-3.10.1.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* does not support: base-4.15.0.0 - - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* does not support: ghc-9.0.1 + - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 + - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires the disabled package: references - - haskey < 0 # tried haskey-0.3.1.0, but its *library* does not support: stm-containers-1.2 - - haskey-mtl < 0 # tried haskey-mtl-0.3.1.0, but its *library* does not support: monad-control-1.0.3.1 - - haskoin-store < 0 # tried haskoin-store-0.61.0, but its *library* requires the disabled package: haskoin-node - - haskoin-store < 0 # tried haskoin-store-0.61.0, but its *library* requires the disabled package: haskoin-store-data - - hasmin < 0 # tried hasmin-1.0.3, but its *executable* does not support: optparse-applicative-0.16.1.0 - - hasmin < 0 # tried hasmin-1.0.3, but its *library* does not support: attoparsec-0.14.1 + - haskey < 0 # tried haskey-0.3.1.0, but its *library* requires stm-containers >=0.2 && < 1 || >=1.1 && < 1.2 and the snapshot contains stm-containers-1.2.0.3 + - haskey-btree < 0 # tried haskey-btree-0.3.0.1, but its *library* requires text >=1.2.1 && < 2 and the snapshot contains text-2.0.2 + - haskey-mtl < 0 # tried haskey-mtl-0.3.1.0, but its *library* requires monad-control >=1.0.1.0 && < 1.0.2.4 and the snapshot contains monad-control-1.0.3.1 + - haskoin-store < 0 # tried haskoin-store-1.2.3, but its *library* requires the disabled package: statsd-rupp + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* requires bytestring >=0.10.2.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* requires optparse-applicative >=0.11 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires attoparsec >=0.12 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - hasql-queue < 0 # tried hasql-queue-1.2.0.2, but its *executable* requires the disabled package: tmp-postgres + - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires aeson >=0.6 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 + - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires text >=1.2.1.0 && < 1.3 and the snapshot contains text-2.0.2 + - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires time >=1.4 && < 1.10 and the snapshot contains time-1.12.2 + - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: haxl - - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: aeson-1.5.6.0 - - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: attoparsec-0.14.1 - - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: base-4.15.0.0 - - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: dlist-1.0 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: ansi-terminal-0.11.1 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: brick-0.65 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: optparse-applicative-0.16.1.0 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: semigroups-0.19.2 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: vty-5.33 - - hgeometry < 0 # tried hgeometry-0.13, but its *library* requires the disabled package: vector-circular - - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.13, but its *library* requires the disabled package: vector-circular - - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: base-4.15.0.0 - - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: template-haskell-2.17.0.0 - - hidden-char < 0 # tried hidden-char-0.1.0.2, but its *library* does not support: base-4.15.0.0 - - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* does not support: base-4.15.0.0 - - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: swagger2 - - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: swagger2 - - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart - - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart-diagrams + - hedgehog-fakedata < 0 # tried hedgehog-fakedata-0.0.1.5, but its *library* requires hedgehog >=0.1 && < 1.3 and the snapshot contains hedgehog-1.4 + - hedgehog-optics < 0 # tried hedgehog-optics-1.0.0.3, but its *library* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires ansi-terminal >=0.7.0 && < =0.8.1 and the snapshot contains ansi-terminal-1.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires brick >=0.19 && < =0.39 and the snapshot contains brick-2.1.1 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires semigroups >=0.18.3 && < 0.19 and the snapshot contains semigroups-0.20 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires vty >=5.15 && < =5.23 and the snapshot contains vty-6.1 + - hgeometry < 0 # tried hgeometry-0.14, but its *library* requires the disabled package: vector-circular + - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.14, but its *library* requires the disabled package: vector-circular + - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires aeson >=0.8 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires base >=4.7 && < 4.15 and the snapshot contains base-4.18.1.0 + - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires template-haskell >=2.10 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - hid < 0 # tried hid-0.2.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hid < 0 # tried hid-0.2.2, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - hidden-char < 0 # tried hidden-char-0.1.0.2, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* requires base >=4.7 && < 4.12 and the snapshot contains base-4.18.1.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* requires transformers-compat >=0.3 && < 0.7 and the snapshot contains transformers-compat-0.7.2 + - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires resourcet >=1.2.3 && < =1.3 and the snapshot contains resourcet-1.3.0 + - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: highjson + - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: highjson + - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: repa - hit < 0 # tried hit-0.7.0, but its *executable* requires the disabled package: git - - hmatrix-backprop < 0 # tried hmatrix-backprop-0.1.3.0, but its *library* requires the disabled package: backprop - - hmpfr < 0 # tried hmpfr-0.4.4, but its *library* does not support: integer-gmp-1.1 + - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires aeson >=0.7 && < 1.4 and the snapshot contains aeson-2.1.2.1 + - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 + - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires QuickCheck >=2.8 && < 2.11 and the snapshot contains QuickCheck-2.14.3 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires aeson >=0.11 && < 1.4 and the snapshot contains aeson-2.1.2.1 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires hjsonpointer >=1.1 && < 1.4 and the snapshot contains hjsonpointer-1.5.0 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires http-client >=0.4.30 && < 0.6 and the snapshot contains http-client-0.7.15 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires http-types >=0.8 && < 0.10 and the snapshot contains http-types-0.12.4 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires profunctors >=5.0 && < 5.3 and the snapshot contains profunctors-5.6.2 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires protolude >=0.1.10 && < 0.3 and the snapshot contains protolude-0.3.3 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 + - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - hledger-ui < 0 # tried hledger-ui-1.32.1, but its *library* requires brick >=1.5 && < 2 and the snapshot contains brick-2.1.1 + - hledger-ui < 0 # tried hledger-ui-1.32.1, but its *library* requires vty >=5.15 && < 6 and the snapshot contains vty-6.1 + - hmatrix-repa < 0 # tried hmatrix-repa-0.1.2.2, but its *library* requires the disabled package: repa + - hnock < 0 # tried hnock-0.4.0, but its *library* requires text >=1.2.3.0 && < 1.3 and the snapshot contains text-2.0.2 + - hocilib < 0 # tried hocilib-0.2.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires MissingH < =1.4.3.0 and the snapshot contains MissingH-1.6.0.1 + - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires parsec < =3.1.14.0 and the snapshot contains parsec-3.1.16.1 + - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires split < =0.2.3.4 and the snapshot contains split-0.2.4 - holy-project < 0 # tried holy-project-0.2.0.1, but its *library* requires the disabled package: hastache - - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.6, but its *executable* requires the disabled package: ixset-typed - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: aeson-1.5.6.0 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: containers-0.6.4.1 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: retry-0.9.0.0 - - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: path-0.9.1 - - hpio < 0 # tried hpio-0.9.0.7, but its *executable* does not support: optparse-applicative-0.16.1.0 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: QuickCheck-2.14.2 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: protolude-0.3.0 - - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: containers-0.6.4.1 - - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: hmatrix-0.20.2 - - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: statistics-0.15.2.0 - - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: time-1.9.3 - - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: vector-algorithms-0.8.0.4 - - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* requires the disabled package: hmatrix-special - - hquantlib-time < 0 # tried hquantlib-time-0.0.4.1, but its *library* does not support: time-1.9.3 + - hoogle < 0 # tried hoogle-5.0.18.3, but its *library* requires the disabled package: connection + - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.8, but its *executable* requires the disabled package: hOpenPGP + - hpack-dhall < 0 # tried hpack-dhall-0.5.7, but its *library* requires hpack ==0.35.* and the snapshot contains hpack-0.36.0 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires aeson >=0.7.1 && < 1.3 and the snapshot contains aeson-2.1.2.1 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires retry >=0.5 && < 0.8 and the snapshot contains retry-0.9.3.1 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires transformers >=0.4.1 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *executable* requires optparse-applicative >=0.11.0 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires QuickCheck >=2.7.6 && < 2.13 and the snapshot contains QuickCheck-2.14.3 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires mtl >=2.1.3 && < 2.3 and the snapshot contains mtl-2.3.1 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires protolude ==0.2.* and the snapshot contains protolude-0.3.3 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.0.2 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires unix >=2.7.0 && < 2.8 and the snapshot contains unix-2.8.1.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires unix-bytestring >=0.3.7 && < 0.4 and the snapshot contains unix-bytestring-0.4.0 + - hprotoc < 0 # tried hprotoc-2.4.17, but its *library* requires the disabled package: protocol-buffers + - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires statistics >=0.15.0.0 && < 0.16.0.0 and the snapshot contains statistics-0.16.2.1 + - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires time >=1.9.0.0 && < 1.10.0.0 and the snapshot contains time-1.12.2 + - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires vector >=0.11.0.0 && < 0.13.0.0 and the snapshot contains vector-0.13.1.0 + - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires vector-algorithms >=0.8.0.0 && < 0.9.0.0 and the snapshot contains vector-algorithms-0.9.0.1 + - hquantlib-time < 0 # tried hquantlib-time-0.0.5.2, but its *library* requires time >=1.4.0.0 && < 1.12.0.0 and the snapshot contains time-1.12.2 + - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires Cabal >=1.24.0.0 && < 3.7 and the snapshot contains Cabal-3.10.1.0 + - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires base >=4.9.0.0 && < 4.16 and the snapshot contains base-4.18.1.0 + - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires ghc >=8.0.2 && < 9.1 and the snapshot contains ghc-9.6.3 + - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires strict >=0.3.2 && < 0.5 and the snapshot contains strict-0.5 - hsb2hs < 0 # tried hsb2hs-0.3.1, but its *executable* requires the disabled package: preprocessor-tools - hschema-aeson < 0 # tried hschema-aeson-0.0.1.1, but its *library* requires the disabled package: hschema - hschema-prettyprinter < 0 # tried hschema-prettyprinter-0.0.1.1, but its *library* requires the disabled package: hschema - hschema-quickcheck < 0 # tried hschema-quickcheck-0.0.1.1, but its *library* requires the disabled package: hschema - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: attoparsec-0.14.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-boot-9.0.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-lib-parser-9.0.1.20210324 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: hlint-3.3.4 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: http-client-0.7.9 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: lens-5.0.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: optparse-applicative-0.16.1.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: template-haskell-2.17.0.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires aeson >=1.2.4.0 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires attoparsec >=0.13.1.0 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires fsnotify >=0.2.1 && < 0.4 and the snapshot contains fsnotify-0.4.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires ghc-boot >=8.0.1 && < 8.11 and the snapshot contains ghc-boot-9.6.3 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires ghc-lib-parser ==8.10.* and the snapshot contains ghc-lib-parser-9.6.3.20231121 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires hlint >=3.0.0 && < 3.3.0 and the snapshot contains hlint-3.6.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires http-client >=0.5 && < 0.7 and the snapshot contains http-client-0.7.15 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires lens >=4.14 && < 4.20 and the snapshot contains lens-5.2.3 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires mmorph >=1.0.9 && < 1.2 and the snapshot contains mmorph-1.2.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires optparse-applicative >=0.12.1.0 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires template-haskell >=2.11.0 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires the disabled package: text-region - - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: base-4.15.0.0 - - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: hspec-core-2.8.5 - - hspec-wai-json < 0 # tried hspec-wai-json-0.11.0, but its *library* does not support: hspec-wai-0.11.1 - - hspec-webdriver < 0 # tried hspec-webdriver-1.2.0, but its *library* requires the disabled package: webdriver - - hsx2hs < 0 # tried hsx2hs-0.14.1.8, but its *library* does not support: template-haskell-2.17.0.0 - - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.0, but its *library* does not support: hspec-2.8.5 - - hxt-pickle-utils < 0 # tried hxt-pickle-utils-0.1.0.3, but its *library* does not support: base-4.15.0.0 - - hyraxAbif < 0 # tried hyraxAbif-0.2.3.27, but its *library* requires the disabled package: protolude - - idris < 0 # tried idris-1.3.4, but its *library* does not support: Cabal-3.4.0.0 - - idris < 0 # tried idris-1.3.4, but its *library* does not support: network-3.1.2.5 - - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: hse-cpp - - indentation-core < 0 # tried indentation-core-0.0.0.2, but its *library* does not support: base-4.15.0.0 - - indentation-parsec < 0 # tried indentation-parsec-0.0.0.2, but its *library* does not support: base-4.15.0.0 - - inline-java < 0 # tried inline-java-0.10.0, but its *library* does not support: ghc-9.0.1 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires time >=1.6.0.1 && < 1.10 and the snapshot contains time-1.12.2 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires unix >=2.7.2.0 && < 2.8 and the snapshot contains unix-2.8.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 + - hspec-need-env < 0 # tried hspec-need-env-0.1.0.10, but its *library* requires base >=4.6.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - hspec-need-env < 0 # tried hspec-need-env-0.1.0.10, but its *library* requires hspec-core >=2.2.4 && < 2.11 and the snapshot contains hspec-core-2.11.7 + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* requires base >=4.13.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* requires hspec-core ==2.7.* and the snapshot contains hspec-core-2.11.7 + - hsx-jmacro < 0 # tried hsx-jmacro-7.3.8.2, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - hsx-jmacro < 0 # tried hsx-jmacro-7.3.8.2, but its *library* requires the disabled package: hsp + - hsx2hs < 0 # tried hsx2hs-0.14.1.11, but its *library* requires template-haskell >=2.7 && < 2.20 and the snapshot contains template-haskell-2.20.0.0 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires unix < 2.8 and the snapshot contains unix-2.8.1.0 + - htoml < 0 # tried htoml-1.0.0.3, but its *library* requires aeson >=0.8 && < 2 and the snapshot contains aeson-2.1.2.1 + - htoml < 0 # tried htoml-1.0.0.3, but its *library* requires text >=1.0 && < 2 and the snapshot contains text-2.0.2 + - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.3, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires resourcet >=1.2.2 && < 1.3 and the snapshot contains resourcet-1.3.0 + - hw-excess < 0 # tried hw-excess-0.2.3.0, but its *library* requires the disabled package: hw-rankselect-base + - hw-hedgehog < 0 # tried hw-hedgehog-0.1.1.1, but its *library* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-ip < 0 # tried hw-ip-2.4.2.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-json < 0 # tried hw-json-1.3.2.4, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-json < 0 # tried hw-json-1.3.2.4, but its *library* requires aeson >=2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - hw-json < 0 # tried hw-json-1.3.2.4, but its *library* requires ansi-wl-pprint >=0.6.8.2 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - hw-json-simd < 0 # tried hw-json-simd-0.1.1.2, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-mquery < 0 # tried hw-mquery-0.2.1.1, but its *library* requires ansi-wl-pprint >=0.6.8 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-rankselect < 0 # tried hw-rankselect-0.13.4.1, but its *executable* requires optparse-applicative >=0.11 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-rankselect-base < 0 # tried hw-rankselect-base-0.3.4.1, but its *library* requires the disabled package: bits-extra + - hw-simd < 0 # tried hw-simd-0.1.2.2, but its *library* requires the disabled package: bits-extra + - hw-simd < 0 # tried hw-simd-0.1.2.2, but its *library* requires the disabled package: hw-rankselect + - hw-succinct < 0 # tried hw-succinct-0.1.0.1, but its *library* requires the disabled package: hw-balancedparens + - hw-succinct < 0 # tried hw-succinct-0.1.0.1, but its *library* requires the disabled package: hw-rankselect + - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *executable* requires optparse-applicative >=0.15.1.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires ansi-wl-pprint >=0.6.9 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires ghc-prim >=0.5 && < 0.10 and the snapshot contains ghc-prim-0.10.0 + - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires resourcet >=1.2.2 && < 1.3 and the snapshot contains resourcet-1.3.0 + - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires text >=1.2.3.2 && < 2 and the snapshot contains text-2.0.2 + - idris < 0 # tried idris-1.3.4, but its *library* requires Cabal >=2.4 && < =3.4 and the snapshot contains Cabal-3.10.1.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires aeson >=0.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - idris < 0 # tried idris-1.3.4, but its *library* requires ansi-terminal < 0.12 and the snapshot contains ansi-terminal-1.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires ansi-wl-pprint < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - idris < 0 # tried idris-1.3.4, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 + - idris < 0 # tried idris-1.3.4, but its *library* requires fsnotify >=0.2 && < 0.4 and the snapshot contains fsnotify-0.4.1.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires libffi < 0.2 and the snapshot contains libffi-0.2.1 + - idris < 0 # tried idris-1.3.4, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - idris < 0 # tried idris-1.3.4, but its *library* requires network >=2.7 && < 3.1.2 and the snapshot contains network-3.1.4.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires optparse-applicative >=0.13 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires text >=1.2.1.0 && < 1.4 and the snapshot contains text-2.0.2 + - idris < 0 # tried idris-1.3.4, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires unix < 2.8 and the snapshot contains unix-2.8.1.0 + - idris < 0 # tried idris-1.3.4, but its *library* requires vector < 0.13 and the snapshot contains vector-0.13.1.0 + - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: haskell-names + - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: log-warper + - incremental-parser < 0 # tried incremental-parser-0.5.0.5, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - indentation-core < 0 # tried indentation-core-0.0.0.2, but its *library* requires base >=4.6 && < 4.13 and the snapshot contains base-4.18.1.0 + - indentation-parsec < 0 # tried indentation-parsec-0.0.0.2, but its *library* requires base >=4.6 && < 4.13 and the snapshot contains base-4.18.1.0 + - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires ghc >=8.10.1 && < =8.11 and the snapshot contains ghc-9.6.3 - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires the disabled package: jni - - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* does not support: template-haskell-2.17.0.0 - - invertible < 0 # tried invertible-0.2.0.7, but its *library* requires the disabled package: partial-isomorphisms - - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: attoparsec-0.14.1 - - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: base-4.15.0.0 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: attoparsec-0.14.1 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: network-3.1.2.5 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: path-0.9.1 - - it-has < 0 # tried it-has-0.2.0.0, but its *library* does not support: generic-lens-2.2.0.0 - - ixset < 0 # tried ixset-1.1.1.1, but its *library* requires the disabled package: syb-with-class - - ixset-typed < 0 # tried ixset-typed-0.5, but its *library* does not support: template-haskell-2.17.0.0 - - ixset-typed-binary-instance < 0 # tried ixset-typed-binary-instance-0.1.0.2, but its *library* requires the disabled package: ixset-typed - - ixset-typed-conversions < 0 # tried ixset-typed-conversions-0.1.2.0, but its *library* requires the disabled package: ixset-typed - - ixset-typed-hashable-instance < 0 # tried ixset-typed-hashable-instance-0.1.0.2, but its *library* requires the disabled package: ixset-typed - - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: snap-core - - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: attoparsec-0.14.1 - - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: base64-bytestring-1.2.1.0 - - jsaddle < 0 # tried jsaddle-0.9.8.0, but its *library* does not support: ref-tf-0.5.0.1 - - json-alt < 0 # tried json-alt-1.0.0, but its *library* does not support: aeson-1.5.6.0 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: aeson-1.5.6.0 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: lens-5.0.1 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* does not support: smallcheck-1.2.1 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires the disabled package: run-haskell-module - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* does not support: aeson-1.5.6.0 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* does not support: base-4.15.0.0 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* does not support: base-4.15.0.0 - - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: aeson-1.5.6.0 - - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: base-compat-batteries-0.11.2 - - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: containers-0.6.4.1 - - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: generic-deriving-1.14.1 - - json-schema < 0 # tried json-schema-0.7.4.2, but its *library* does not support: time-1.9.3 - - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: distributed-closure + - inliterate < 0 # tried inliterate-0.1.0, but its *library* requires the disabled package: cheapskate + - instance-control < 0 # tried instance-control-0.1.2.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - instance-control < 0 # tried instance-control-0.1.2.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* requires template-haskell >=2.14.0.0 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 + - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires text >=0.7 && < 1.3 and the snapshot contains text-2.0.2 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires template-haskell >=2.14 && < 2.18 and the snapshot contains template-haskell-2.20.0.0 + - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires unicode-transforms ^>=0.3.7 and the snapshot contains unicode-transforms-0.4.0.1 + - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires network-conduit-tls >=1.1 && < 1.4 and the snapshot contains network-conduit-tls-1.4.0 + - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 + - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-1.8.0 + - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires network-conduit-tls >=1.1 && < 1.4 and the snapshot contains network-conduit-tls-1.4.0 + - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-1.8.0 + - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires attoparsec >=0.13.0.1 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires network >=2.6.2.1 && < 2.8 and the snapshot contains network-3.1.4.0 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires path >=0.5.7 && < 0.7 and the snapshot contains path-0.9.5 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - it-has < 0 # tried it-has-0.2.0.0, but its *library* requires generic-lens >=2.0.0.0 && < =2.0.0.0 and the snapshot contains generic-lens-2.2.2.0 + - iterable < 0 # tried iterable-3.0, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - ixset < 0 # tried ixset-1.1.1.2, but its *library* requires the disabled package: syb-with-class + - ixset-typed-conversions < 0 # tried ixset-typed-conversions-0.1.2.0, but its *library* requires the disabled package: zipper-extra + - javascript-extras < 0 # tried javascript-extras-0.5.0.0, but its *library* requires the disabled package: ghcjs-base-stub + - jmacro-rpc-happstack < 0 # tried jmacro-rpc-happstack-0.3.2, but its *library* requires the disabled package: jmacro-rpc + - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: jmacro-rpc + - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires Cabal >=2.4 && < 3.7 and the snapshot contains Cabal-3.10.1.0 + - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires base >=4.5 && < 4.17 and the snapshot contains base-4.18.1.0 + - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires base-compat >=0.9.0 && < 0.12 and the snapshot contains base-compat-0.13.1 + - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires lens >=4.12.3 && < 4.20 and the snapshot contains lens-5.2.3 + - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires text >=0.11.0.6 && < 1.3 and the snapshot contains text-2.0.2 + - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - json-alt < 0 # tried json-alt-1.0.0, but its *library* requires aeson >=1.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *executable* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires aeson >=1.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires lens >=4.1 && < 4.20 and the snapshot contains lens-5.2.3 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires smallcheck >=1.0 && < 1.2 and the snapshot contains smallcheck-1.2.1.1 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires text >=1.1 && < 1.4 and the snapshot contains text-2.0.2 + - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires vector >=0.9 && < 0.13 and the snapshot contains vector-0.13.1.0 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires aeson >=0.7 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires base >=4.3.1 && < 4.13 and the snapshot contains base-4.18.1.0 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires text >=0.11.2 && < 1.3 and the snapshot contains text-2.0.2 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires vector-algorithms >=0.5.4 && < 0.9 and the snapshot contains vector-algorithms-0.9.0.1 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires aeson >=0.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires base >=4.3 && < 4.15 and the snapshot contains base-4.18.1.0 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires vector >=0.7.1 && < 0.13 and the snapshot contains vector-0.13.1.0 + - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires http-client >0.5 && < 0.7 and the snapshot contains http-client-0.7.15 + - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: jni - - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: distributed-closure - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: jni - - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: distributed-closure - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: jni - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: aeson-1.5.6.0 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: async-2.2.4 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: katip-0.8.7.0 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: rollbar-hs-0.3.1.0 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: time-1.9.3 - - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: aeson-1.5.6.0 - - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: katip-0.8.7.0 - - ki < 0 # tried ki-0.2.0.1, but its *library* does not support: base-4.15.0.0 - - kleene < 0 # tried kleene-0.1, but its *library* does not support: base-4.15.0.0 - - kraken < 0 # tried kraken-0.1.0, but its *library* does not support: base-4.15.0.0 - - lambdabot-core < 0 # tried lambdabot-core-5.3.0.2, but its *library* requires the disabled package: dependent-sum - - lambdabot-irc-plugins < 0 # tried lambdabot-irc-plugins-5.3.0.2, but its *library* requires the disabled package: lambdabot-core - - language-ecmascript < 0 # tried language-ecmascript-0.19.1.0, but its *library* does not support: base-4.15.0.0 - - language-haskell-extract < 0 # tried language-haskell-extract-0.2.4, but its *library* does not support: template-haskell-2.17.0.0 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: base16-bytestring-1.0.2.0 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: formatting-7.1.3 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: lens-5.0.1 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: megaparsec-9.2.0 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: memory-0.16.0 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-0.18.3 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-client-0.18.3 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* requires the disabled package: operational - - large-hashable < 0 # tried large-hashable-0.1.0.4, but its *library* does not support: template-haskell-2.17.0.0 - - lens-accelerate < 0 # tried lens-accelerate-0.3.0.0, but its *library* does not support: lens-5.0.1 - - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* does not support: lens-5.0.1 - - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* does not support: lens-family-2.1.1 - - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* does not support: lens-family-core-2.1.0 + - kanji < 0 # tried kanji-3.5.0, but its *library* requires aeson ^>=2.0 and the snapshot contains aeson-2.1.2.1 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires aeson >=1.2 && < 1.3 and the snapshot contains aeson-2.1.2.1 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires async >=2.1 && < 2.2 and the snapshot contains async-2.2.5 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires katip >=0.5 && < 0.6 and the snapshot contains katip-0.8.8.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires rollbar-hs >=0.2 && < 0.3 and the snapshot contains rollbar-hs-0.3.1.0 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires time >=1.8 && < 1.9 and the snapshot contains time-1.12.2 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* requires aeson >=1.0 && < 1.4 and the snapshot contains aeson-2.1.2.1 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* requires katip >=0.5 && < 0.6 and the snapshot contains katip-0.8.8.0 + - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - koofr-client < 0 # tried koofr-client-1.0.0.3, but its *library* requires aeson >=0.8 && < 2 and the snapshot contains aeson-2.1.2.1 + - kraken < 0 # tried kraken-0.1.0, but its *library* requires base >=4.5 && < 4.14 and the snapshot contains base-4.18.1.0 + - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* requires aeson >=1.4.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 + - l10n < 0 # tried l10n-0.1.0.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.0.2 + - language-bash < 0 # tried language-bash-0.9.2, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - language-haskell-extract < 0 # tried language-haskell-extract-0.2.4, but its *library* requires template-haskell < 2.16 and the snapshot contains template-haskell-2.20.0.0 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires servant >=0.9 && < 0.20 and the snapshot contains servant-0.20.1 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires servant-client >=0.9 && < 0.20 and the snapshot contains servant-client-0.20 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires unix >=2.7 && < 2.8 and the snapshot contains unix-2.8.1.0 + - language-thrift < 0 # tried language-thrift-0.12.0.1, but its *library* requires ansi-wl-pprint ==0.6.* and the snapshot contains ansi-wl-pprint-1.0.2 + - large-hashable < 0 # tried large-hashable-0.1.0.4, but its *library* requires template-haskell < 2.15 and the snapshot contains template-haskell-2.20.0.0 + - lens-accelerate < 0 # tried lens-accelerate-0.3.0.0, but its *library* requires lens ==4.* and the snapshot contains lens-5.2.3 + - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* requires lens >=3 && < 5 and the snapshot contains lens-5.2.3 + - lens-family-th < 0 # tried lens-family-th-0.5.2.1, but its *library* requires template-haskell >=2.11 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - lens-process < 0 # tried lens-process-0.4.0.0, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.2.3 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires lens-family ==1.2.* and the snapshot contains lens-family-2.1.2 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires lens-family-core ==1.2.* and the snapshot contains lens-family-core-2.1.2 + - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - lenz < 0 # tried lenz-0.4.2.0, but its *library* requires the disabled package: hs-functors - - libinfluxdb < 0 # tried libinfluxdb-0.0.4, but its *library* does not support: base-4.15.0.0 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* does not support: base-4.15.0.0 + - lenz < 0 # tried lenz-0.4.2.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - libgraph < 0 # tried libgraph-1.14, but its *library* requires the disabled package: union-find + - libinfluxdb < 0 # tried libinfluxdb-0.0.4, but its *library* requires base >=4.8 && < 4.11 and the snapshot contains base-4.18.1.0 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires base >=4.13.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires bytestring ^>=0.10.10.0 and the snapshot contains bytestring-0.11.5.2 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires exceptions ==0.10.4 and the snapshot contains exceptions-0.10.7 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires monad-time ==0.3.* and the snapshot contains monad-time-0.4.0.0 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires text >=1.2.3.2 && < 1.2.5 and the snapshot contains text-2.0.2 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires time >=1.9 && < 1.10 and the snapshot contains time-1.12.2 + - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires transformers ^>=0.5.6.2 and the snapshot contains transformers-0.6.1.0 + - libmpd < 0 # tried libmpd-0.10.0.0, but its *library* requires text >=0.11 && < 2 and the snapshot contains text-2.0.2 - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg - - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg-core - - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: protolude - - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: Cabal-3.4.0.0 - - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: base-4.15.0.0 - - linear-accelerate < 0 # tried linear-accelerate-0.7.0.0, but its *library* does not support: lens-5.0.1 - - linked-list-with-iterator < 0 # tried linked-list-with-iterator-0.1.1.0, but its *library* does not support: containers-0.6.4.1 - - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* does not support: megaparsec-9.2.0 - - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires the disabled package: rest-rewrite - - list-witnesses < 0 # tried list-witnesses-0.1.3.2, but its *library* requires the disabled package: functor-products - - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log - - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log-core - - loc < 0 # tried loc-0.1.3.10, but its *library* does not support: base-4.15.0.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: aeson-1.5.6.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: o-clock-1.2.1 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: universum-1.7.2 - - logger-thread < 0 # tried logger-thread-0.1.0.2, but its *library* requires the disabled package: protolude - - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: base-4.15.0.0 - - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: prettyprinter-1.7.1 - - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* requires the disabled package: logging-effect - - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* does not support: base-4.15.0.0 - - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* does not support: prettyprinter-1.7.1 - - logging-effect-extra-file < 0 # tried logging-effect-extra-file-2.0.1, but its *library* requires the disabled package: logging-effect - - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: base-4.15.0.0 - - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: prettyprinter-1.7.1 - - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* requires the disabled package: logging-effect - - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* does not support: ghc-9.0.1 - - lsp < 0 # tried lsp-1.2.0.1, but its *library* requires the disabled package: dependent-map - - lsp < 0 # tried lsp-1.2.0.1, but its *library* requires the disabled package: lsp-types - - lsp-test < 0 # tried lsp-test-0.14.0.1, but its *library* requires the disabled package: lsp-types - - lsp-types < 0 # tried lsp-types-1.3.0.1, but its *library* requires the disabled package: dependent-sum - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: network-3.1.2.5 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-0.18.3 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-client-0.18.3 + - licensor < 0 # tried licensor-0.5.0, but its *library* requires Cabal >=3.0.1 && < 3.3 and the snapshot contains Cabal-3.10.1.0 + - licensor < 0 # tried licensor-0.5.0, but its *library* requires base >=4.13.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - linear-accelerate < 0 # tried linear-accelerate-0.7.0.0, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 + - linenoise < 0 # tried linenoise-0.3.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - linked-list-with-iterator < 0 # tried linked-list-with-iterator-0.1.1.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires megaparsec >=7.0.0 && < 9 and the snapshot contains megaparsec-9.4.1 + - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires rest-rewrite >=0.1.1 && < 0.2 and the snapshot contains rest-rewrite-0.4.2 + - list-witnesses < 0 # tried list-witnesses-0.1.4.0, but its *library* requires the disabled package: decidable + - list-witnesses < 0 # tried list-witnesses-0.1.4.0, but its *library* requires the disabled package: functor-products + - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* requires bytestring >=0.10 && < 0.11.3 and the snapshot contains bytestring-0.11.5.2 + - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires aeson ^>=1.4 and the snapshot contains aeson-2.1.2.1 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires ansi-terminal >=0.7 && < 1.0 and the snapshot contains ansi-terminal-1.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires mmorph ^>=1.1 and the snapshot contains mmorph-1.2.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires mtl ^>=2.2.1 and the snapshot contains mtl-2.3.1 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires o-clock ^>=1.1 and the snapshot contains o-clock-1.4.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires text ^>=1.2.2.0 and the snapshot contains text-2.0.2 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires transformers ^>=0.5.2 and the snapshot contains transformers-0.6.1.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires universum ^>=1.6.0 and the snapshot contains universum-1.8.2 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires vector ^>=0.12 and the snapshot contains vector-0.13.1.0 + - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* requires ghc >=8.6 && < 8.9 and the snapshot contains ghc-9.6.3 + - lrucaching < 0 # tried lrucaching-0.3.3, but its *library* requires base-compat >=0.9 && < 0.13 and the snapshot contains base-compat-0.13.1 + - lrucaching < 0 # tried lrucaching-0.3.3, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires aeson >=1.0.2.1 && < 2 and the snapshot contains aeson-2.1.2.1 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires network >=2.6.3.2 && < 3 and the snapshot contains network-3.1.4.0 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires servant >=0.11 && < 0.14 and the snapshot contains servant-0.20.1 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires servant-client >=0.11 && < 0.14 and the snapshot contains servant-client-0.20 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires text >=1.2.2.2 && < 2 and the snapshot contains text-2.0.2 + - lxd-client-config < 0 # tried lxd-client-config-0.1.0.1, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - lzma-conduit < 0 # tried lzma-conduit-1.2.3, but its *library* requires resourcet >=1.1.0 && < 1.3 and the snapshot contains resourcet-1.3.0 + - lzma-conduit < 0 # tried lzma-conduit-1.2.3, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires the disabled package: machines-io - - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-core + - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-wai - - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: refined - - makefile < 0 # tried makefile-1.1.0.0, but its *library* does not support: attoparsec-0.14.1 - - mallard < 0 # tried mallard-0.6.1.1, but its *library* does not support: megaparsec-9.2.0 - - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires the disabled package: Interpolation - - map-syntax < 0 # tried map-syntax-0.3, but its *library* does not support: base-4.15.0.0 - - markup < 0 # tried markup-4.2.0, but its *library* requires the disabled package: attoparsec-uri - - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: aeson-1.5.6.0 - - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: http-client-0.7.9 - - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: lens-5.0.1 + - mail-pool < 0 # tried mail-pool-2.2.3, but its *library* requires the disabled package: HaskellNet-SSL + - makefile < 0 # tried makefile-1.1.0.0, but its *library* requires attoparsec >=0.12 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - makefile < 0 # tried makefile-1.1.0.0, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 + - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires megaparsec >=6 && < 7 and the snapshot contains megaparsec-9.4.1 + - marvin < 0 # tried marvin-0.2.5, but its *library* requires aeson >=0.11 && < 1.3 and the snapshot contains aeson-2.1.2.1 + - marvin < 0 # tried marvin-0.2.5, but its *library* requires http-client >=0.4 && < 0.6 and the snapshot contains http-client-0.7.15 + - marvin < 0 # tried marvin-0.2.5, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 + - marvin < 0 # tried marvin-0.2.5, but its *library* requires text-icu >=0.6 && < 0.8 and the snapshot contains text-icu-0.8.0.4 - marvin < 0 # tried marvin-0.2.5, but its *library* requires the disabled package: marvin-interpolate - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: extra-1.7.10 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: formatting-7.1.3 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: http-client-0.7.9 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: optparse-applicative-0.16.1.0 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: scalpel-core-0.6.2 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: time-1.9.3 - - medea < 0 # tried medea-1.2.0, but its *library* requires the disabled package: nonempty-containers - - mega-sdist < 0 # tried mega-sdist-0.4.1.0, but its *executable* requires the disabled package: pantry - - menshen < 0 # tried menshen-0.0.3, but its *library* does not support: regex-tdfa-1.3.1.1 - - merkle-tree < 0 # tried merkle-tree-0.1.1, but its *library* requires the disabled package: protolude - - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* does not support: containers-0.6.4.1 - - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime - - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime-wai - - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *library* requires the disabled package: xml-lens - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-client-0.7.9 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-media-0.8.0.0 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-0.18.3 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-client-0.18.3 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: time-1.9.3 - - midi-music-box < 0 # tried midi-music-box-0.0.1.2, but its *executable* requires the disabled package: diagrams-postscript - - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src + - massiv-persist < 0 # tried massiv-persist-1.0.0.3, but its *library* requires the disabled package: persist + - mbox < 0 # tried mbox-0.3.4, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires extra >=1.6.14 && < 1.7 and the snapshot contains extra-1.7.14 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires formatting >=6.3.7 && < 6.4 and the snapshot contains formatting-7.2.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires http-client >=0.5.14 && < 0.6 and the snapshot contains http-client-0.7.15 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires optparse-applicative >=0.14.3.0 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires scalpel-core >=0.5.1 && < 0.6 and the snapshot contains scalpel-core-0.6.2.2 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires time >=1.8.0.2 && < 1.9 and the snapshot contains time-1.12.2 + - medea < 0 # tried medea-1.2.0, but its *library* requires aeson >=1.4.6.0 && < 2.0.0.0 and the snapshot contains aeson-2.1.2.1 + - medea < 0 # tried medea-1.2.0, but its *library* requires algebraic-graphs ^>=0.5 and the snapshot contains algebraic-graphs-0.7 + - medea < 0 # tried medea-1.2.0, but its *library* requires bytestring ^>=0.10.8.2 and the snapshot contains bytestring-0.11.5.2 + - medea < 0 # tried medea-1.2.0, but its *library* requires free ^>=5.1.3 and the snapshot contains free-5.2 + - medea < 0 # tried medea-1.2.0, but its *library* requires hashable >=1.2.7.0 && < 1.4.0.0 and the snapshot contains hashable-1.4.3.0 + - medea < 0 # tried medea-1.2.0, but its *library* requires mtl ^>=2.2.2 and the snapshot contains mtl-2.3.1 + - medea < 0 # tried medea-1.2.0, but its *library* requires text ^>=1.2.3.1 and the snapshot contains text-2.0.2 + - medea < 0 # tried medea-1.2.0, but its *library* requires vector ^>=0.12.0.3 and the snapshot contains vector-0.13.1.0 + - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - menshen < 0 # tried menshen-0.0.3, but its *library* requires regex-tdfa >=1.2.3.1 && < 1.3 and the snapshot contains regex-tdfa-1.3.2.2 + - menshen < 0 # tried menshen-0.0.3, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *executable* requires optparse-applicative >=0.13 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 + - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires ansi-terminal >=0.6.2.3 && < 0.12 and the snapshot contains ansi-terminal-1.0 + - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - microlens-process < 0 # tried microlens-process-0.2.0.2, but its *library* requires microlens >=0.3 && < 0.4.13 and the snapshot contains microlens-0.4.13.1 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires http-api-data >=0.3 && < 0.5 and the snapshot contains http-api-data-0.5.1 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires servant >=0.13 && < 0.16 and the snapshot contains servant-0.20.1 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires servant-client >=0.13 && < 0.16 and the snapshot contains servant-client-0.20 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires lens >=4.4 && < 4.20 and the snapshot contains lens-5.2.3 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires network >=2.4 && < 3.0 and the snapshot contains network-3.1.4.0 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires resource-pool >=0.2.3.2 && < 0.3 and the snapshot contains resource-pool-0.4.0.0 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires semigroups >=0.16.2.2 && < 0.19 and the snapshot contains semigroups-0.20 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src-th-mode - - minio-hs < 0 # tried minio-hs-1.5.3, but its *library* requires the disabled package: protolude - - misfortune < 0 # tried misfortune-0.1.1.2, but its *library* requires the disabled package: knob - - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *executable* requires the disabled package: pipes-text - - mole < 0 # tried mole-0.0.7, but its *executable* does not support: base-4.15.0.0 - - mole < 0 # tried mole-0.0.7, but its *executable* requires the disabled package: snap-server - - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: base-4.15.0.0 - - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: mwc-random-0.15.0.2 - - monad-metrics < 0 # tried monad-metrics-0.2.2.0, but its *library* requires the disabled package: ekg-core - - monad-mock < 0 # tried monad-mock-0.2.0.0, but its *library* does not support: template-haskell-2.17.0.0 + - minio-hs < 0 # tried minio-hs-1.7.0, but its *library* requires the disabled package: connection + - model < 0 # tried model-0.5, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *library* requires the disabled package: regex-tdfa-text + - moffy-samples-gtk4 < 0 # tried moffy-samples-gtk4-0.1.0.0, but its *executable* requires the disabled package: moffy-samples-gtk4-run + - mole < 0 # tried mole-0.0.7, but its *executable* requires base >=4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *executable* requires transformers ^>=0.5.6 and the snapshot contains transformers-0.6.1.0 + - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires base >=4.15 && < 4.18 and the snapshot contains base-4.18.1.0 + - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires brick >=1.0 && < 2.0 and the snapshot contains brick-2.1.1 + - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires free >=5.0.2 && < 5.2 and the snapshot contains free-5.2 + - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires mtl ^>=2.2.2 and the snapshot contains mtl-2.3.1 + - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires vty ^>=5.38 and the snapshot contains vty-6.1 + - monad-journal < 0 # tried monad-journal-0.8.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - monad-journal < 0 # tried monad-journal-0.8.1, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - monad-logger-prefix < 0 # tried monad-logger-prefix-0.1.12, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - monad-logger-prefix < 0 # tried monad-logger-prefix-0.1.12, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 + - monad-logger-prefix < 0 # tried monad-logger-prefix-0.1.12, but its *library* requires transformers >=0.4.0 && < 0.5.7 and the snapshot contains transformers-0.6.1.0 + - monad-mock < 0 # tried monad-mock-0.2.0.0, but its *library* requires template-haskell >=2.10.0.0 && < 2.13 and the snapshot contains template-haskell-2.20.0.0 + - monad-products < 0 # tried monad-products-4.0.1, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.0.1 + - monad-skeleton < 0 # tried monad-skeleton-0.2, but its *library* requires base >=4.9 && < 4.17 and the snapshot contains base-4.18.1.0 - monad-unlift-ref < 0 # tried monad-unlift-ref-0.2.1, but its *library* requires the disabled package: monad-unlift - - monoidal-containers < 0 # tried monoidal-containers-0.6.1.0, but its *library* requires the disabled package: newtype - - msgpack < 0 # tried msgpack-1.0.1.0, but its *library* does not support: base-4.15.0.0 - - msgpack-aeson < 0 # tried msgpack-aeson-0.1.0.0, but its *library* requires the disabled package: msgpack - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: blaze-builder-0.4.2.2 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: filepath-1.4.2.1 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: msgpack-1.0.1.0 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* does not support: template-haskell-2.17.0.0 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires the disabled package: peggy - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires the disabled package: shakespeare-text - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: base-4.15.0.0 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: binary-conduit-1.3.1 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-1.3.4.2 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-extra-1.3.5 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: network-3.1.2.5 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: random-1.2.1 - - multistate < 0 # tried multistate-0.8.0.3, but its *library* does not support: base-4.15.0.0 + - monadic-arrays < 0 # tried monadic-arrays-0.2.2, but its *library* requires transformers >=0.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - morpheus-graphql < 0 # tried morpheus-graphql-0.27.3, but its *library* requires the disabled package: morpheus-graphql-code-gen + - morpheus-graphql-code-gen < 0 # tried morpheus-graphql-code-gen-0.27.3, but its *executable* requires optparse-applicative >=0.12.0 && < 0.18.0 and the snapshot contains optparse-applicative-0.18.1.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires blaze-builder ==0.3.* and the snapshot contains blaze-builder-0.4.2.3 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires filepath >=1.1 && < 1.4 and the snapshot contains filepath-1.4.100.4 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires msgpack ==0.7.* and the snapshot contains msgpack-1.0.1.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires shakespeare-text ==1.0.* and the snapshot contains shakespeare-text-1.1.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires template-haskell >=2.5 && < 2.9 and the snapshot contains template-haskell-2.20.0.0 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires base >=4.8 && < 4.13 and the snapshot contains base-4.18.1.0 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires binary-conduit >=1.2.3 && < 1.3 and the snapshot contains binary-conduit-1.3.1 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires conduit >=1.2.3.1 && < 1.3 and the snapshot contains conduit-1.3.5 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires conduit-extra >=1.1.3.4 && < 1.3 and the snapshot contains conduit-extra-1.3.6 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires network >=2.6 && < 2.9 || >=3.0 && < 3.1 and the snapshot contains network-3.1.4.0 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires random >=1.1 && < 1.2 and the snapshot contains random-1.2.1.1 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - mstate < 0 # tried mstate-0.2.10, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - mwc-random-accelerate < 0 # tried mwc-random-accelerate-0.2.0.0, but its *library* requires the disabled package: accelerate - - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* does not support: memory-0.16.0 - - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* requires the disabled package: word24 - - mysql-haskell-nem < 0 # tried mysql-haskell-nem-0.1.0.0, but its *library* requires the disabled package: mysql-haskell - - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: mysql-haskell - - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: tcp-streams-openssl - - n-tuple < 0 # tried n-tuple-0.0.2.0, but its *library* does not support: base-4.15.0.0 - - n-tuple < 0 # tried n-tuple-0.0.2.0, but its *library* does not support: singletons-3.0.1 + - mwc-random-monad < 0 # tried mwc-random-monad-0.7.3.1, but its *library* requires the disabled package: monad-primitive + - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires mysql-haskell >=0.8.3 && < 0.8.5 and the snapshot contains mysql-haskell-1.1.3 + - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: tcp-streams - n2o-web < 0 # tried n2o-web-0.11.2, but its *library* requires the disabled package: n2o-protocols - - nakadi-client < 0 # tried nakadi-client-0.7.0.0, but its *library* requires the disabled package: async-timer - - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* does not support: base-4.15.0.0 - - net-mqtt-lens < 0 # tried net-mqtt-lens-0.1.1.0, but its *library* requires the disabled package: net-mqtt - - netrc < 0 # tried netrc-0.2.0.0, but its *library* does not support: base-4.15.0.0 + - nakadi-client < 0 # tried nakadi-client-0.7.0.0, but its *library* requires resourcet >=1.2.0 && < 1.3 and the snapshot contains resourcet-1.3.0 + - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* requires base >=4.10 && < 4.13 and the snapshot contains base-4.18.1.0 + - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: hexstring - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: network-attoparsec - - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* does not support: network-3.1.2.5 - - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires the disabled package: data-default-instances-base - - network-transport-inmemory < 0 # tried network-transport-inmemory-0.5.2, but its *library* does not support: containers-0.6.4.1 - - newtype < 0 # tried newtype-0.2.2.0, but its *library* does not support: base-4.15.0.0 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.1, but its *library* requires the disabled package: servant-auth-server - - numhask-prelude < 0 # tried numhask-prelude-0.5.0, but its *library* does not support: numhask-0.8.1.0 - - nvim-hs-ghcid < 0 # tried nvim-hs-ghcid-2.0.0.0, but its *library* requires the disabled package: nvim-hs-contrib - - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: protolude - - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: Cabal-3.4.0.0 - - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: base-4.15.0.0 - - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: template-haskell-2.17.0.0 - - operational-class < 0 # tried operational-class-0.3.0.0, but its *library* requires the disabled package: operational - - opml-conduit < 0 # tried opml-conduit-0.9.0.0, but its *library* requires the disabled package: refined - - oset < 0 # tried oset-0.4.0.1, but its *library* does not support: base-4.15.0.0 - - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* does not support: Cabal-3.4.0.0 - - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: groups-0.5.3 - - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: protolude-0.3.0 - - pairing < 0 # tried pairing-1.1.0, but its *library* requires the disabled package: elliptic-curve - - pango < 0 # tried pango-0.13.8.1, but its *library* does not support: Cabal-3.4.0.0 - - pantry < 0 # tried pantry-0.5.3, but its *library* requires the disabled package: hackage-security - - papillon < 0 # tried papillon-0.1.1.1, but its *library* does not support: template-haskell-2.17.0.0 - - paripari < 0 # tried paripari-0.7.0.0, but its *library* does not support: parser-combinators-1.3.0 - - path-text-utf8 < 0 # tried path-text-utf8-0.0.1.8, but its *library* does not support: path-0.9.1 - - pcf-font-embed < 0 # tried pcf-font-embed-0.1.2.0, but its *library* requires the disabled package: pcf-font - - pedersen-commitment < 0 # tried pedersen-commitment-0.2.0, but its *library* requires the disabled package: protolude - - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* does not support: base-4.15.0.0 - - persistable-record < 0 # tried persistable-record-0.6.0.5, but its *library* requires the disabled package: th-data-compat - - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: persistable-record - - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: relational-query-HDBC - - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* does not support: tls-1.5.5 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: random-1.2.1 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: scotty-0.12 + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires network < 3 and the snapshot contains network-3.1.4.0 + - next-ref < 0 # tried next-ref-0.1.0.2, but its *library* requires stm >=2.2 && < 2.5 and the snapshot contains stm-2.5.1.0 + - nonemptymap < 0 # tried nonemptymap-0.0.6.0, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.0.1 + - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires text >=1.1.1 && < 1.3 and the snapshot contains text-2.0.2 + - nri-env-parser < 0 # tried nri-env-parser-0.1.0.8, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-env-parser < 0 # tried nri-env-parser-0.1.0.8, but its *library* requires the disabled package: nri-prelude + - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires the disabled package: nri-prelude + - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires hw-kafka-client >=4.0.3 && < 5.0 and the snapshot contains hw-kafka-client-5.3.0 + - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires the disabled package: nri-prelude + - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires unix >=2.7.2.2 && < 2.8.0.0 and the snapshot contains unix-2.8.1.0 + - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires the disabled package: nri-prelude + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires resource-pool >=0.2.0.0 && < 0.3 and the snapshot contains resource-pool-0.4.0.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires resourcet >=1.2.0 && < 1.3 and the snapshot contains resourcet-1.3.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires template-haskell >=2.15.0.0 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires the disabled package: nri-prelude + - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires resourcet >=1.2.0 && < 1.3 and the snapshot contains resourcet-1.3.0 + - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires the disabled package: nri-prelude + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires servant >=0.16.2 && < 0.19 and the snapshot contains servant-0.20.1 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires servant-server >=0.16.2 && < 0.19 and the snapshot contains servant-server-0.20 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires the disabled package: nri-prelude + - numhask-prelude < 0 # tried numhask-prelude-0.5.0, but its *library* requires numhask >=0.3 && < 0.6 and the snapshot contains numhask-0.11.1.0 + - ochintin-daicho < 0 # tried ochintin-daicho-0.3.4.2, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - oeis < 0 # tried oeis-0.3.10, but its *library* requires HTTP >=4000.2 && < 4000.4 and the snapshot contains HTTP-4000.4.1 + - oset < 0 # tried oset-0.4.0.1, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *executable* requires optparse-applicative >=0.14 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* requires Cabal >=3.2 && < 3.3 and the snapshot contains Cabal-3.10.1.0 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires MonadRandom >=0.5.1 && < 0.6 and the snapshot contains MonadRandom-0.6 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires groups >=0.4.1 && < 0.5 and the snapshot contains groups-0.5.3 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.3 + - pandoc-csv2table < 0 # tried pandoc-csv2table-1.0.9, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires hegg >=0.3.0 && < 0.4 and the snapshot contains hegg-0.5.0.0 + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires monads-tf ==0.1.* and the snapshot contains monads-tf-0.3.0.1 + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires template-haskell ==2.15.* and the snapshot contains template-haskell-2.20.0.0 + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires transformers ==0.5.* and the snapshot contains transformers-0.6.1.0 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires parser-combinators >=1.0 && < 1.3 and the snapshot contains parser-combinators-1.3.0 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 + - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires bytestring >=0.10 && < 0.11.4 and the snapshot contains bytestring-0.11.5.2 + - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires memory >=0.16 && < 0.18 and the snapshot contains memory-0.18.0 + - path-formatting < 0 # tried path-formatting-0.1.0.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires the disabled package: file-io + - pattern-arrows < 0 # tried pattern-arrows-0.0.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - peggy < 0 # tried peggy-0.3.2, but its *library* requires ListLike ==3.1.* and the snapshot contains ListLike-4.7.8.2 + - peggy < 0 # tried peggy-0.3.2, but its *library* requires hashtables ==1.0.* and the snapshot contains hashtables-1.3.1 + - peggy < 0 # tried peggy-0.3.2, but its *library* requires monad-control ==0.3.* and the snapshot contains monad-control-1.0.3.1 + - peggy < 0 # tried peggy-0.3.2, but its *library* requires template-haskell >=2.5 && < 2.9 and the snapshot contains template-haskell-2.20.0.0 + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires MonadRandom >=0.5.1.1 && < 0.6 and the snapshot contains MonadRandom-0.6 + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires primitive >=0.6.4 && < 0.8 and the snapshot contains primitive-0.8.0.0 + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires vector >=0.12.0 && < 0.13 and the snapshot contains vector-0.13.1.0 + - persist < 0 # tried persist-0.1.1.5, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - persistent-mtl < 0 # tried persistent-mtl-0.5.0.1, but its *library* requires the disabled package: unliftio-pool + - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* requires mysql-haskell >=0.8.0.0 && < 1.0 and the snapshot contains mysql-haskell-1.1.3 + - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* requires tls >=1.3.5 && < 1.5 and the snapshot contains tls-1.8.0 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires postgresql-simple >=0.6 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires scotty >=0.11.0 && < 0.12 and the snapshot contains scotty-0.20.1 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires text >=1.1.0 && < 2 and the snapshot contains text-2.0.2 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - picedit < 0 # tried picedit-0.2.3.0, but its *executable* requires the disabled package: cli - - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: JuicyPixels-3.3.6 - - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: hmatrix-0.20.2 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: Cabal-3.4.0.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: aeson-1.5.6.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: base-4.15.0.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: binary-orphans-1.0.2 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: containers-0.6.4.1 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: hashable-1.3.5.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: shake-0.19.6 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: yaml-0.11.7.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: Cabal-3.4.0.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base-4.15.0.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: containers-0.6.4.1 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: hashable-1.3.5.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: http-client-0.7.9 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: shake-0.19.6 - - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: http-client-0.7.9 - - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* does not support: lens-5.0.1 + - picedit < 0 # tried picedit-0.2.3.0, but its *library* requires JuicyPixels >=3.2.8 && < 3.3 and the snapshot contains JuicyPixels-3.3.8 + - picedit < 0 # tried picedit-0.2.3.0, but its *library* requires hmatrix >=0.17.0.2 && < 0.19 and the snapshot contains hmatrix-0.20.2 + - picedit < 0 # tried picedit-0.2.3.0, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 + - picosat < 0 # tried picosat-0.1.6, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires Cabal ==2.2.* and the snapshot contains Cabal-3.10.1.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires aeson >=1.3 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires base ==4.11.* and the snapshot contains base-4.18.1.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires binary-orphans ==0.1.* and the snapshot contains binary-orphans-1.0.4.1 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires shake ==0.16.* and the snapshot contains shake-0.19.7 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires text ==1.2.* and the snapshot contains text-2.0.2 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires transformers ==0.5.* and the snapshot contains transformers-0.6.1.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* requires yaml >=0.8 && < 0.11 and the snapshot contains yaml-0.11.11.2 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires Cabal ==2.2.* and the snapshot contains Cabal-3.10.1.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires base ==4.11.* and the snapshot contains base-4.18.1.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires base64-bytestring ==1.0.* and the snapshot contains base64-bytestring-1.2.1.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires http-client ==0.5.* and the snapshot contains http-client-0.7.15 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires shake >=0.16.4 && < 0.17 and the snapshot contains shake-0.19.7 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires unix ==2.7.* and the snapshot contains unix-2.8.1.0 + - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires bytestring >=0.10.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires vector >=0.10.9 && < 0.13 and the snapshot contains vector-0.13.1.0 + - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires the disabled package: pipes-category + - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: network-simple-tls - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: pipes-network - pixelated-avatar-generator < 0 # tried pixelated-avatar-generator-0.1.3, but its *executable* requires the disabled package: cli - - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: cairo - - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: pango - - pointful < 0 # tried pointful-1.1.0.0, but its *library* does not support: base-4.15.0.0 - - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires the disabled package: haskell-src-exts-simple - - polysemy-zoo < 0 # tried polysemy-zoo-0.7.0.2, but its *library* does not support: constraints-0.13.2 - - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: base-4.15.0.0 - - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: ghc-prim-0.7.0 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: base-4.15.0.0 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: retry-0.9.0.0 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: swagger2-2.7 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* requires the disabled package: hasql-dynamic-statements - - prairie < 0 # tried prairie-0.0.1.0, but its *library* does not support: template-haskell-2.17.0.0 - - pred-set < 0 # tried pred-set-0.0.1, but its *library* requires the disabled package: HSet - - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: pred-set + - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires base >=4.7 && < 4.13 || ^>=4.13 and the snapshot contains base-4.18.1.0 + - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires haskell-src-exts-simple >=1.18 && < 1.21 || ^>=1.21 and the snapshot contains haskell-src-exts-simple-1.23.0.0 + - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires mtl >=2 && < 2.2 || ^>=2.2 and the snapshot contains mtl-2.3.1 + - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires transformers >=0.2 && < 0.5 || ^>=0.5 and the snapshot contains transformers-0.6.1.0 + - polysemy-extra < 0 # tried polysemy-extra-0.2.1.0, but its *library* requires polysemy >=1.4 && < 1.8 and the snapshot contains polysemy-1.9.1.3 + - polysemy-fskvstore < 0 # tried polysemy-fskvstore-0.1.2.0, but its *library* requires polysemy >=1.4.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 + - polysemy-kvstore < 0 # tried polysemy-kvstore-0.1.3.0, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 + - polysemy-kvstore-jsonfile < 0 # tried polysemy-kvstore-jsonfile-0.1.1.0, but its *library* requires aeson >=1.0 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - polysemy-kvstore-jsonfile < 0 # tried polysemy-kvstore-jsonfile-0.1.1.0, but its *library* requires base >=4.7 && < 4.16 and the snapshot contains base-4.18.1.0 + - polysemy-kvstore-jsonfile < 0 # tried polysemy-kvstore-jsonfile-0.1.1.0, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 + - polysemy-methodology < 0 # tried polysemy-methodology-0.2.2.0, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 + - polysemy-methodology < 0 # tried polysemy-methodology-0.2.2.0, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 + - polysemy-path < 0 # tried polysemy-path-0.2.1.0, but its *library* requires base >=4.7 && < 4.16 and the snapshot contains base-4.18.1.0 + - polysemy-path < 0 # tried polysemy-path-0.2.1.0, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 + - polysemy-several < 0 # tried polysemy-several-0.1.1.0, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 + - polysemy-several < 0 # tried polysemy-several-0.1.1.0, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 + - polysemy-socket < 0 # tried polysemy-socket-0.0.2.0, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 + - polysemy-uncontrolled < 0 # tried polysemy-uncontrolled-0.1.1.1, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 + - polysemy-uncontrolled < 0 # tried polysemy-uncontrolled-0.1.1.1, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 + - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 + - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 + - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires turtle >=1.0 && < 1.6 and the snapshot contains turtle-1.6.2 + - polysemy-vinyl < 0 # tried polysemy-vinyl-0.1.5.0, but its *library* requires polysemy >=1.3 && < 1.7 and the snapshot contains polysemy-1.9.1.3 + - polysemy-vinyl < 0 # tried polysemy-vinyl-0.1.5.0, but its *library* requires vinyl >=0.10.0 && < 0.14 and the snapshot contains vinyl-0.14.3 + - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires ghc-prim >=0.5.2 && < 0.10 and the snapshot contains ghc-prim-0.10.0 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* requires base >=4.6.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* requires containers >=0.5.9.2 && < =0.6.4.1 and the snapshot contains containers-0.6.7 + - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* requires ghc-prim >=0.4 && < 0.7 and the snapshot contains ghc-prim-0.10.0 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires HTTP >=4000.3.7 && < 4000.4 and the snapshot contains HTTP-4000.4.1 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires aeson >=1.4.7 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires base >=4.9 && < 4.16 and the snapshot contains base-4.18.1.0 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires hasql >=1.4 && < 1.5 and the snapshot contains hasql-1.6.3.4 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires hasql-dynamic-statements ==0.3.1 and the snapshot contains hasql-dynamic-statements-0.3.1.2 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires hasql-pool >=0.5 && < 0.6 and the snapshot contains hasql-pool-0.10 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires jose >=0.8.1 && < 0.9 and the snapshot contains jose-0.10.0.1 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires lens >=4.14 && < 5.1 and the snapshot contains lens-5.2.3 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires lens-aeson >=1.0.1 && < 1.2 and the snapshot contains lens-aeson-1.2.3 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires optparse-applicative >=0.13 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires swagger2 >=2.4 && < 2.7 and the snapshot contains swagger2-2.8.7 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires time >=1.6 && < 1.11 and the snapshot contains time-1.12.2 + - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - prairie < 0 # tried prairie-0.0.2.0, but its *library* requires template-haskell >=2.15 && < 2.20 and the snapshot contains template-haskell-2.20.0.0 - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: tries - - prim-uniq < 0 # tried prim-uniq-0.2, but its *library* requires the disabled package: dependent-sum - - product-isomorphic < 0 # tried product-isomorphic-0.0.3.3, but its *library* requires the disabled package: th-data-compat - - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: base-4.15.0.0 - - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: ghc-prim-0.7.0 - - publicsuffix < 0 # tried publicsuffix-0.20200526, but its *library* does not support: base-4.15.0.0 - - pure-io < 0 # tried pure-io-0.2.1, but its *library* does not support: base-4.15.0.0 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* does not support: optparse-applicative-0.16.1.0 - - questioner < 0 # tried questioner-0.1.1.0, but its *library* does not support: ansi-terminal-0.11.1 + - pretty-diff < 0 # tried pretty-diff-0.4.0.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires containers >=0.5.6 && < 0.6 and the snapshot contains containers-0.6.7 + - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires lens >=4.10 && < 4.16 and the snapshot contains lens-5.2.3 + - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires transformers >=0.4.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - profiterole < 0 # tried profiterole-0.1, but its *executable* requires the disabled package: ghc-prof + - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires the disabled package: ghc-prof + - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - proto-lens-arbitrary < 0 # tried proto-lens-arbitrary-0.1.2.11, but its *library* requires base >=4.10 && < 4.17 and the snapshot contains base-4.18.1.0 + - proto-lens-optparse < 0 # tried proto-lens-optparse-0.1.1.10, but its *library* requires optparse-applicative >=0.13 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - proto-lens-protobuf-types < 0 # tried proto-lens-protobuf-types-0.7.1.2, but its *library* requires base >=4.10 && < 4.17 and the snapshot contains base-4.18.1.0 + - proto-lens-protoc < 0 # tried proto-lens-protoc-0.7.1.1, but its *executable* requires ghc >=8.2 && < 9.3 and the snapshot contains ghc-9.6.3 + - proto-lens-protoc < 0 # tried proto-lens-protoc-0.7.1.1, but its *library* requires base >=4.9 && < 4.17 and the snapshot contains base-4.18.1.0 + - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.6, but its *library* requires Cabal >=2.0 && < 3.7 and the snapshot contains Cabal-3.10.1.0 + - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.6, but its *library* requires base >=4.10 && < 4.17 and the snapshot contains base-4.18.1.0 + - protocol-buffers-descriptor < 0 # tried protocol-buffers-descriptor-2.4.17, but its *library* requires the disabled package: protocol-buffers + - publicsuffix < 0 # tried publicsuffix-0.20200526, but its *library* requires base >=4 && < 4.15 and the snapshot contains base-4.18.1.0 + - pure-io < 0 # tried pure-io-0.2.1, but its *library* requires base >=4.5 && < 4.11 and the snapshot contains base-4.18.1.0 + - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* requires optparse-applicative >=0.14.2.0 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 + - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *library* requires bytestring >=0.10.0.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *library* requires the disabled package: cipher-aes128 + - questioner < 0 # tried questioner-0.1.1.0, but its *library* requires ansi-terminal >=0.6 && < 0.7 and the snapshot contains ansi-terminal-1.0 - questioner < 0 # tried questioner-0.1.1.0, but its *library* requires the disabled package: readline - - quickcheck-arbitrary-template < 0 # tried quickcheck-arbitrary-template-0.2.1.1, but its *library* does not support: template-haskell-2.17.0.0 - - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.5, but its *library* requires the disabled package: unfoldable-restricted - - quickcheck-state-machine < 0 # tried quickcheck-state-machine-0.7.1, but its *library* requires the disabled package: markov-chain-usage-model - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: aeson-1.5.6.0 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: connection-0.3.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: constraints-0.13.2 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-api-data-0.4.3 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-client-0.7.9 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: lens-5.0.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: req-3.9.2 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires the disabled package: extensible - - ranged-list < 0 # tried ranged-list-0.1.0.0, but its *library* requires the disabled package: typecheck-plugin-nat-simple - - rank-product < 0 # tried rank-product-0.2.2.0, but its *library* requires the disabled package: random-fu - - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry - - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry-combinatorial - - redis-io < 0 # tried redis-io-1.1.0, but its *library* requires the disabled package: operational - - redis-resp < 0 # tried redis-resp-1.0.0, but its *library* requires the disabled package: operational - - refined < 0 # tried refined-0.6.2, but its *library* does not support: base-4.15.0.0 - - refined < 0 # tried refined-0.6.2, but its *library* does not support: template-haskell-2.17.0.0 - - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsx2hs - - regex-applicative-text < 0 # tried regex-applicative-text-0.1.0.1, but its *library* does not support: base-4.15.0.0 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-base-0.94.0.2 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-pcre-builtin-0.95.2.3.8.44 - - regex-tdfa-text < 0 # tried regex-tdfa-text-1.0.0.3, but its *library* does not support: regex-base-0.94.0.2 - - registry < 0 # tried registry-0.2.1.0, but its *library* requires the disabled package: protolude - - relapse < 0 # tried relapse-1.0.0.0, but its *library* does not support: attoparsec-0.14.1 - - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: persistable-record - - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: product-isomorphic - - relational-query-HDBC < 0 # tried relational-query-HDBC-0.7.2.0, but its *library* requires the disabled package: th-data-compat - - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: persistable-record - - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: product-isomorphic - - relational-record < 0 # tried relational-record-0.2.2.0, but its *library* requires the disabled package: relational-query-HDBC - - relational-schemas < 0 # tried relational-schemas-0.1.8.0, but its *library* requires the disabled package: relational-query - - repa-algorithms < 0 # tried repa-algorithms-3.4.1.3, but its *library* does not support: base-4.15.0.0 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* does not support: aeson-1.5.6.0 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: base-4.15.0.0 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: req-3.9.2 - - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: http-client-0.7.9 - - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: http-types-0.12.3 - - rest-client < 0 # tried rest-client-0.5.2.3, but its *library* does not support: resourcet-1.2.4.3 - - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: aeson-1.5.6.0 - - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: base-4.15.0.0 - - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: base-compat-0.11.2 - - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: errors-2.3.0 - - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: multipart-0.2.1 - - rest-core < 0 # tried rest-core-0.39.0.2, but its *library* does not support: random-1.2.1 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: Cabal-3.4.0.0 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: aeson-1.5.6.0 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: base-4.15.0.0 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: base-compat-0.11.2 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: hashable-1.3.5.0 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: haskell-src-exts-1.23.1 - - rest-gen < 0 # tried rest-gen-0.20.0.3, but its *library* does not support: semigroups-0.19.2 - - rest-happstack < 0 # tried rest-happstack-0.3.1.1, but its *library* does not support: containers-0.6.4.1 - - rest-happstack < 0 # tried rest-happstack-0.3.1.1, but its *library* does not support: happstack-server-7.7.1.1 - - rest-snap < 0 # tried rest-snap-0.3.0.0, but its *library* does not support: base-compat-0.11.2 - - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: aeson-1.5.6.0 - - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: base-4.15.0.0 - - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: containers-0.6.4.1 - - rest-stringmap < 0 # tried rest-stringmap-0.2.0.7, but its *library* does not support: hashable-1.3.5.0 - - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: aeson-1.5.6.0 - - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: base-4.15.0.0 - - rest-types < 0 # tried rest-types-1.14.1.2, but its *library* does not support: base-compat-0.11.2 - - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: base-compat-0.11.2 - - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: containers-0.6.4.1 - - rest-wai < 0 # tried rest-wai-0.2.0.1, but its *library* does not support: http-types-0.12.3 - - rethinkdb-client-driver < 0 # tried rethinkdb-client-driver-0.0.25, but its *library* does not support: base-4.15.0.0 - - rhine-gloss < 0 # tried rhine-gloss-0.7.0, but its *library* requires the disabled package: rhine - - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: attoparsec-0.14.1 - - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: network-3.1.2.5 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: aeson-1.5.6.0 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: http-client-0.7.9 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: network-3.1.2.5 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: time-1.9.3 - - rss-conduit < 0 # tried rss-conduit-0.6.0.1, but its *library* requires the disabled package: atom-conduit - - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* does not support: singletons-3.0.1 + - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *executable* requires ansi-wl-pprint >=0.6 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *library* requires ttc >=1.1 && < 1.3 and the snapshot contains ttc-1.4.0.0 + - quickbench < 0 # tried quickbench-1.0.1, but its *library* requires the disabled package: docopt + - quickcheck-arbitrary-template < 0 # tried quickcheck-arbitrary-template-0.2.1.1, but its *library* requires template-haskell >=2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.6, but its *library* requires the disabled package: unfoldable-restricted + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires aeson >=1.0.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires connection >=0.2.7 && < 0.3 and the snapshot contains connection-0.3.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires constraints >=0.9.1 && < 0.11 and the snapshot contains constraints-0.13.4 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires extensible >=0.4.7.2 && < 0.4.11 and the snapshot contains extensible-0.9 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires http-api-data >=0.3.5 && < 0.3.9 and the snapshot contains http-api-data-0.5.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires http-client >=0.5.5.0 && < 0.6 and the snapshot contains http-client-0.7.15 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires lens >=4.15.3 && < 5.0 and the snapshot contains lens-5.2.3 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires req >=0.3.0 && < 1.3.0 and the snapshot contains req-3.13.1 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 + - random-source < 0 # tried random-source-0.3.0.13, but its *library* requires base >=4 && < 4.16 and the snapshot contains base-4.18.1.0 + - random-source < 0 # tried random-source-0.3.0.13, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - rdf < 0 # tried rdf-0.1.0.7, but its *library* requires bytestring >=0.10 && < 0.11.5 and the snapshot contains bytestring-0.11.5.2 + - reanimate < 0 # tried reanimate-1.1.6.0, but its *library* requires aeson >=1.3.0.0 && < 2 and the snapshot contains aeson-2.1.2.1 + - reanimate < 0 # tried reanimate-1.1.6.0, but its *library* requires the disabled package: reanimate-svg + - rec-smallarray < 0 # tried rec-smallarray-0.1.0.0, but its *library* requires base >=4.12 && < =4.17 and the snapshot contains base-4.18.1.0 + - rec-smallarray < 0 # tried rec-smallarray-0.1.0.0, but its *library* requires primitive >=0.6.4 && < 0.8 and the snapshot contains primitive-0.8.0.0 + - record-dot-preprocessor < 0 # tried record-dot-preprocessor-0.2.16, but its *library* requires ghc >=8.6 && < 9.5 and the snapshot contains ghc-9.6.3 + - redis-io < 0 # tried redis-io-1.1.0, but its *library* requires the disabled package: tinylog + - reform < 0 # tried reform-0.2.7.5, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - reform-blaze < 0 # tried reform-blaze-0.2.4.4, but its *library* requires the disabled package: reform + - reform-hamlet < 0 # tried reform-hamlet-0.0.5.3, but its *library* requires shakespeare >=2.0 && < 2.1 and the snapshot contains shakespeare-2.1.0.1 + - reform-hamlet < 0 # tried reform-hamlet-0.0.5.3, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - reform-happstack < 0 # tried reform-happstack-0.2.5.6, but its *library* requires the disabled package: reform + - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsp + - regex-applicative-text < 0 # tried regex-applicative-text-0.1.0.1, but its *library* requires base >=4.3 && < 4.18 and the snapshot contains base-4.18.1.0 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires regex-base ==0.93.* and the snapshot contains regex-base-0.94.0.2 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires regex-pcre-builtin ==0.94.* and the snapshot contains regex-pcre-builtin-0.95.2.3.8.44 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - regex-tdfa-text < 0 # tried regex-tdfa-text-1.0.0.3, but its *library* requires regex-base < 0.94 and the snapshot contains regex-base-0.94.0.2 + - registry < 0 # tried registry-0.6.1.0, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 + - registry < 0 # tried registry-0.6.1.0, but its *library* requires semigroupoids >=5.0 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 + - registry-aeson < 0 # tried registry-aeson-0.3.0.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 + - registry-hedgehog < 0 # tried registry-hedgehog-0.8.1.0, but its *library* requires the disabled package: registry + - registry-hedgehog-aeson < 0 # tried registry-hedgehog-aeson-0.3.0.0, but its *library* requires tasty-discover >=2 && < 5 and the snapshot contains tasty-discover-5.0.0 + - registry-hedgehog-aeson < 0 # tried registry-hedgehog-aeson-0.3.0.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 + - registry-options < 0 # tried registry-options-0.2.0.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 + - rel8 < 0 # tried rel8-1.4.1.0, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 and the snapshot contains base-4.18.1.0 + - rel8 < 0 # tried rel8-1.4.1.0, but its *library* requires opaleye ^>=0.9.6.1 and the snapshot contains opaleye-0.10.2.0 + - reorder-expression < 0 # tried reorder-expression-0.1.0.0, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 + - repa < 0 # tried repa-3.4.1.5, but its *library* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 + - repa-algorithms < 0 # tried repa-algorithms-3.4.1.5, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - repa-io < 0 # tried repa-io-3.4.1.2, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* requires req >=2.0.0 && < 2.1.0 and the snapshot contains req-3.13.1 + - require < 0 # tried require-0.4.11, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - require < 0 # tried require-0.4.11, but its *library* requires text >=1.2.3.0 && < 2 and the snapshot contains text-2.0.2 + - rethinkdb-client-driver < 0 # tried rethinkdb-client-driver-0.0.25, but its *library* requires base < 4.15 and the snapshot contains base-4.18.1.0 + - rev-state < 0 # tried rev-state-0.1.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - rhine < 0 # tried rhine-1.1, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - rhine < 0 # tried rhine-1.1, but its *library* requires the disabled package: dunai + - rhine-gloss < 0 # tried rhine-gloss-1.1, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - rhine-gloss < 0 # tried rhine-gloss-1.1, but its *library* requires the disabled package: dunai + - riak < 0 # tried riak-1.2.0.0, but its *library* requires aeson >=0.8 && < 1.5.7 and the snapshot contains aeson-2.1.2.1 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires attoparsec >=0.12.1.6 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires network >=3.0 && < 3.1 and the snapshot contains network-3.1.4.0 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires resource-pool ==0.2.* and the snapshot contains resource-pool-0.4.0.0 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires time >=1.4.2 && < 1.10 and the snapshot contains time-1.12.2 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - riak < 0 # tried riak-1.2.0.0, but its *library* requires vector >=0.10.12.3 && < 0.13 and the snapshot contains vector-0.13.1.0 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires network >=2.6 && < 2.8 and the snapshot contains network-3.1.4.0 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 + - safe-exceptions-checked < 0 # tried safe-exceptions-checked-0.1.0, but its *library* requires transformers >=0.2.0.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires singletons >=2.5 && < 2.8 and the snapshot contains singletons-3.0.2 + - salak < 0 # tried salak-0.3.6, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - salak < 0 # tried salak-0.3.6, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - salak < 0 # tried salak-0.3.6, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 + - salak < 0 # tried salak-0.3.6, but its *library* requires time >=1.8.0 && < 1.11 and the snapshot contains time-1.12.2 + - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires the disabled package: tomland - - sandwich-webdriver < 0 # tried sandwich-webdriver-0.1.0.6, but its *library* requires the disabled package: webdriver - - scalendar < 0 # tried scalendar-1.2.0, but its *library* does not support: containers-0.6.4.1 - - schematic < 0 # tried schematic-0.5.1.0, but its *library* does not support: aeson-1.5.6.0 - - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: hjsonschema + - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires time >=1.8.0 && < 1.10 and the snapshot contains time-1.12.2 + - salak-yaml < 0 # tried salak-yaml-0.3.5.3, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 + - scale < 0 # tried scale-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - scale < 0 # tried scale-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - scale < 0 # tried scale-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - scale < 0 # tried scale-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - scale < 0 # tried scale-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - scale < 0 # tried scale-1.0.0.0, but its *library* requires vector >0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 + - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires containers >=0.5.7.1 && < 0.6 and the snapshot contains containers-0.6.7 + - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires text >=1.2.0.0 && < 2 and the snapshot contains text-2.0.2 + - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires aeson >=1 && < 1.4.3.0 and the snapshot contains aeson-2.1.2.1 - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: validationt - - sendgrid-v3 < 0 # tried sendgrid-v3-0.3.0.0, but its *library* does not support: base-4.15.0.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: aeson-1.5.6.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: base-4.15.0.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: http-client-0.7.9 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: lens-5.0.1 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - selda < 0 # tried selda-0.5.2.0, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - selda < 0 # tried selda-0.5.2.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - selda < 0 # tried selda-0.5.2.0, but its *library* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 + - selda-json < 0 # tried selda-json-0.1.1.1, but its *library* requires aeson >=1.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - selda-json < 0 # tried selda-json-0.1.1.1, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires postgresql-binary >=0.12 && < 0.13 and the snapshot contains postgresql-binary-0.13.1.2 + - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires postgresql-libpq >=0.9 && < 0.10 and the snapshot contains postgresql-libpq-0.10.0.0 + - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 + - selda-sqlite < 0 # tried selda-sqlite-0.1.7.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - selda-sqlite < 0 # tried selda-sqlite-0.1.7.2, but its *library* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 + - semigroupoid-extras < 0 # tried semigroupoid-extras-5, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.0.1 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires aeson >=0.11 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires base >=4.11 && < 4.14 and the snapshot contains base-4.18.1.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires http-client >=0.5.6 && < 0.7 and the snapshot contains http-client-0.7.15 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires lens >=4.15 && < 4.20 and the snapshot contains lens-5.2.3 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires optparse-applicative >=0.12 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires time >=1.5.0.1 && < 1.10 and the snapshot contains time-1.12.2 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires unix < 2.8 and the snapshot contains unix-2.8.1.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires unix-compat < 0.6 and the snapshot contains unix-compat-0.7.1 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - seqloc < 0 # tried seqloc-0.6.1.1, but its *library* requires the disabled package: biocore - - sequenceTools < 0 # tried sequenceTools-1.5.0, but its *library* requires the disabled package: sequence-formats - - serf < 0 # tried serf-0.1.1.0, but its *library* requires the disabled package: operational - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: blaze-builder-0.4.2.2 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: cryptonite-0.29 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: exceptions-0.10.4 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-api-data-0.4.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-types-0.12.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: memory-0.16.0 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-0.18.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-server-0.18.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: time-1.9.3 - - servant-auth-docs < 0 # tried servant-auth-docs-0.2.10.0, but its *library* does not support: base-4.15.0.0 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: base64-bytestring-1.2.1.0 - - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.10.1, but its *library* does not support: swagger2-2.7 - - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *library* requires the disabled package: functor-combinators - - servant-elm < 0 # tried servant-elm-0.7.2, but its *library* requires the disabled package: elm-bridge - - servant-errors < 0 # tried servant-errors-0.1.6.0, but its *library* does not support: base-4.15.0.0 - - servant-js < 0 # tried servant-js-0.9.4.2, but its *executable* does not support: aeson-1.5.6.0 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: containers-0.6.4.1 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: formatting-7.1.3 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: lens-5.0.1 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: servant-0.18.3 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: time-1.9.3 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: QuickCheck-2.14.2 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: base-4.15.0.0 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: http-media-0.8.0.0 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: lens-5.0.1 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: pandoc-types-1.22.1 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: base-4.15.0.0 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: hspec-2.8.5 - - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: base-4.15.0.0 - - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: servant-0.18.3 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: base-4.15.0.0 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-0.18.3 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-client-core-0.18.3 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: base-4.15.0.0 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: servant-server-0.18.3 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires the disabled package: streaming-wai - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: Cabal-3.4.0.0 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: base-4.15.0.0 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: lens-5.0.1 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: swagger2-2.7 - - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: base-4.15.0.0 - - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: servant-0.18.3 - - serverless-haskell < 0 # tried serverless-haskell-0.12.6, but its *library* requires the disabled package: amazonka-core - - serversession-backend-persistent < 0 # tried serversession-backend-persistent-1.0.5, but its *library* does not support: base64-bytestring-1.2.1.0 - - serversession-backend-redis < 0 # tried serversession-backend-redis-1.0.4, but its *library* does not support: hedis-0.15.0 - - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* does not support: exceptions-0.10.4 + - serf < 0 # tried serf-0.1.1.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires blaze-builder >=0.4 && < 0.4.1 and the snapshot contains blaze-builder-0.4.2.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires cryptonite >=0.14 && < 0.25 and the snapshot contains cryptonite-0.30 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires exceptions >=0.8 && < 0.9 and the snapshot contains exceptions-0.10.7 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires http-api-data ==0.3.* and the snapshot contains http-api-data-0.5.1 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires http-types >=0.9 && < 0.12 and the snapshot contains http-types-0.12.4 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires memory >=0.11 && < 0.15 and the snapshot contains memory-0.18.0 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires servant >=0.5 && < 0.13 and the snapshot contains servant-0.20.1 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires servant-server >=0.5 && < 0.13 and the snapshot contains servant-server-0.20 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires time >=1.6 && < 1.8.1 and the snapshot contains time-1.12.2 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - servant-auth-wordpress < 0 # tried servant-auth-wordpress-1.0.0.2, but its *library* requires servant-server >=0.14 && < 0.20 and the snapshot contains servant-server-0.20 + - servant-auth-wordpress < 0 # tried servant-auth-wordpress-1.0.0.2, but its *library* requires the disabled package: wordpress-auth + - servant-cassava < 0 # tried servant-cassava-0.10.2, but its *library* requires base-compat >=0.9.1 && < 0.13 and the snapshot contains base-compat-0.13.1 + - servant-cassava < 0 # tried servant-cassava-0.10.2, but its *library* requires servant >=0.7 && < 0.20 and the snapshot contains servant-0.20.1 + - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* requires aeson >=1.4.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* requires servant >=0.15 && < 0.19 and the snapshot contains servant-0.20.1 + - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - servant-errors < 0 # tried servant-errors-0.1.7.0, but its *library* requires aeson >=1.3 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - servant-errors < 0 # tried servant-errors-0.1.7.0, but its *library* requires base >=4.10.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 + - servant-js < 0 # tried servant-js-0.9.4.2, but its *executable* requires aeson >=1.4.1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires containers >=0.5.7 && < 0.6.1 and the snapshot contains containers-0.6.7 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires formatting >=6.2 && < 6.4 and the snapshot contains formatting-7.2.0 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires lens >=4.15 && < 4.18 and the snapshot contains lens-5.2.3 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires servant >=0.9 && < 0.17 and the snapshot contains servant-0.20.1 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires servant-foreign >=0.9 && < 0.16 and the snapshot contains servant-foreign-0.16 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires QuickCheck >=2.12.6.1 && < 2.14 and the snapshot contains QuickCheck-2.14.3 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires base >=4.9 && < 4.14 and the snapshot contains base-4.18.1.0 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires base-compat >=0.10.5 && < 0.12 and the snapshot contains base-compat-0.13.1 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires servant >=0.17 && < 0.19 and the snapshot contains servant-0.20.1 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires servant-server >=0.17 && < 0.19 and the snapshot contains servant-server-0.20 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires lens >=4.9 && < 5 and the snapshot contains lens-5.2.3 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires pandoc-types >=1.12 && < 1.18 and the snapshot contains pandoc-types-1.23.1 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires servant-docs >=0.11.1 && < 0.12 and the snapshot contains servant-docs-0.13 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires aeson >=0.8 && < 2 and the snapshot contains aeson-2.1.2.1 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires base-compat-batteries >=0.10.1 && < 0.12 and the snapshot contains base-compat-batteries-0.13.1 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires hspec >=2.5.6 && < 2.8 and the snapshot contains hspec-2.11.7 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires servant >=0.17 && < 0.19 and the snapshot contains servant-0.20.1 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires servant-client >=0.17 && < 0.19 and the snapshot contains servant-client-0.20 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires servant-server >=0.17 && < 0.19 and the snapshot contains servant-server-0.20 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.0.2 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires time >=1.5 && < 1.11 and the snapshot contains time-1.12.2 + - servant-ruby < 0 # tried servant-ruby-0.9.0.0, but its *library* requires servant-foreign >=0.9 && < 0.16 and the snapshot contains servant-foreign-0.16 + - servant-ruby < 0 # tried servant-ruby-0.9.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* requires servant >=0.13 && < 0.16 and the snapshot contains servant-0.20.1 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires servant >=0.14 && < 0.15 and the snapshot contains servant-0.20.1 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires servant-client-core >=0.14 && < 0.15 and the snapshot contains servant-client-core-0.20 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires servant-server >=0.13 && < 0.15 and the snapshot contains servant-server-0.20 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* requires base >=4.9 && < 4.14 and the snapshot contains base-4.18.1.0 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* requires servant >=0.15 && < 0.18 and the snapshot contains servant-0.20.1 + - serversession-backend-persistent < 0 # tried serversession-backend-persistent-2.0.1, but its *library* requires persistent ==2.13.* and the snapshot contains persistent-2.14.6.0 + - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires exceptions >=0.8.3 && < 0.10.0 and the snapshot contains exceptions-0.10.7 - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires the disabled package: sessiontypes - - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: base-4.15.0.0 - - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: megaparsec-9.2.0 - - shake-plus-extended < 0 # tried shake-plus-extended-0.4.1.0, but its *library* requires the disabled package: ixset-typed - - show-prettyprint < 0 # tried show-prettyprint-0.3.0.1, but its *library* does not support: trifecta-2.1.2 - - shower < 0 # tried shower-0.2.0.2, but its *library* does not support: base-4.15.0.0 - - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* does not support: template-haskell-2.17.0.0 - - size-based < 0 # tried size-based-0.1.2.0, but its *library* does not support: template-haskell-2.17.0.0 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: aeson-1.5.6.0 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: base-4.15.0.0 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: constraints-0.13.2 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: lens-5.0.1 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: random-1.2.1 + - sets < 0 # tried sets-0.0.6.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - sexpr-parser < 0 # tried sexpr-parser-0.2.2.0, but its *library* requires megaparsec >=6.5 && < 9.3 and the snapshot contains megaparsec-9.4.1 + - shikensu < 0 # tried shikensu-0.4.1, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 + - show-prettyprint < 0 # tried show-prettyprint-0.3.0.1, but its *library* requires trifecta >=1.6 && < 1.8 and the snapshot contains trifecta-2.1.3 + - shower < 0 # tried shower-0.2.0.3, but its *library* requires base >=4.10 && < 4.18 and the snapshot contains base-4.18.1.0 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.0 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires text >=0.11.0 && < 2.0.0 and the snapshot contains text-2.0.2 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires time >=1.5 && < 1.10 and the snapshot contains time-1.12.2 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - simple-media-timestamp-formatting < 0 # tried simple-media-timestamp-formatting-0.1.1.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 + - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* requires template-haskell >=2.12 && < 2.16 and the snapshot contains template-haskell-2.20.0.0 + - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 + - siphash < 0 # tried siphash-1.0.3, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires constraints >=0.9 && < 0.11 and the snapshot contains constraints-0.13.4 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires lens >=4.15 && < 5 and the snapshot contains lens-5.2.3 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires random ==1.1.* and the snapshot contains random-1.2.1.1 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - skeletons < 0 # tried skeletons-0.4.0, but its *executable* requires the disabled package: tinytemplate - - slack-web < 0 # tried slack-web-0.3.0.1, but its *library* does not support: base-4.15.0.0 - - slack-web < 0 # tried slack-web-0.3.0.1, but its *library* does not support: http-client-0.7.9 - - slynx < 0 # tried slynx-0.6.1.0, but its *library* requires the disabled package: elynx-seq - - slynx < 0 # tried slynx-0.6.1.0, but its *library* requires the disabled package: elynx-tools - - smallcheck-series < 0 # tried smallcheck-series-0.7.1.0, but its *library* does not support: base-4.15.0.0 - - smash-lens < 0 # tried smash-lens-0.1.0.1, but its *library* does not support: lens-5.0.1 - - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: aeson-1.5.6.0 - - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: attoparsec-0.14.1 - - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: base-4.15.0.0 - - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: dlist-1.0 - - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: lens-5.0.1 - - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: mwc-random-0.15.0.2 - - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: pwstore-fast - - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: snap-server - - snap-blaze < 0 # tried snap-blaze-0.2.1.5, but its *library* requires the disabled package: snap-core - - snap-core < 0 # tried snap-core-1.0.4.2, but its *library* does not support: attoparsec-0.14.1 - - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* does not support: network-3.1.2.5 - - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: inline-java-0.10.0 - - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: jvm-0.6.0 - - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: distributed-closure + - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires base >=4.11 && < 4.18 and the snapshot contains base-4.18.1.0 + - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires servant >=0.16 && < 0.20 and the snapshot contains servant-0.20.1 + - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires servant-client >=0.16 && < 0.20 and the snapshot contains servant-client-0.20 + - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires servant-client-core >=0.16 && < 0.20 and the snapshot contains servant-client-core-0.20 + - smallcheck-series < 0 # tried smallcheck-series-0.7.1.0, but its *library* requires base >=4.6 && < 4.15 and the snapshot contains base-4.18.1.0 + - smash < 0 # tried smash-0.1.3, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 + - smash < 0 # tried smash-0.1.3, but its *library* requires bifunctors ^>=5.5 and the snapshot contains bifunctors-5.6.1 + - smash < 0 # tried smash-0.1.3, but its *library* requires hashable ^>=1.3 and the snapshot contains hashable-1.4.3.0 + - smash-aeson < 0 # tried smash-aeson-0.2.0.1, but its *library* requires aeson >=2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - smash-aeson < 0 # tried smash-aeson-0.2.0.1, but its *library* requires base >=4.1 && < 4.17 and the snapshot contains base-4.18.1.0 + - smash-lens < 0 # tried smash-lens-0.1.0.3, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 + - smash-lens < 0 # tried smash-lens-0.1.0.3, but its *library* requires lens >=4.0 && < 5.2 and the snapshot contains lens-5.2.3 + - smash-microlens < 0 # tried smash-microlens-0.1.0.2, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 + - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires aeson >=0.8 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires linear >=1.16 && < 1.22 and the snapshot contains linear-1.22 + - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - smtp-mail < 0 # tried smtp-mail-0.3.0.0, but its *library* requires the disabled package: connection + - soap < 0 # tried soap-0.2.3.6, but its *library* requires the disabled package: xml-conduit-writer + - soap-openssl < 0 # tried soap-openssl-0.1.0.2, but its *library* requires the disabled package: soap + - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: connection + - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: soap + - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* requires network >=2.3 && < 2.9 and the snapshot contains network-3.1.4.0 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires inline-java >=0.7.0 && < 0.9 and the snapshot contains inline-java-0.10.0 + - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires jvm >=0.4.0.1 && < 0.5 and the snapshot contains jvm-0.6.0 - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: jni - - speculation < 0 # tried speculation-1.5.0.3, but its *library* does not support: stm-2.5.0.0 - - sqlite-simple-errors < 0 # tried sqlite-simple-errors-0.6.1.0, but its *library* does not support: text-1.2.4.1 - - stack < 0 # tried stack-2.7.3, but its *library* requires the disabled package: hackage-security - - stack < 0 # tried stack-2.7.3, but its *library* requires the disabled package: regex-applicative-text - - streamproc < 0 # tried streamproc-1.6.2, but its *library* does not support: base-4.15.0.0 - - strict-base-types < 0 # tried strict-base-types-0.7, but its *library* requires the disabled package: strict-lens - - strict-tuple < 0 # tried strict-tuple-0.1.4, but its *library* does not support: base-4.15.0.0 - - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* requires the disabled package: strict-tuple - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-2.8.5 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-core-2.8.5 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: random-1.2.1 - - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* does not support: haskell-src-exts-1.23.1 - - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: Cabal-3.4.0.0 - - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: ghc-lib-parser-9.0.1.20210324 - - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: attoparsec-0.14.1 - - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: base-4.15.0.0 - - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* does not support: attoparsec-0.14.1 - - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: attoparsec-0.14.1 - - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: base-4.15.0.0 - - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: lens-5.0.1 - - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: profunctors-5.6.2 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: containers-0.6.4.1 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-api-data-0.4.3 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-client-0.7.9 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-media-0.8.0.0 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: katip-0.8.7.0 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: network-3.1.2.5 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: aeson-1.5.6.0 - - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src - - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src-th-mode - - taffybar < 0 # tried taffybar-3.3.0, but its *library* requires the disabled package: broadcast-chan - - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: containers-0.6.4.1 - - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: tasty-1.4.2.1 - - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: time-1.9.3 - - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* does not support: network-3.1.2.5 - - termbox < 0 # tried termbox-0.3.0, but its *library* does not support: base-4.15.0.0 + - sparse-linear-algebra < 0 # tried sparse-linear-algebra-0.3.1, but its *library* requires base >=4.7 && < 4.17 and the snapshot contains base-4.18.1.0 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires Cabal >=1.24 && < 3.5 and the snapshot contains Cabal-3.10.1.0 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires ad >=4.2 && < 4.5 and the snapshot contains ad-4.5.4 + - spdx < 0 # tried spdx-1.0.0.3, but its *library* requires Cabal ^>=2.4.0.1 || ^>=3.0.0.0 || ^>=3.2.0.0 || ^>=3.4.0.0 || ^>=3.6.0.0 and the snapshot contains Cabal-3.10.1.0 + - spdx < 0 # tried spdx-1.0.0.3, but its *library* requires base >=4.3.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - spdx < 0 # tried spdx-1.0.0.3, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - speculation < 0 # tried speculation-1.5.0.3, but its *library* requires stm >=2.1 && < 2.5 and the snapshot contains stm-2.5.1.0 + - speculation < 0 # tried speculation-1.5.0.3, but its *library* requires transformers >=0.2.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - sqlcli < 0 # tried sqlcli-0.2.2.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - sqlcli-odbc < 0 # tried sqlcli-odbc-0.2.0.1, but its *library* requires the disabled package: sqlcli + - sqlite-simple-errors < 0 # tried sqlite-simple-errors-0.6.1.0, but its *library* requires text >=1.2 && < 1.2.4 and the snapshot contains text-2.0.2 + - srt-attoparsec < 0 # tried srt-attoparsec-0.1.0.0, but its *library* requires mtl >=1.0 && < =2.3 and the snapshot contains mtl-2.3.1 + - srt-attoparsec < 0 # tried srt-attoparsec-0.1.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires dhall >=1 && < 1.41 and the snapshot contains dhall-1.42.1 + - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 + - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - srt-formatting < 0 # tried srt-formatting-0.1.0.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 + - stackcollapse-ghc < 0 # tried stackcollapse-ghc-0.0.1.4, but its *executable* requires base >=4.12.0.0 && < 4.16 and the snapshot contains base-4.18.1.0 + - stackcollapse-ghc < 0 # tried stackcollapse-ghc-0.0.1.4, but its *executable* requires transformers ==0.5.6.* and the snapshot contains transformers-0.6.1.0 + - stb-image-redux < 0 # tried stb-image-redux-0.2.1.2, but its *library* requires vector >=0.10.12.3 && < 0.13 and the snapshot contains vector-0.13.1.0 + - stm-lifted < 0 # tried stm-lifted-2.5.0.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - stopwatch < 0 # tried stopwatch-0.1.0.6, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - streaming-cassava < 0 # tried streaming-cassava-0.2.0.0, but its *library* requires streaming-bytestring ==0.2.* and the snapshot contains streaming-bytestring-0.3.2 + - streamly-bytestring < 0 # tried streamly-bytestring-0.2.0, but its *library* requires bytestring ==0.11.0.* || ==0.11.1.* || ==0.11.2.* || (>=0.11.3.1 && < 0.11.4 and the snapshot contains bytestring-0.11.5.2 + - streamly-bytestring < 0 # tried streamly-bytestring-0.2.0, but its *library* requires streamly-core ==0.1.0.* and the snapshot contains streamly-core-0.2.0 + - streamly-examples < 0 # tried streamly-examples-0.1.3, but its *executable* requires base >=4.9 && < 4.18 and the snapshot contains base-4.18.1.0 + - streamly-examples < 0 # tried streamly-examples-0.1.3, but its *executable* requires streamly ==0.9.0 and the snapshot contains streamly-0.10.0 + - streamly-examples < 0 # tried streamly-examples-0.1.3, but its *executable* requires streamly-core ==0.1.0 and the snapshot contains streamly-core-0.2.0 + - streamly-process < 0 # tried streamly-process-0.3.0, but its *library* requires streamly ==0.9.0.* and the snapshot contains streamly-0.10.0 + - streamly-process < 0 # tried streamly-process-0.3.0, but its *library* requires streamly-core ==0.1.0 and the snapshot contains streamly-core-0.2.0 + - streamproc < 0 # tried streamproc-1.6.2, but its *library* requires base >=3 && < 4.13 and the snapshot contains base-4.18.1.0 + - streamt < 0 # tried streamt-0.5.0.1, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* requires lens ^>=5 and the snapshot contains lens-5.2.3 + - string-variants < 0 # tried string-variants-0.3.0.0, but its *library* requires the disabled package: refinery + - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires aeson >=0.8 && < 0.10 || >=0.11 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires mtl >=2.1.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires time >=1.4 && < 1.11 and the snapshot contains time-1.12.2 + - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - stripe-haskell < 0 # tried stripe-haskell-2.6.2, but its *library* requires the disabled package: stripe-core + - stripe-haskell < 0 # tried stripe-haskell-2.6.2, but its *library* requires the disabled package: stripe-http-client + - stripe-http-client < 0 # tried stripe-http-client-2.6.2, but its *library* requires aeson >=0.8 && < 0.10 || >=0.11 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - stripe-http-client < 0 # tried stripe-http-client-2.6.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - stripe-http-client < 0 # tried stripe-http-client-2.6.2, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires aeson >=0.8 && < 0.10 || >=0.11 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires hspec >=2.1.0 && < 2.8 and the snapshot contains hspec-2.11.7 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires hspec-core >=2.1.0 && < 2.8 and the snapshot contains hspec-core-2.11.7 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires mtl >=2.1.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires random >=1.1 && < 1.2 and the snapshot contains random-1.2.1.1 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires time >=1.4 && < 1.11 and the snapshot contains time-1.12.2 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - strong-path < 0 # tried strong-path-1.1.4.0, but its *library* requires hashable ==1.3.* and the snapshot contains hashable-1.4.3.0 + - strong-path < 0 # tried strong-path-1.1.4.0, but its *library* requires template-haskell >=2.16 && < 2.18 and the snapshot contains template-haskell-2.20.0.0 + - strongweak < 0 # tried strongweak-0.6.0, but its *library* requires the disabled package: refined1 + - structured-cli < 0 # tried structured-cli-2.7.0.1, but its *library* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* requires haskell-src-exts >=1.18 && < 1.20 and the snapshot contains haskell-src-exts-1.23.1 + - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* requires the disabled package: descriptive + - sv < 0 # tried sv-1.4.0.1, but its *library* requires attoparsec >=0.12.1.4 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - sv < 0 # tried sv-1.4.0.1, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 + - sv < 0 # tried sv-1.4.0.1, but its *library* requires bifunctors >=5.1 && < 5.6 and the snapshot contains bifunctors-5.6.1 + - sv < 0 # tried sv-1.4.0.1, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - sv < 0 # tried sv-1.4.0.1, but its *library* requires semigroupoids >=5 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 + - sv < 0 # tried sv-1.4.0.1, but its *library* requires the disabled package: hw-dsv + - sv < 0 # tried sv-1.4.0.1, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* requires attoparsec >=0.12.1.4 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires attoparsec >=0.12.1.4 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires bifunctors >=5.1 && < 5.6 and the snapshot contains bifunctors-5.6.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires lens >=4 && < 4.20 and the snapshot contains lens-5.2.3 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires mtl >=2.0.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires profunctors >=5.2.1 && < 5.6 and the snapshot contains profunctors-5.6.2 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires semigroupoids >=5 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires semigroups >=0.18 && < 0.20 and the snapshot contains semigroups-0.20 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - sv-core < 0 # tried sv-core-0.5, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires aeson >=1.0 && < 2.0 and the snapshot contains aeson-2.1.2.1 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires bytestring >=0.10.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires containers >=0.5.0.0 && < 0.6 and the snapshot contains containers-0.6.7 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires http-api-data >=0.3.4 && < 0.4 and the snapshot contains http-api-data-0.5.1 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires http-media >=0.4 && < 0.8 and the snapshot contains http-media-0.8.1.1 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires katip >=0.4 && < 0.6 and the snapshot contains katip-0.8.8.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires network >=2.6.2 && < 2.8 and the snapshot contains network-3.1.4.0 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires time >=1.5 && < 1.10 and the snapshot contains time-1.12.2 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires vector >=0.10.9 && < 0.13 and the snapshot contains vector-0.13.1.0 + - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires logict ^>=0.7.0 and the snapshot contains logict-0.8.1.0 + - syb-with-class < 0 # tried syb-with-class-0.6.1.14, but its *library* requires template-haskell >=2.4 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - sydtest-persistent-postgresql < 0 # tried sydtest-persistent-postgresql-0.2.0.3, but its *library* requires the disabled package: tmp-postgres + - taffybar < 0 # tried taffybar-4.0.1, but its *library* requires scotty >=0.11 && < 0.13 and the snapshot contains scotty-0.20.1 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* requires containers >=0.4 && < 0.6 and the snapshot contains containers-0.6.7 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* requires tasty >=0.11.2 && < 1.2 and the snapshot contains tasty-1.4.3 + - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* requires time >=1.5 && < 1.9 and the snapshot contains time-1.12.2 + - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires ansi-terminal >=0.8 && < 0.12 and the snapshot contains ansi-terminal-1.0 + - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* requires network >=2.3 && < 3.0 and the snapshot contains network-3.1.4.0 + - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* requires the disabled package: tcp-streams + - telegram-bot-api < 0 # tried telegram-bot-api-6.7.1, but its *library* requires the disabled package: cron + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.12, but its *library* requires the disabled package: cron - termcolor < 0 # tried termcolor-0.2.0.0, but its *executable* requires the disabled package: cli - - termonad < 0 # tried termonad-4.2.0.0, but its *library* requires the disabled package: xml-html-qq - - test-fixture < 0 # tried test-fixture-0.5.1.0, but its *library* does not support: template-haskell-2.17.0.0 + - test-fixture < 0 # tried test-fixture-0.5.1.0, but its *library* requires template-haskell >=2.10 && < 2.13 and the snapshot contains template-haskell-2.20.0.0 - test-framework-th < 0 # tried test-framework-th-0.2.4, but its *library* requires the disabled package: language-haskell-extract - - testing-feat < 0 # tried testing-feat-1.1.0.0, but its *library* requires the disabled package: size-based - - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-1.2.4.1 - - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-format-0.3.2 - - text-format < 0 # tried text-format-0.3.2, but its *library* does not support: base-4.15.0.0 - - text-generic-pretty < 0 # tried text-generic-pretty-1.2.1, but its *library* does not support: wl-pprint-text-1.2.0.1 - - th-to-exp < 0 # tried th-to-exp-0.0.1.1, but its *library* does not support: template-haskell-2.17.0.0 - - these-skinny < 0 # tried these-skinny-0.7.4, but its *library* does not support: base-4.15.0.0 - - threepenny-gui < 0 # tried threepenny-gui-0.9.1.0, but its *library* requires the disabled package: snap-server - - threepenny-gui-flexbox < 0 # tried threepenny-gui-flexbox-0.4.2, but its *library* requires the disabled package: threepenny-gui - - tlynx < 0 # tried tlynx-0.6.1.0, but its *library* requires the disabled package: elynx-tools - - token-bucket < 0 # tried token-bucket-0.1.0.1, but its *library* does not support: base-4.15.0.0 - - tonalude < 0 # tried tonalude-0.1.1.1, but its *library* does not support: base-4.15.0.0 - - tonaparser < 0 # tried tonaparser-0.1.0.1, but its *library* does not support: base-4.15.0.0 - - tonatona < 0 # tried tonatona-0.1.2.1, but its *library* does not support: base-4.15.0.0 - - tonatona-logger < 0 # tried tonatona-logger-0.2.0.2, but its *library* does not support: base-4.15.0.0 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: base-4.15.0.0 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-postgresql-2.13.2.1 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: base-4.15.0.0 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-sqlite-2.13.0.3 - - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: base-4.15.0.0 - - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-0.18.3 - - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-server-0.18.3 - - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: wai-extra-3.1.7 - - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: base-4.15.0.0 - - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: writer-cps-transformers-0.5.6.1 - - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* does not support: network-3.1.2.5 + - text-all < 0 # tried text-all-0.4.2, but its *library* requires text ==1.2.3.* and the snapshot contains text-2.0.2 + - text-all < 0 # tried text-all-0.4.2, but its *library* requires text-format ==0.3.1.* and the snapshot contains text-format-0.3.2.1 + - text-generic-pretty < 0 # tried text-generic-pretty-1.2.1, but its *library* requires wl-pprint-text < 1.2 and the snapshot contains wl-pprint-text-1.2.0.2 + - th-to-exp < 0 # tried th-to-exp-0.0.1.1, but its *library* requires template-haskell >=2.11.0.0 && < 2.13 and the snapshot contains template-haskell-2.20.0.0 + - through-text < 0 # tried through-text-0.1.0.0, but its *library* requires base >=4.3 && < 4.17 and the snapshot contains base-4.18.1.0 + - thumbnail-plus < 0 # tried thumbnail-plus-1.0.5, but its *library* requires either < 5 and the snapshot contains either-5.0.2 + - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires tls >=1.3 && < 1.6 and the snapshot contains tls-1.8.0 + - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonaparser < 0 # tried tonaparser-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonatona < 0 # tried tonatona-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonatona-logger < 0 # tried tonatona-logger-0.3.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 + - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires servant >=0.18 && < 0.20 and the snapshot contains servant-0.20.1 + - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires servant-server >=0.18 && < 0.20 and the snapshot contains servant-server-0.20 + - tracing-control < 0 # tried tracing-control-0.0.7.3, but its *library* requires the disabled package: stm-lifted + - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.0 + - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - transformers-fix < 0 # tried transformers-fix-1.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* requires base >=4.8 && < 4.13 and the snapshot contains base-4.18.1.0 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* requires writer-cps-transformers ==0.1.1.4 and the snapshot contains writer-cps-transformers-0.5.6.1 + - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires network >=2.8.0.0 && < 3.0.0.0 and the snapshot contains network-3.1.4.0 + - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires the disabled package: TCache + - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires the disabled package: transient - tries < 0 # tried tries-0.0.6.1, but its *library* requires the disabled package: rose-trees - - true-name < 0 # tried true-name-0.1.0.3, but its *library* does not support: template-haskell-2.17.0.0 + - triplesec < 0 # tried triplesec-0.2.2.1, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - true-name < 0 # tried true-name-0.1.0.3, but its *library* requires template-haskell >=2.7 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 + - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 + - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires hashtables >=1.2 && < 1.3 and the snapshot contains hashtables-1.3.1 + - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - type-combinators-singletons < 0 # tried type-combinators-singletons-0.2.1.0, but its *library* requires the disabled package: type-combinators - - typelits-witnesses < 0 # tried typelits-witnesses-0.4.0.0, but its *library* requires the disabled package: dependent-sum - - tz < 0 # tried tz-0.1.3.5, but its *library* does not support: template-haskell-2.17.0.0 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: aeson-1.5.6.0 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: attoparsec-0.14.1 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: base-4.15.0.0 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: cryptonite-0.29 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: parser-combinators-1.3.0 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: aeson-1.5.6.0 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: base-4.15.0.0 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 + - type-errors-pretty < 0 # tried type-errors-pretty-0.0.1.2, but its *library* requires base >=4.10.1.0 && < 4.16 and the snapshot contains base-4.18.1.0 + - type-operators < 0 # tried type-operators-0.2.0.0, but its *library* requires base >=4.7 && < 4.17 and the snapshot contains base-4.18.1.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires attoparsec >=0.13.2.2 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires base >=4.11.0.0 && < 4.13 and the snapshot contains base-4.18.1.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires cryptonite >=0.25 && < 0.27 and the snapshot contains cryptonite-0.30 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires http-api-data >=0.3.8.1 && < 0.5 and the snapshot contains http-api-data-0.5.1 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires parser-combinators >=1.0.0 && < 1.3 and the snapshot contains parser-combinators-1.3.0 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires text >=0.11 && < 1.2.3.0 || >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires time >=1.8.0.2 && < 1.10 and the snapshot contains time-1.12.2 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires base >=4.11.0.0 && < 4.13 and the snapshot contains base-4.18.1.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires base64-bytestring >=1.0.0.1 && < 1.1 and the snapshot contains base64-bytestring-1.2.1.0 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires text >=0.11 && < 1.2.3.0 || >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires time >=1.8.0.2 && < 1.10 and the snapshot contains time-1.12.2 + - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires timerep >=2.0.0.2 && < 2.1 and the snapshot contains timerep-2.1.0.0 + - unbound-generics < 0 # tried unbound-generics-0.4.3, but its *library* requires ansi-wl-pprint >=0.6.7.2 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 + - unfoldable < 0 # tried unfoldable-1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - unfoldable-restricted < 0 # tried unfoldable-restricted-0.0.3, but its *library* requires the disabled package: unfoldable - - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* does not support: attoparsec-0.14.1 - - uri-templater < 0 # tried uri-templater-0.3.1.0, but its *library* does not support: trifecta-2.1.2 - - urlpath < 0 # tried urlpath-9.0.1, but its *library* requires the disabled package: attoparsec-uri - - userid < 0 # tried userid-0.1.3.6, but its *library* does not support: base-4.15.0.0 - - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* does not support: text-short-0.1.4 - - vado < 0 # tried vado-0.0.13, but its *library* does not support: attoparsec-0.14.1 - - vado < 0 # tried vado-0.0.13, but its *library* does not support: base-4.15.0.0 - - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: base-4.15.0.0 - - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: containers-0.6.4.1 - - vector-circular < 0 # tried vector-circular-0.1.3, but its *library* does not support: template-haskell-2.17.0.0 - - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* does not support: base-4.15.0.0 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: base-4.15.0.0 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: brick-0.65 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: lens-5.0.1 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: vty-5.33 - - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* does not support: optparse-applicative-0.16.1.0 - - wai-middleware-metrics < 0 # tried wai-middleware-metrics-0.2.4, but its *library* requires the disabled package: ekg-core - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: aeson-1.5.6.0 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: http-client-0.7.9 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: time-1.9.3 - - wai-middleware-throttle < 0 # tried wai-middleware-throttle-0.3.0.1, but its *library* requires the disabled package: token-bucket + - unification-fd < 0 # tried unification-fd-0.11.2, but its *library* requires logict >=0.4 && < 0.8.1 and the snapshot contains logict-0.8.1.0 + - union < 0 # tried union-0.1.2, but its *library* requires base >=4.9 && < 4.18 and the snapshot contains base-4.18.1.0 + - union-find < 0 # tried union-find-0.2, but its *library* requires base >=4.4 && < 4.17 and the snapshot contains base-4.18.1.0 + - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* requires attoparsec >=0.10 && < 0.14 and the snapshot contains attoparsec-0.14.4 + - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* requires text >=0.2 && < 1.3 and the snapshot contains text-2.0.2 + - unliftio-pool < 0 # tried unliftio-pool-0.4.2.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - urbit-hob < 0 # tried urbit-hob-0.3.3, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - uri-templater < 0 # tried uri-templater-0.3.1.0, but its *library* requires trifecta >=1.6 && < 1.8 and the snapshot contains trifecta-2.1.3 + - userid < 0 # tried userid-0.1.3.7, but its *library* requires aeson >=0.9 && < 2.1 and the snapshot contains aeson-2.1.2.1 + - userid < 0 # tried userid-0.1.3.7, but its *library* requires base >=4.6 && < 4.17 and the snapshot contains base-4.18.1.0 + - userid < 0 # tried userid-0.1.3.7, but its *library* requires the disabled package: web-routes + - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* requires text-short >=0.1.1 && < 0.1.4 and the snapshot contains text-short-0.1.5 + - vado < 0 # tried vado-0.0.14, but its *library* requires base >=4.0.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 + - variable-media-field < 0 # tried variable-media-field-0.1.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - variable-media-field-dhall < 0 # tried variable-media-field-dhall-0.1.0.0, but its *library* requires the disabled package: variable-media-field + - variable-media-field-optics < 0 # tried variable-media-field-optics-0.1.0.0, but its *library* requires the disabled package: variable-media-field + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires base >=4.0.0.0 && < 4.11 and the snapshot contains base-4.18.1.0 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires containers >=0.5.5.1 && < 0.6 and the snapshot contains containers-0.6.7 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires mtl >=2.0.1.0 && < 2.3 and the snapshot contains mtl-2.3.1 + - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires text >=0.11.1.5 && < 1.3 and the snapshot contains text-2.0.2 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires primitive >=0.6.4 && < 0.8 and the snapshot contains primitive-0.8.0.0 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires semigroupoids >=5.3 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires template-haskell >=2.12 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 + - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* requires base >=4.3 && < 4.15 and the snapshot contains base-4.18.1.0 + - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* requires primitive >=0.6 && < 0.8 and the snapshot contains primitive-0.8.0.0 + - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* requires vector >=0.9 && < 0.13 and the snapshot contains vector-0.13.1.0 + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires the disabled package: protocol-buffers + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.0 + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 + - vformat-aeson < 0 # tried vformat-aeson-0.1.0.1, but its *library* requires aeson >=1.2 && < 2.0 and the snapshot contains aeson-2.1.2.1 + - vformat-aeson < 0 # tried vformat-aeson-0.1.0.1, but its *library* requires text >=1.2 && < 2.0 and the snapshot contains text-2.0.2 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires brick >0.26.1 && < 0.54 and the snapshot contains brick-2.1.1 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires lens >=4.14 && < 4.20 and the snapshot contains lens-5.2.3 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires text >=1.2.2.0 && < 1.3 and the snapshot contains text-2.0.2 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires vector >=0.10.12.3 && < 0.13 and the snapshot contains vector-0.13.1.0 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires vector-algorithms >=0.6.0.4 && < 0.9 and the snapshot contains vector-algorithms-0.9.0.1 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires vty >=5.13 && < 5.29 and the snapshot contains vty-6.1 + - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* requires optparse-applicative >=0.11 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires aeson >=1.0 && < 1.4 and the snapshot contains aeson-2.1.2.1 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-predicates - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-route - - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: attoparsec-0.14.1 - - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: base-4.15.0.0 - - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: dlist-1.0 - - web-routes-th < 0 # tried web-routes-th-0.22.6.6, but its *library* does not support: template-haskell-2.17.0.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: OneTuple-0.3.1 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: aeson-1.5.6.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: attoparsec-0.14.1 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: base-4.15.0.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: cryptonite-0.29 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: hspec-2.8.5 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: http-client-0.7.9 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: memory-0.16.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-0.18.3 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-client-0.18.3 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: template-haskell-2.17.0.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: vinyl-0.13.3 - - webby < 0 # tried webby-1.0.1, but its *library* does not support: formatting-7.1.3 - - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* does not support: language-javascript-0.7.1.0 - - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires the disabled package: webdriver - - websockets-snap < 0 # tried websockets-snap-0.10.3.1, but its *library* requires the disabled package: snap-server - - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* does not support: containers-0.6.4.1 - - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* does not support: containers-0.6.4.1 + - wavefront < 0 # tried wavefront-0.7.1.5, but its *library* requires base >=4.8 && < 4.18 and the snapshot contains base-4.18.1.0 + - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - web-routes-boomerang < 0 # tried web-routes-boomerang-0.28.4.4, but its *library* requires the disabled package: web-routes + - web-routes-happstack < 0 # tried web-routes-happstack-0.23.12.3, but its *library* requires the disabled package: web-routes + - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires the disabled package: hsp + - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires the disabled package: web-routes + - web-routes-th < 0 # tried web-routes-th-0.22.8.1, but its *library* requires template-haskell >=2.11 && < 2.20 and the snapshot contains template-haskell-2.20.0.0 + - web-routes-th < 0 # tried web-routes-th-0.22.8.1, but its *library* requires the disabled package: web-routes + - web-routes-wai < 0 # tried web-routes-wai-0.24.3.2, but its *library* requires the disabled package: web-routes + - web3 < 0 # tried web3-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-bignum < 0 # tried web3-bignum-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-bignum < 0 # tried web3-bignum-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires cryptonite >0.22 && < 0.30 and the snapshot contains cryptonite-0.30 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires vector >0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires OneTuple >0.2 && < 0.3 and the snapshot contains OneTuple-0.4.1.1 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires microlens-aeson >2.2 && < 2.4 and the snapshot contains microlens-aeson-2.5.1 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires transformers >0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires vinyl >0.5 && < 0.14 and the snapshot contains vinyl-0.14.3 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires cryptonite >0.22 && < 0.30 and the snapshot contains cryptonite-0.30 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires http-client >0.5 && < 0.7 and the snapshot contains http-client-0.7.15 + - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires transformers >0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires OneTuple >0.2 && < 0.3 and the snapshot contains OneTuple-0.4.1.1 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 + - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 + - webby < 0 # tried webby-1.1.1, but its *library* requires formatting >=6.3.7 && < 7.2 and the snapshot contains formatting-7.2.0 + - webby < 0 # tried webby-1.1.1, but its *library* requires resourcet ==1.2.* and the snapshot contains resourcet-1.3.0 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires language-javascript >=0.6 && < 0.7 and the snapshot contains language-javascript-0.7.1.0 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires webdriver >=0.6 && < 0.9 and the snapshot contains webdriver-0.12.0.0 + - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.13, but its *library* requires text >=0.11.3.1 && < 1.3 and the snapshot contains text-2.0.2 + - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.13, but its *library* requires time >=1.4.0 && < 1.12 and the snapshot contains time-1.12.2 + - wild-bind < 0 # tried wild-bind-0.1.2.9, but its *library* requires base >=4.6 && < 4.17 and the snapshot contains base-4.18.1.0 + - wild-bind < 0 # tried wild-bind-0.1.2.9, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.0.2 + - wild-bind < 0 # tried wild-bind-0.1.2.9, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires base >=4.6 && < 4.17 and the snapshot contains base-4.18.1.0 + - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.0.2 + - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - wire-streams < 0 # tried wire-streams-0.1.1.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - wl-pprint-console < 0 # tried wl-pprint-console-0.1.0.2, but its *library* requires bytestring >=0.10.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - wl-pprint-console < 0 # tried wl-pprint-console-0.1.0.2, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* requires containers >=0.4 && < 0.6 and the snapshot contains containers-0.6.7 + - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* requires semigroupoids >=3 && < 6 and the snapshot contains semigroupoids-6.0.0.1 + - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires containers >=0.4 && < 0.6 and the snapshot contains containers-0.6.7 + - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 + - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: ansigraph + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: clock-extras + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: connection - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: next-ref - - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: threads-extras + - writer-cps-exceptions < 0 # tried writer-cps-exceptions-0.1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - writer-cps-full < 0 # tried writer-cps-full-0.1.0.0, but its *library* requires the disabled package: writer-cps-morph - - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* does not support: lens-5.0.1 - - ws < 0 # tried ws-0.0.5, but its *library* requires the disabled package: attoparsec-uri - - xml-html-qq < 0 # tried xml-html-qq-0.1.0.1, but its *library* requires the disabled package: heterocephalus - - xml-isogen < 0 # tried xml-isogen-0.3.0, but its *library* requires the disabled package: dom-parser - - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* does not support: yeshql-core-4.2.0.0 + - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 + - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - writer-cps-mtl < 0 # tried writer-cps-mtl-0.1.1.6, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 + - writer-cps-mtl < 0 # tried writer-cps-mtl-0.1.1.6, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - xdg-desktop-entry < 0 # tried xdg-desktop-entry-0.1.1.1, but its *library* requires the disabled package: ConfigFile + - xml-parser < 0 # tried xml-parser-0.1.1.1, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.0 + - xmonad-contrib < 0 # tried xmonad-contrib-0.17.1, but its *library* requires mtl >=1 && < 2.3 and the snapshot contains mtl-2.3.1 + - xmonad-extras < 0 # tried xmonad-extras-0.17.0, but its *library* requires the disabled package: libmpd + - xmonad-extras < 0 # tried xmonad-extras-0.17.0, but its *library* requires the disabled package: xmonad-contrib - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires the disabled package: yeshql-hdbc - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: persistent-2.13.2.1 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-core-1.6.21.0 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-form-1.7.0 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires the disabled package: yesod-auth - - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: yesod-auth - - yesod-auth-hashdb < 0 # tried yesod-auth-hashdb-1.7.1.7, but its *library* requires the disabled package: yesod-auth - - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.6.3.4, but its *library* requires the disabled package: yesod-auth - - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-core-1.6.21.0 - - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-form-1.7.0 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* does not support: yesod-1.6.1.2 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: language-javascript-0.7.1.0 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-core-1.6.21.0 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-static-1.6.1.0 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires the disabled package: hamlet + - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires yeshql-core ==4.1.1.2 and the snapshot contains yeshql-core-4.2.0.0 + - yesod-alerts < 0 # tried yesod-alerts-0.1.3.0, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.0.2 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires persistent >=2.1 && < 2.8 and the snapshot contains persistent-2.14.6.0 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires yesod-auth >=1.4.18 && < 1.5 and the snapshot contains yesod-auth-1.6.11.2 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires yesod-core >=1.4 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires yesod-form >=1.4 && < 1.5 and the snapshot contains yesod-form-1.7.6 + - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* requires yesod-core >=1.4 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 + - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* requires yesod-form >=1.4.4.1 && < 1.5 and the snapshot contains yesod-form-1.7.6 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* requires yesod >=1.2 && < 1.5 and the snapshot contains yesod-1.6.2.1 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires language-javascript >=0.6 && < 0.7 and the snapshot contains language-javascript-0.7.1.0 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires yesod-core >=1.2 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires yesod-static >=1.2.1 && < 1.6 and the snapshot contains yesod-static-1.6.1.0 + - yesod-text-markdown < 0 # tried yesod-text-markdown-0.1.10, but its *library* requires aeson >=0.7 && < 2.0 and the snapshot contains aeson-2.1.2.1 + - yesod-text-markdown < 0 # tried yesod-text-markdown-0.1.10, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.0.2 - zasni-gerna < 0 # tried zasni-gerna-0.0.7.1, but its *library* requires the disabled package: papillon - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: base-compat-0.11.2 - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-0.18.3 - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-client-0.18.3 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: aeson-1.5.6.0 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: base-compat-0.11.2 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: http-api-data-0.4.3 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: servant-0.18.3 - - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: base-4.15.0.0 - - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: storable-record-0.0.6 + - zero < 0 # tried zero-0.1.5, but its *library* requires semigroups >=0.16 && < 0.20 and the snapshot contains semigroups-0.20 + - zio < 0 # tried zio-0.1.0.2, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 + - zio < 0 # tried zio-0.1.0.2, but its *library* requires the disabled package: unexceptionalio-trans + - zio < 0 # tried zio-0.1.0.2, but its *library* requires transformers >=0.5.6 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - zipper-extra < 0 # tried zipper-extra-0.1.3.2, but its *library* requires the disabled package: comonad-extras + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* requires base-compat ==0.9.* and the snapshot contains base-compat-0.13.1 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* requires servant >=0.9 && < 0.12 and the snapshot contains servant-0.20.1 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* requires servant-client >=0.9 && < 0.12 and the snapshot contains servant-client-0.20 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires aeson >=0.7 && < 1.3 and the snapshot contains aeson-2.1.2.1 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires base-compat ==0.9.* and the snapshot contains base-compat-0.13.1 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires http-api-data ==0.3.* and the snapshot contains http-api-data-0.5.1 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires servant >=0.9 && < 0.12 and the snapshot contains servant-0.20.1 + - zlib-lens < 0 # tried zlib-lens-0.1.2.1, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - zm < 0 # tried zm-0.3.2, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - zm < 0 # tried zm-0.3.2, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - zm < 0 # tried zm-0.3.2, but its *library* requires flat ==0.3.* and the snapshot contains flat-0.6 + - zm < 0 # tried zm-0.3.2, but its *library* requires model >=0.4.4 && < 0.5 and the snapshot contains model-0.5 + - zm < 0 # tried zm-0.3.2, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - ztail < 0 # tried ztail-1.2.0.3, but its *executable* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 + - ztail < 0 # tried ztail-1.2.0.3, but its *executable* requires unix ==2.7.* and the snapshot contains unix-2.8.1.0 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* requires base >=4.7 && < 4.15 and the snapshot contains base-4.18.1.0 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* requires storable-record >=0.0.5 && < 0.0.6 and the snapshot contains storable-record-0.0.7 # End of Library and exe bounds failures "Stackage upper bounds": + # https://github.com/commercialhaskell/stackage/issues/7031 + - aeson ^>= 2.1.2.1 && <2.2.0 + - attoparsec-aeson ^>= 2.1.0.0 && <2.2 + + # https://github.com/commercialhaskell/stackage/issues/7055 + - dependent-sum-template ^>= 0.1.1.1 && <0.1.2 + + # https://github.com/commercialhaskell/stackage/issues/7074 + - th-abstraction ^>= 0.5.0.0 && <0.6.0.0 + + # https://github.com/commercialhaskell/stackage/issues/7205 + - megaparsec ^>= 9.4.1 && <9.6 + - megaparsec-tests ^>= 9.4.1 && <9.6 + + # https://github.com/commercialhaskell/stackage/issues/7106 + - tls ^>= 1.8.0 && <1.9 + + # https://github.com/commercialhaskell/stackage/issues/7111 + # tasty < 1.5 + # tasty-quickcheck < 0.10.3 + + # https://github.com/commercialhaskell/stackage/issues/7124 + - mpi-hs ^>= 0.7.2.0 && <0.7.3 + + # https://github.com/commercialhaskell/stackage/issues/7129 + - lpeg ^>= 1.0.4 && <1.1 + + # https://github.com/commercialhaskell/stackage/issues/7144 + # ghc9.8 - need base >= 4.19 + - eliminators ^>= 0.9.3 && <0.9.4 + - fourmolu ^>= 0.14.0.0 && <0.14.1.0 + - ghc-lib ^>= 9.6.3.20231121 && <9.8 + - ghc-lib-parser ^>= 9.6.3.20231121 && <9.8 + - ghc-lib-parser-ex ^>= 9.6.0.2 && <9.8 + - ormolu ^>= 0.7.2.0 && <0.7.3.0 + - singletons-base ^>= 3.2 && <3.3 + - singletons-th ^>= 3.2 && <3.3 + - th-desugar ^>= 1.15 && <1.16 - # https://github.com/commercialhaskell/stackage/issues/6122 - - mmorph < 1.2 - - # https://github.com/commercialhaskell/stackage/issues/6184 - - base-compat < 0.12 + # https://github.com/commercialhaskell/stackage/issues/7146 + - constraints ^>= 0.13.4 && <0.14 - # https://github.com/commercialhaskell/stackage/issues/6185 - - base-compat-batteries < 0.12 - - # https://github.com/commercialhaskell/stackage/issues/6195 - - miso < 1.8 - - # aeson-2 - # https://github.com/commercialhaskell/stackage/issues/6217 - - aeson < 2.0.0.0 - - aura < 3.2.6 - - cabal-flatpak < 0.1.0.3 - - core-data < 0.3.0.0 - - faktory < 1.1.2.1 - - forma < 1.2.0 - - hruby < 0.4.0.0 - - hspec-expectations-json < 1.0.0.5 - - microlens-aeson < 2.4 - - mmark-cli < 0.0.5.1 - - postgresql-binary < 0.12.4.2 - - stache < 2.3.1 - - stripe-scotty < 1.1.0.1 - - stripe-wreq < 1.0.1.12 - - kanji < 3.5 - - # https://github.com/commercialhaskell/stackage/issues/6237 - - lucid < 2.9.13 - - mmark < 0.0.7.4 - - # happy-1.21.0 is deprecated an unbuildable - # https://github.com/commercialhaskell/stackage/issues/6294 - # see also https://github.com/commercialhaskell/stackage/issues/6242 - - happy < 1.21 - - # https://github.com/commercialhaskell/stackage/issues/6243 - - jose < 0.9 - - # https://github.com/commercialhaskell/stackage/issues/6264 - # Requires GHC 9.2 - # Any new package-version that must use GHC 9.2 should be added here. - # We'll Remove this section along with the nightly upgrade to GHC 9.2. - - ghc-lib < 9.2.1.20211030 - - ghc-lib-parser < 9.2.1.20211030 - - ghc-lib-parser-ex < 9.2.0.0 - - singletons-base < 3.1 - - singletons-th < 3.1 - - th-desugar < 1.13 - - eliminators < 0.9 - - ghc-syntax-highlighter < 0.0.8 # requires ghc-lib-parser >= 9.2 - - ormolu < 0.4.0.0 - - # https://github.com/commercialhaskell/stackage/issues/6265 - - attoparsec < 0.14.2 - - # https://github.com/commercialhaskell/stackage/issues/6268 - - hashable < 1.4.0.0 - - # https://github.com/commercialhaskell/stackage/issues/6273 - - freckle-app < 1.0.1 - - # https://github.com/commercialhaskell/stackage/issues/6278 - - ad < 4.5 - - # https://github.com/commercialhaskell/stackage/issues/6288 - - mmark-ext < 0.2.1.4 - - # https://github.com/commercialhaskell/stackage/issues/6292 - - doctest < 0.19 - - # https://github.com/commercialhaskell/stackage/issues/6297 - - hspec-discover < 2.9 - - # https://github.com/commercialhaskell/stackage/issues/6298 - - hspec-core < 2.9 - - hspec-meta < 2.9 - - # https://github.com/commercialhaskell/stackage/issues/6299 - - hspec < 2.9 - - # https://github.com/commercialhaskell/stackage/issues/6308 - - semigroups < 0.20 - - # https://github.com/commercialhaskell/stackage/issues/6309 - - polysemy < 1.7 - - polysemy-plugin < 0.4.2 - - # https://github.com/commercialhaskell/stackage/issues/6310 - - lens < 5.1 - - # https://github.com/commercialhaskell/stackage/issues/6312 - - sydtest < 0.6 - - # https://github.com/commercialhaskell/stackage/issues/6313 - - unicode-data < 0.2 - - # https://github.com/Gabriel439/Haskell-Pipes-Concurrency-Library/issues/60 - - pipes-concurrency < 2.0.13 - - # https://github.com/commercialhaskell/stackage/issues/6322 - - hashtables < 1.3 - - # https://github.com/commercialhaskell/stackage/issues/6348 - - selective < 0.5 + # https://github.com/commercialhaskell/stackage/issues/7159 + - Diff ^>= 0.4.1 && <0.5 + + # https://github.com/commercialhaskell/stackage/issues/7168 + - jose ^>= 0.10.0.1 && <0.11 + + # https://github.com/commercialhaskell/stackage/issues/7178 + - cassava-megaparsec ^>= 2.0.4 && <2.1 + # end of Stackage upper bounds # end of packages # Package flags are applied to individual packages, and override the values of @@ -6766,9 +8094,6 @@ package-flags: pathtype: old-time: false - brick: - demos: true - bz2: with-bzlib: false # Exclude bzlib from benchmarks to avoid unnecessary dependencies. @@ -6823,40 +8148,18 @@ package-flags: reedsolomon: llvm: false - # https://github.com/ghcjs/jsaddle/issues/9 - jsaddle: - gtk3: true - - ghc-heap-view: - ghc_7_7: false - ghc_8_0: true - functor-classes-compat: containers: true - # 2021-11-14 - # Since we are shipping Win32-2.10 (thus not 2.13.1), this flag needs to be set to 'false'. - # https://github.com/RyanGlScott/mintty/issues/4#issuecomment-968329124 - # TODO: revisit when Win32 is bumped - mintty: - win32-2-13-1: false - - cassava: - bytestring--lt-0_10_4: false - alerta: servant-client-core: false cabal-install: - # https://github.com/haskell/cabal/issues/4883 + # https://github.com/haskell/cabal/issues/9054 native-dns: false - # https://github.com/fpco/stackage/issues/3619 - transformers-compat: - five-three: true - greskell: - hint-test: false + server-test: false windns: allow-non-windows: true @@ -6870,7 +8173,32 @@ package-flags: mongoDB: _old-network: false + sdl2: + recent-ish: false + formatting: + no-double-conversion: true + + hackage-security: + Cabal-syntax: true + + aws-sns-verify: + development: true + + optics-operators: + build-readme: false + + # optparse-applicative dependencies depend on the version + bm: + optparse-applicative_ge_0_18: true + horizontal-rule: + optparse-applicative_ge_0_18: true + literatex: + optparse-applicative_ge_0_18: true + phatsort: + optparse-applicative_ge_0_18: true + redact: + optparse-applicative_ge_0_18: true # end of package-flags # Special configure options for individual packages @@ -6897,43 +8225,37 @@ skipped-builds: # or if Setup fails because of missing foreign libraries. # Otherwise place them in expected-test-failures. skipped-tests: - # aeson-2 - - jsonifier - - req - # Missing foreign libraries - symengine + - hasql-interpolate # https://github.com/commercialhaskell/stackage/issues/6841 # Timeouts # These tests sometimes take too long and hit the stackage build # servers time limit so these shouldn't be removed from # skipped-tests unless we know a fix has been released. - accelerate-fourier + - binary-search # Never finishes https://github.com/nushio3/binary-search/issues/2 + - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 - cabal-helper - - graphviz + - enum-text # https://github.com/commercialhaskell/stackage/issues/6794 + - ghc-exactprint # flaky fails with 'executable not found' & and runs around 15 minutes (so put here instead of expected-test-failures) + - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 + - ihaskell # Never finishes https://github.com/IHaskell/IHaskell/issues/1413 + - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 + - json-rpc # flaky - network-attoparsec + - port-utils - punycode + - sbv # takes more than 4 hours for a single test suite - unagi-chan - zeromq4-patterns - - port-utils - - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 - - binary-search # Never finishes https://github.com/nushio3/binary-search/issues/2 - - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 # Wontfix. The maintainer doesn't want to keep test dependencies # up to date or be notified about it, or doesn't want stackage to # run the tests. # Only re-enable if requested. ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 - - cassava - - cryptohash-md5 - - cryptohash-sha1 - - cryptohash-sha256 - - cryptohash-sha512 - - HsYAML - lzma - - resolv - token-bucket - uuid - uuid-types @@ -6960,7 +8282,6 @@ skipped-tests: - graphviz - wl-pprint-text # @phadej - - aeson-compat - aeson-extra - base64-bytestring-type - binary-orphans @@ -6977,14 +8298,35 @@ skipped-tests: # @jsynacek - hpqtypes # needs a running postgres database - hpqtypes-extras # needs a running postgres database + # norfairking - - autodocodec # runs doctest + - afksautodocodec # runs doctest + - sydtest-amqp # runs rabbitmq + - sydtest-rabbitmq # runs rabbitmq + - sydtest-hedis # runs redis + - sydtest-mongo # runs mongo + - sydtest-persistent-sqlite # runs sqlite + - sydtest-persistent-postgresql # runs postgres + - sydtest-webdriver # runs chromium + - sydtest-webdriver-screenshot # runs chromium + - sydtest-webdriver-yesod # runs chromium + + - captcha-core + - captcha-2captcha + - captcha-capmonster + + # @thielema + - glpk-headers # Uses Cabal's "library internal" stanza feature - s3-signer # Due to cycles, which are actually just limitations in Stack right now. - HUnit + - Agda + - aeson + - indexed-traversable-instances + - semialign - attoparsec - base-orphans # via hspec - bifunctors # via hspec @@ -6992,20 +8334,27 @@ skipped-tests: - case-insensitive - clock - criterion + - criterion-measurement - distributive # via hspec - doctest # via hspec + - foldable1-classes-compat - foundation - hspec - hspec-discover # via logging-facade/mockery + - http-streams - js-flot - js-jquery + - microstache - nanospec + - nothunks - optparse-applicative # via QuickCheck - primitive - random - scientific - split - splitmix + - statistics + - syb - tasty-expected-failure # via tasty-hedgehog - vector # doctest - vector-binary-instances @@ -7016,236 +8365,332 @@ skipped-tests: # Revision to package caused it to require bounds and break - htoml # https://github.com/commercialhaskell/stackage/issues/6239 - # was in expected test failures, but seems we may have to skip - # entirely for unknown reasons, previously: - # https://github.com/clash-lang/clash-compiler/issues/1622 - - clash-prelude - # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. # # Test bounds issues + - BiobaseNewick # tried BiobaseNewick-0.0.0.2, but its *test-suite* requires the disabled package: test-framework-th - ENIG # tried ENIG-0.0.1.0, but its *test-suite* requires the disabled package: test-framework-th - - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: hspec-2.8.5 - - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: http-client-0.7.9 - - MissingH # tried MissingH-1.4.3.0, but its *test-suite* requires the disabled package: errorcall-eq-instance - - aeson # tried aeson-1.5.6.0, but its *test-suite* does not support: hashable-time-0.3 - - airship # tried airship-0.9.4, but its *test-suite* does not support: tasty-1.4.2.1 - - algebraic-graphs # tried algebraic-graphs-0.5, but its *test-suite* does not support: QuickCheck-2.14.2 - - antiope-core # tried antiope-core-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-core # tried antiope-core-7.5.3, but its *test-suite* requires the disabled package: aeson-lens - - antiope-messages # tried antiope-messages-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-sns # tried antiope-sns-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-sqs # tried antiope-sqs-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* does not support: hspec-2.8.5 - - asif # tried asif-6.0.4, but its *test-suite* does not support: doctest-0.18.2 - - avro # tried avro-0.5.2.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - barrier # tried barrier-0.1.1, but its *test-suite* does not support: lens-family-core-2.1.0 - - barrier # tried barrier-0.1.1, but its *test-suite* does not support: tasty-1.4.2.1 - - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: hspec-2.8.5 - - blaze-html # tried blaze-html-0.9.1.2, but its *test-suite* does not support: QuickCheck-2.14.2 - - bloodhound # tried bloodhound-0.18.0.0, but its *test-suite* requires the disabled package: quickcheck-properties - - boolean-normal-forms # tried boolean-normal-forms-0.0.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 - - cassava-conduit # tried cassava-conduit-0.6.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: hspec-2.8.5 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: servant-server-0.18.3 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: warp-3.3.18 - - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-2.8.5 - - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-discover-2.8.5 - - colour # tried colour-2.3.6, but its *test-suite* does not support: random-1.2.1 - - conduit-algorithms # tried conduit-algorithms-0.0.11.0, but its *test-suite* requires the disabled package: test-framework-th - - csg # tried csg-0.1.0.6, but its *test-suite* does not support: doctest-0.18.2 - - csg # tried csg-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 - - darcs # tried darcs-2.16.4, but its *test-suite* does not support: QuickCheck-2.14.2 - - dhall-lsp-server # tried dhall-lsp-server-1.0.17, but its *test-suite* does not support: lsp-test-0.14.0.1 - - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 + - Frames # tried Frames-0.7.4.2, but its *test-suite* requires the disabled package: tomland + - Frames # tried Frames-0.7.4.2, but its *test-suite* requires the disabled package: validation-selective + - IPv6DB # tried IPv6DB-0.3.3, but its *test-suite* requires hspec >=2.1.10 && < 2.8 and the snapshot contains hspec-2.11.7 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires doctest >=0.16.2 && < 0.20 and the snapshot contains doctest-0.22.2 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires hedgehog >=1.0.2 && < 1.2 and the snapshot contains hedgehog-1.4 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires tasty-discover >=4.2.1 && < 4.3 and the snapshot contains tasty-discover-5.0.0 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires tasty-hedgehog >=1.0.0.2 && < 1.2 and the snapshot contains tasty-hedgehog-1.4.0.2 + - TotalMap # tried TotalMap-0.1.1.1, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 + - airship # tried airship-0.9.5, but its *test-suite* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - airship # tried airship-0.9.5, but its *test-suite* requires tasty >=0.10.1 && < 1.3 and the snapshot contains tasty-1.4.3 + - airship # tried airship-0.9.5, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.0.2 + - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.4 + - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* requires hspec >=2.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.4 + - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* requires hspec >=2.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - ascii-group # tried ascii-group-1.0.0.16, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - ascii-numbers # tried ascii-numbers-1.2.0.1, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - ascii-predicates # tried ascii-predicates-1.0.1.3, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - avro # tried avro-0.6.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - aws-cloudfront-signed-cookies # tried aws-cloudfront-signed-cookies-0.2.0.12, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - beam-postgres # tried beam-postgres-0.5.3.1, but its *test-suite* requires the disabled package: tmp-postgres + - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires hedgehog >=0.5.3 && < 1.3 and the snapshot contains hedgehog-1.4 + - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires hspec >=2.4 && < 2.11 and the snapshot contains hspec-2.11.7 + - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires hlint ^>=3.5 and the snapshot contains hlint-3.6.1 + - bloodhound # tried bloodhound-0.21.0.0, but its *test-suite* requires the disabled package: quickcheck-properties + - boolean-normal-forms # tried boolean-normal-forms-0.0.1.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.14 and the snapshot contains QuickCheck-2.14.3 + - brittany # tried brittany-0.14.0.2, but its *test-suite* requires hspec ^>=2.8.3 and the snapshot contains hspec-2.11.7 + - buttplug-hs-core # tried buttplug-hs-core-0.1.0.1, but its *test-suite* requires hspec >=2.7.8 && < 2.9 and the snapshot contains hspec-2.11.7 + - cabal-install # tried cabal-install-3.10.2.1, but its *test-suite* requires the disabled package: Cabal-QuickCheck + - cabal-install # tried cabal-install-3.10.2.1, but its *test-suite* requires the disabled package: Cabal-described + - cabal-install # tried cabal-install-3.10.2.1, but its *test-suite* requires the disabled package: Cabal-tree-diff + - cassava-conduit # tried cassava-conduit-0.6.5, but its *test-suite* requires QuickCheck ==2.12.* and the snapshot contains QuickCheck-2.14.3 + - cayley-client # tried cayley-client-0.4.19.2, but its *test-suite* requires aeson >=0.8.0.2 && < 1.6 || ==2.0.* and the snapshot contains aeson-2.1.2.1 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* requires hspec >=2.4.1 && < 2.6 and the snapshot contains hspec-2.11.7 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* requires servant-server >=0.9.1.1 && < 0.15 and the snapshot contains servant-server-0.20 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* requires warp >=3.2.11 && < 3.3 and the snapshot contains warp-3.3.31 + - cleff # tried cleff-0.3.3.0, but its *test-suite* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 + - cleff # tried cleff-0.3.3.0, but its *test-suite* requires template-haskell >=2.14 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 + - colour # tried colour-2.3.6, but its *test-suite* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 + - construct # tried construct-0.3.1.1, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 + - construct # tried construct-0.3.1.1, but its *test-suite* requires monoid-subclasses >=1.0 && < 1.2 and the snapshot contains monoid-subclasses-1.2.4.1 + - crc32c # tried crc32c-0.1.0, but its *test-suite* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - csg # tried csg-0.1.0.6, but its *test-suite* requires doctest < 0.17 and the snapshot contains doctest-0.22.2 + - csg # tried csg-0.1.0.6, but its *test-suite* requires tasty < 1.3 and the snapshot contains tasty-1.4.3 + - darcs # tried darcs-2.16.5, but its *test-suite* requires leancheck >=0.9 && < 0.10 and the snapshot contains leancheck-1.0.0 + - dhall-lsp-server # tried dhall-lsp-server-1.1.3, but its *test-suite* requires hspec >=2.7 && < 2.11 and the snapshot contains hspec-2.11.7 + - dhall-lsp-server # tried dhall-lsp-server-1.1.3, but its *test-suite* requires lsp-test >=0.13.0.0 && < 0.15 and the snapshot contains lsp-test-0.16.0.1 + - dhall-lsp-server # tried dhall-lsp-server-1.1.3, but its *test-suite* requires lsp-types >=1.2.0.0 && < 1.5 and the snapshot contains lsp-types-2.1.0.0 + - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* requires hspec >=2.7.1 && < 2.9.0 and the snapshot contains hspec-2.11.7 + - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* requires hspec-discover >=2.7.1 && < 2.9.0 and the snapshot contains hspec-discover-2.11.7 + - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: network-transport-tcp - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch + - docopt # tried docopt-0.7.0.7, but its *test-suite* requires template-haskell >=2.15.0 && < 2.18 and the snapshot contains template-haskell-2.20.0.0 - doldol # tried doldol-0.4.1.2, but its *test-suite* requires the disabled package: test-framework-th - - drawille # tried drawille-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 - - dual-tree # tried dual-tree-0.2.3.0, but its *test-suite* requires the disabled package: testing-feat - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: directory-1.3.6.1 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: doctest-0.18.2 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: hlint-3.3.4 - - edit # tried edit-1.0.1.0, but its *test-suite* does not support: doctest-0.18.2 - - edit # tried edit-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - elm-street # tried elm-street-0.1.0.4, but its *test-suite* does not support: hspec-2.8.5 - - elynx-markov # tried elynx-markov-0.6.1.0, but its *test-suite* requires the disabled package: elynx-tools - - elynx-tree # tried elynx-tree-0.6.1.0, but its *test-suite* requires the disabled package: elynx-tools + - drawille # tried drawille-0.1.3.0, but its *test-suite* requires containers ==0.5.* and the snapshot contains containers-0.6.7 + - drawille # tried drawille-0.1.3.0, but its *test-suite* requires hspec >=1.11 && < 2.4 and the snapshot contains hspec-2.11.7 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires QuickCheck >=2.4 && < 2.9 and the snapshot contains QuickCheck-2.14.3 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires directory >=1.0 && < 1.3 and the snapshot contains directory-1.3.8.1 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires doctest >=0.10 && < 0.12 and the snapshot contains doctest-0.22.2 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires hlint >=1.7 && < 1.10 and the snapshot contains hlint-3.6.1 + - edit # tried edit-1.0.1.0, but its *test-suite* requires doctest >=0.13 && < 0.17 and the snapshot contains doctest-0.22.2 + - edit # tried edit-1.0.1.0, but its *test-suite* requires tasty >=1.0 && < 1.2 and the snapshot contains tasty-1.4.3 + - edit # tried edit-1.0.1.0, but its *test-suite* requires tasty-discover >=4.2 && < 4.3 and the snapshot contains tasty-discover-5.0.0 - errors-ext # tried errors-ext-0.4.2, but its *test-suite* requires the disabled package: binary-ext - euler-tour-tree # tried euler-tour-tree-0.1.1.0, but its *test-suite* requires the disabled package: sequence - eventsource-stub-store # tried eventsource-stub-store-1.1.1, but its *test-suite* requires the disabled package: eventsource-store-specs - extensible-effects # tried extensible-effects-5.0.0.1, but its *test-suite* requires the disabled package: test-framework-th - - filtrable # tried filtrable-0.1.6.0, but its *test-suite* does not support: tasty-1.4.2.1 - - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-1.4.2.1 - - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-hspec-1.2 - - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: QuickCheck-2.14.2 - - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: bitvec-1.1.1.0 - - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: groups-0.5.3 - - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: integer-gmp-1.1 - - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: semirings-0.6 - - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: tasty-1.4.2.1 - - generic-xmlpickler # tried generic-xmlpickler-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 - - ghc-prof # tried ghc-prof-1.4.1.9, but its *test-suite* does not support: attoparsec-0.14.1 - - gitlib-libgit2 # tried gitlib-libgit2-3.1.2.1, but its *test-suite* requires the disabled package: gitlib-test - - hackage-security # tried hackage-security-0.6.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-2.8.5 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: optparse-applicative-0.16.1.0 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: tree-diff-0.2.1 - - haskell-names # tried haskell-names-0.9.9, but its *test-suite* does not support: tasty-1.4.2.1 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires the disabled package: knob - - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: Glob-0.10.2 - - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: network-3.1.2.5 - - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: polyparse-1.13 - - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: time-1.9.3 - - haskell-tools-rewrite # tried haskell-tools-rewrite-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* does not support: lens-5.0.1 - - hasmin # tried hasmin-1.0.3, but its *test-suite* does not support: doctest-0.18.2 - - heist # tried heist-1.1.0.1, but its *test-suite* does not support: lens-5.0.1 - - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 - - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* does not support: hspec-2.8.5 - - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: base-4.15.0.0 - - http-streams # tried http-streams-0.8.9.4, but its *test-suite* requires the disabled package: snap-server - - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-bits # tried hw-bits-0.7.2.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-conduit # tried hw-conduit-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-dsv # tried hw-dsv-0.4.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-json # tried hw-json-1.3.2.2, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-xml # tried hw-xml-0.5.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 - - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-hspec-1.2 - - json-rpc-client # tried json-rpc-client-0.2.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - json-schema # tried json-schema-0.7.4.2, but its *test-suite* does not support: attoparsec-0.14.1 - - json-schema # tried json-schema-0.7.4.2, but its *test-suite* does not support: tasty-1.4.2.1 - - lapack # tried lapack-0.4, but its *test-suite* does not support: random-1.2.1 - - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-2.8.5 - - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-core-2.8.5 - - libraft # tried libraft-0.5.0.0, but its *test-suite* requires the disabled package: quickcheck-state-machine - - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* does not support: doctest-0.18.2 - - lrucaching # tried lrucaching-0.3.3, but its *test-suite* does not support: hspec-2.8.5 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: Glob-0.10.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: base-4.15.0.0 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: doctest-0.18.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-1.4.2.1 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-hunit-0.10.0.3 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-quickcheck-0.10.2 - - map-syntax # tried map-syntax-0.3, but its *test-suite* does not support: hspec-2.8.5 - - menshen # tried menshen-0.0.3, but its *test-suite* does not support: QuickCheck-2.14.2 - - messagepack # tried messagepack-0.5.4, but its *test-suite* requires the disabled package: test-framework-th - - monad-par # tried monad-par-0.3.5, but its *test-suite* requires the disabled package: test-framework-th - - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - multistate # tried multistate-0.8.0.3, but its *test-suite* does not support: hspec-2.8.5 - - nakadi-client # tried nakadi-client-0.7.0.0, but its *test-suite* does not support: classy-prelude-1.5.0.1 - - netrc # tried netrc-0.2.0.0, but its *test-suite* does not support: tasty-1.4.2.1 - - network-transport-inmemory # tried network-transport-inmemory-0.5.2, but its *test-suite* does not support: network-transport-tests-0.3.0 - - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* does not support: doctest-0.18.2 - - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell - - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell-quickcheck - - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-2.8.5 - - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-discover-2.8.5 - - partial-semigroup # tried partial-semigroup-0.5.1.12, but its *test-suite* does not support: doctest-0.18.2 + - fclabels # tried fclabels-2.0.5.1, but its *test-suite* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 + - feed # tried feed-1.3.2.1, but its *test-suite* requires markdown-unlit >=0.4 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 + - filepath-bytestring # tried filepath-bytestring-1.4.2.1.13, but its *test-suite* requires filepath >=1.4.2 && < =1.4.100.3 and the snapshot contains filepath-1.4.100.4 + - filtrable # tried filtrable-0.1.6.0, but its *test-suite* requires tasty >=1.3.1 && < 1.4 and the snapshot contains tasty-1.4.3 + - fixed-vector-hetero # tried fixed-vector-hetero-0.6.1.1, but its *test-suite* requires doctest >=0.15 && < 0.20 and the snapshot contains doctest-0.22.2 + - focuslist # tried focuslist-0.1.1.0, but its *test-suite* requires genvalidity < 1.0.0.0 and the snapshot contains genvalidity-1.1.0.0 + - focuslist # tried focuslist-0.1.1.0, but its *test-suite* requires validity < 0.12.0.0 and the snapshot contains validity-0.12.0.2 + - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* requires tasty >=1.2.3 && < 1.3 and the snapshot contains tasty-1.4.3 + - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* requires tasty-hspec >=1.1.5.1 && < 1.2 and the snapshot contains tasty-hspec-1.2.0.4 + - fused-effects # tried fused-effects-1.1.2.2, but its *test-suite* requires hedgehog >=1 && < 1.3 and the snapshot contains hedgehog-1.4 + - fused-effects # tried fused-effects-1.1.2.2, but its *test-suite* requires markdown-unlit ^>=0.5 and the snapshot contains markdown-unlit-0.6.0 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires QuickCheck >=2.13 && < 2.14 and the snapshot contains QuickCheck-2.14.3 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires bitvec >=1.0.2 && < 1.1 and the snapshot contains bitvec-1.1.5.0 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires groups >=0.4.1 && < 0.5 and the snapshot contains groups-0.5.3 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires integer-gmp >=1.0.2 && < 1.1 and the snapshot contains integer-gmp-1.1 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires semirings >=0.5 && < 0.6 and the snapshot contains semirings-0.6 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires tasty >=1.2 && < 1.3 and the snapshot contains tasty-1.4.3 + - generic-xmlpickler # tried generic-xmlpickler-0.1.0.6, but its *test-suite* requires tasty >=0.10 && < 1.3 and the snapshot contains tasty-1.4.3 + - geojson # tried geojson-4.1.1, but its *test-suite* requires hspec >=2.5 && < 2.10 and the snapshot contains hspec-2.11.7 + - hal # tried hal-1.0.0.1, but its *test-suite* requires hedgehog >=1.0.3 && < 1.2 and the snapshot contains hedgehog-1.4 + - hal # tried hal-1.0.0.1, but its *test-suite* requires vector >=0.12.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 + - hasbolt # tried hasbolt-0.1.6.3, but its *test-suite* requires hspec >=2.4.1 && < 2.11 and the snapshot contains hspec-2.11.7 + - haskell-names # tried haskell-names-0.9.9, but its *test-suite* requires tasty >=0.12 && < 1.3 and the snapshot contains tasty-1.4.3 + - haskell-tools-builtin-refactorings # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 + - haskell-tools-builtin-refactorings # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *test-suite* requires time >=1.8 && < 1.9 and the snapshot contains time-1.12.2 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires knob >=0.1 && < 0.2 and the snapshot contains knob-0.2.2 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* requires Glob >=0.9 && < 0.10 and the snapshot contains Glob-0.10.2 + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 + - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* requires network >=2.6 && < 2.9 and the snapshot contains network-3.1.4.0 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* requires polyparse >=1.12 && < 1.13 and the snapshot contains polyparse-1.13 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 + - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* requires time >=1.8 && < 1.9 and the snapshot contains time-1.12.2 + - haskell-tools-rewrite # tried haskell-tools-rewrite-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 + - haskey # tried haskey-0.3.1.0, but its *test-suite* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires lens >=4.12 && < 5 and the snapshot contains lens-5.2.3 + - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 + - hasmin # tried hasmin-1.0.3, but its *test-suite* requires doctest >=0.11 && < 0.17 and the snapshot contains doctest-0.22.2 + - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 + - hjsonpointer # tried hjsonpointer-1.5.0, but its *test-suite* requires QuickCheck < 2.12 and the snapshot contains QuickCheck-2.14.3 + - hjsonpointer # tried hjsonpointer-1.5.0, but its *test-suite* requires base < 4.12 and the snapshot contains base-4.18.1.0 + - hjsonpointer # tried hjsonpointer-1.5.0, but its *test-suite* requires hspec >=2.2 && < 2.6 and the snapshot contains hspec-2.11.7 + - hledger-iadd # tried hledger-iadd-1.3.19, but its *test-suite* requires hledger-lib >=1.31 && < 1.32 and the snapshot contains hledger-lib-1.32.1 + - hsdev # tried hsdev-0.3.4.0, but its *test-suite* requires lens-aeson >=1.0 && < 1.2 and the snapshot contains lens-aeson-1.2.3 + - hspec-need-env # tried hspec-need-env-0.1.0.10, but its *test-suite* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* requires hspec ==2.7.* and the snapshot contains hspec-2.11.7 + - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-conduit # tried hw-conduit-0.2.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-diagnostics # tried hw-diagnostics-0.0.1.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-eliasfano # tried hw-eliasfano-0.1.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-eliasfano # tried hw-eliasfano-0.1.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-fingertree # tried hw-fingertree-0.1.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-fingertree # tried hw-fingertree-0.1.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-hedgehog # tried hw-hedgehog-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-ip # tried hw-ip-2.4.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-ip # tried hw-ip-2.4.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-json # tried hw-json-1.3.2.4, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-json # tried hw-json-1.3.2.4, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-json-simd # tried hw-json-simd-0.1.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-mquery # tried hw-mquery-0.2.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-mquery # tried hw-mquery-0.2.1.1, but its *test-suite* requires hedgehog >=0.6.1 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-packed-vector # tried hw-packed-vector-0.2.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-packed-vector # tried hw-packed-vector-0.2.1.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-prim # tried hw-prim-0.6.3.2, but its *test-suite* requires doctest >=0.16.2 && < 0.22 and the snapshot contains doctest-0.22.2 + - hw-prim # tried hw-prim-0.6.3.2, but its *test-suite* requires hedgehog >=1.0 && < 1.4 and the snapshot contains hedgehog-1.4 + - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires hedgehog >=0.5 && < 1.3 and the snapshot contains hedgehog-1.4 + - hw-string-parse # tried hw-string-parse-0.0.0.5, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-xml # tried hw-xml-0.5.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 + - hw-xml # tried hw-xml-0.5.1.1, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 + - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* requires hspec >=2.4.8 && < 2.8 and the snapshot contains hspec-2.11.7 + - influxdb # tried influxdb-1.9.3, but its *test-suite* requires doctest >=0.11.3 && < 0.22 and the snapshot contains doctest-0.22.2 + - integer-types # tried integer-types-0.1.4.0, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - integer-types # tried integer-types-0.1.4.0, but its *test-suite* requires hspec-hedgehog ^>=0.0.1 and the snapshot contains hspec-hedgehog-0.1.1.0 + - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* requires tasty >=0.11.0.2 && < 1.2 and the snapshot contains tasty-1.4.3 + - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* requires tasty-hspec >=1.1.2 && < 1.2 and the snapshot contains tasty-hspec-1.2.0.4 + - json-rpc-client # tried json-rpc-client-0.2.5.0, but its *test-suite* requires QuickCheck >=2.4.2 && < 2.14 and the snapshot contains QuickCheck-2.14.3 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* requires hspec ==2.7.* and the snapshot contains hspec-2.11.7 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* requires hspec-core ==2.7.* and the snapshot contains hspec-core-2.11.7 + - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* requires doctest >=0.11.1 && < 0.17 and the snapshot contains doctest-0.22.2 + - loc # tried loc-0.2.0.0, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - loc # tried loc-0.2.0.0, but its *test-suite* requires hspec-hedgehog ^>=0.0.1 and the snapshot contains hspec-hedgehog-0.1.1.0 + - loopbreaker # tried loopbreaker-0.1.1.1, but its *test-suite* requires inspection-testing >=0.4.2.1 && < 0.5 and the snapshot contains inspection-testing-0.5.0.2 + - lrucaching # tried lrucaching-0.3.3, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 + - lrucaching # tried lrucaching-0.3.3, but its *test-suite* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - lxd-client # tried lxd-client-0.1.0.6, but its *test-suite* requires turtle >=1.3.6 && < 1.6 and the snapshot contains turtle-1.6.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires Glob >=0.7 && < 0.9 and the snapshot contains Glob-0.10.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires QuickCheck >=2.9.2 && < 2.11 and the snapshot contains QuickCheck-2.14.3 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires base >=4.9.1.0 && < 4.10 and the snapshot contains base-4.18.1.0 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires doctest >=0.9 && < 0.12 and the snapshot contains doctest-0.22.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty ==0.11.* and the snapshot contains tasty-1.4.3 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty-hunit ==0.9.* and the snapshot contains tasty-hunit-0.10.1 + - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty-quickcheck ==0.8.* and the snapshot contains tasty-quickcheck-0.10.2 + - medea # tried medea-1.2.0, but its *test-suite* requires hspec >=2.7.1 && < 2.9.0 and the snapshot contains hspec-2.11.7 + - medea # tried medea-1.2.0, but its *test-suite* requires hspec-core >=2.7.1 && < 2.9.0 and the snapshot contains hspec-core-2.11.7 + - menshen # tried menshen-0.0.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.14.3 + - monad-par # tried monad-par-0.3.6, but its *test-suite* requires the disabled package: test-framework-th + - monad-peel # tried monad-peel-0.3, but its *test-suite* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - mwc-random # tried mwc-random-0.15.0.2, but its *test-suite* requires doctest >=0.15 && < 0.20 and the snapshot contains doctest-0.22.2 + - nakadi-client # tried nakadi-client-0.7.0.0, but its *test-suite* requires classy-prelude >=1.4.0 && < 1.5.0 and the snapshot contains classy-prelude-1.5.0.3 + - next-ref # tried next-ref-0.1.0.2, but its *test-suite* requires hspec >=2 && < 2.3 and the snapshot contains hspec-2.11.7 + - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* requires doctest >=0.13 && < 0.17 and the snapshot contains doctest-0.22.2 + - o-clock # tried o-clock-1.4.0, but its *test-suite* requires hedgehog >=0.6 && < 1.4 and the snapshot contains hedgehog-1.4 + - oops # tried oops-0.2.0.1, but its *test-suite* requires doctest >=0.16.2 && < 0.22 and the snapshot contains doctest-0.22.2 + - options # tried options-1.2.1.2, but its *test-suite* requires the disabled package: patience + - oset # tried oset-0.4.0.1, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 + - oset # tried oset-0.4.0.1, but its *test-suite* requires hspec-discover >=2.2 && < 2.8 and the snapshot contains hspec-discover-2.11.7 + - partial-semigroup # tried partial-semigroup-0.6.0.2, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 + - peregrin # tried peregrin-0.4.2, but its *test-suite* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - pg-transact # tried pg-transact-0.3.2.0, but its *test-suite* requires the disabled package: tmp-postgres + - pipes-category # tried pipes-category-0.3.0.0, but its *test-suite* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 + - pipes-extras # tried pipes-extras-1.0.15, but its *test-suite* requires transformers >=0.2.0.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - pipes-fluid # tried pipes-fluid-0.6.0.1, but its *test-suite* requires the disabled package: pipes-misc - - postgrest # tried postgrest-8.0.0, but its *test-suite* does not support: hspec-2.8.5 - - proto3-wire # tried proto3-wire-1.2.2, but its *test-suite* does not support: doctest-0.18.2 - - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* does not support: hspec-2.8.5 - - quickcheck-state-machine # tried quickcheck-state-machine-0.7.1, but its *test-suite* requires the disabled package: hs-rqlite - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: hspec-2.8.5 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: servant-server-0.18.3 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: warp-3.3.18 - - records-sop # tried records-sop-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 - - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 - - safeio # tried safeio-0.0.5.0, but its *test-suite* requires the disabled package: test-framework-th - - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* does not support: QuickCheck-2.14.2 + - postgresql-libpq-notify # tried postgresql-libpq-notify-0.2.0.0, but its *test-suite* requires the disabled package: tmp-postgres + - postgrest # tried postgrest-9.0.1, but its *test-suite* requires hspec >=2.3 && < 2.9 and the snapshot contains hspec-2.11.7 + - pretty-sop # tried pretty-sop-0.2.0.3, but its *test-suite* requires markdown-unlit >=0.5.0 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 + - prettyprinter # tried prettyprinter-1.7.1, but its *test-suite* requires the disabled package: pgp-wordlist + - printcess # tried printcess-0.1.0.3, but its *test-suite* requires HUnit >=1.3 && < 1.6 and the snapshot contains HUnit-1.6.2.0 + - printcess # tried printcess-0.1.0.3, but its *test-suite* requires QuickCheck >=2.8 && < 2.10 and the snapshot contains QuickCheck-2.14.3 + - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* requires hspec >=2.4.8 && < 2.8 and the snapshot contains hspec-2.11.7 + - quickcheck-groups # tried quickcheck-groups-0.0.1.0, but its *test-suite* requires hspec >=2.10.7 && < 2.11 and the snapshot contains hspec-2.11.7 + - quickcheck-monoid-subclasses # tried quickcheck-monoid-subclasses-0.3.0.0, but its *test-suite* requires hspec >=2.10.7 && < 2.11 and the snapshot contains hspec-2.11.7 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* requires hspec >=2.4.1 && < 2.6 and the snapshot contains hspec-2.11.7 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* requires servant-server >=0.9.1.1 && < 0.15 and the snapshot contains servant-server-0.20 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* requires warp >=3.2.11 && < 3.3 and the snapshot contains warp-3.3.31 + - rank2classes # tried rank2classes-1.5.3, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 + - records-sop # tried records-sop-0.1.1.1, but its *test-suite* requires hspec >=2.2 && < 2.11 and the snapshot contains hspec-2.11.7 + - rel8 # tried rel8-1.4.1.0, but its *test-suite* requires hedgehog ^>=1.0 || ^>=1.1 and the snapshot contains hedgehog-1.4 + - rel8 # tried rel8-1.4.1.0, but its *test-suite* requires the disabled package: tmp-postgres + - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 + - roc-id # tried roc-id-0.2.0.0, but its *test-suite* requires hspec >=2.5.5 && < 2.11 and the snapshot contains hspec-2.11.7 + - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.14.3 + - scale # tried scale-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - scale # tried scale-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - scalendar # tried scalendar-1.2.0, but its *test-suite* requires the disabled package: SCalendar - - schematic # tried schematic-0.5.1.0, but its *test-suite* does not support: base-4.15.0.0 - - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-2.8.5 - - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - servant-docs # tried servant-docs-0.11.9, but its *test-suite* does not support: tasty-1.4.2.1 - - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-2.8.5 - - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-discover-2.8.5 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: aeson-1.5.6.0 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: hspec-2.8.5 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: http-api-data-0.4.3 - - servant-mock # tried servant-mock-0.8.7, but its *test-suite* does not support: hspec-wai-0.11.1 - - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* does not support: hspec-core-2.8.5 - - servant-streaming # tried servant-streaming-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - servant-streaming-client # tried servant-streaming-client-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: streaming-bytestring-0.2.1 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: warp-3.3.18 - - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: doctest-0.18.2 - - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-2.8.5 - - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-discover-2.8.5 - - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: aeson-1.5.6.0 - - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: servant-server-0.18.3 - - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: hspec-2.8.5 - - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 - - sexpr-parser # tried sexpr-parser-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 - - simple-log # tried simple-log-0.9.12, but its *test-suite* does not support: hspec-2.8.5 - - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* does not support: ansi-terminal-0.11.1 - - snap # tried snap-1.1.3.1, but its *test-suite* does not support: QuickCheck-2.14.2 - - stb-image-redux # tried stb-image-redux-0.2.1.3, but its *test-suite* does not support: hspec-2.8.5 + - schematic # tried schematic-0.5.1.0, but its *test-suite* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 + - servant-cassava # tried servant-cassava-0.10.2, but its *test-suite* requires servant-server >=0.4.4.5 && < 0.20 and the snapshot contains servant-server-0.20 + - servant-docs-simple # tried servant-docs-simple-0.4.0.0, but its *test-suite* requires hspec >=2.7.1 && < 2.9 and the snapshot contains hspec-2.11.7 + - servant-docs-simple # tried servant-docs-simple-0.4.0.0, but its *test-suite* requires hspec-core >=2.7.1 && < 2.9 and the snapshot contains hspec-core-2.11.7 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* requires the disabled package: language-ecmascript + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* requires hspec >=2.4.1 && < 2.8 and the snapshot contains hspec-2.11.7 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* requires http-api-data >=0.3.7 && < 0.4.2 and the snapshot contains http-api-data-0.5.1 + - servant-mock # tried servant-mock-0.8.7, but its *test-suite* requires hspec-wai >=0.9.0 && < 0.11 and the snapshot contains hspec-wai-0.11.1 + - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* requires hspec-core >=2.5.5 && < 2.8 and the snapshot contains hspec-core-2.11.7 + - servant-streaming # tried servant-streaming-0.3.0.0, but its *test-suite* requires QuickCheck >=2.8 && < 2.13 and the snapshot contains QuickCheck-2.14.3 + - servant-streaming-client # tried servant-streaming-client-0.3.0.0, but its *test-suite* requires QuickCheck >=2.8 && < 2.12 and the snapshot contains QuickCheck-2.14.3 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* requires QuickCheck >=2.8 && < 2.12 and the snapshot contains QuickCheck-2.14.3 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* requires streaming-bytestring >=0.1 && < 0.2 and the snapshot contains streaming-bytestring-0.3.2 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* requires warp >=3.2.4 && < 3.3 and the snapshot contains warp-3.3.31 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* requires aeson >=1.4.1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* requires base-compat >=0.10.5 && < 0.12 and the snapshot contains base-compat-0.13.1 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* requires servant-server >=0.15 && < 0.18 and the snapshot contains servant-server-0.20 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* requires hspec >=2.4.4 && < 2.5 and the snapshot contains hspec-2.11.7 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* requires the disabled package: network-transport-tcp + - sexpr-parser # tried sexpr-parser-0.2.2.0, but its *test-suite* requires hspec >=2.5 && < 2.10 and the snapshot contains hspec-2.11.7 + - simple-log # tried simple-log-0.9.12, but its *test-suite* requires hspec >=2.3 && < 2.8 and the snapshot contains hspec-2.11.7 + - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* requires ansi-terminal >=0.8.0.2 && < 0.10 and the snapshot contains ansi-terminal-1.0 + - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* requires markdown-unlit >=0.5.0 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 + - slack-web # tried slack-web-1.6.1.0, but its *test-suite* requires hspec-discover >=2.6.0 && < 2.11 and the snapshot contains hspec-discover-2.11.7 + - spdx # tried spdx-1.0.0.3, but its *test-suite* requires base-compat ^>=0.10.5 || ^>=0.11.1 || ^>=0.12.1 and the snapshot contains base-compat-0.13.1 + - sqlite-simple-errors # tried sqlite-simple-errors-0.6.1.0, but its *test-suite* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - stb-image-redux # tried stb-image-redux-0.2.1.2, but its *test-suite* requires hspec >=2.1.5 && < 2.5 and the snapshot contains hspec-2.11.7 - stm-supply # tried stm-supply-0.2.0.0, but its *test-suite* requires the disabled package: Unique - - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 - - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* does not support: hspec-2.8.5 - - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: HTF-0.14.0.6 - - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 - - sv # tried sv-1.4.0.1, but its *test-suite* does not support: lens-5.0.1 - - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-hedgehog-1.1.0.0 - - sv-core # tried sv-core-0.5, but its *test-suite* does not support: tasty-1.4.2.1 - - sydtest-yesod # tried sydtest-yesod-0.3.0.0, but its *test-suite* requires the disabled package: sydtest-persistent-sqlite + - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* requires hspec >=2.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* requires hspec >=2.1.0 && < 2.8 and the snapshot contains hspec-2.11.7 + - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires hspec >=2.7 && < 2.10 and the snapshot contains hspec-2.11.7 + - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires tasty-discover ==4.2.* and the snapshot contains tasty-discover-5.0.0 + - strongweak # tried strongweak-0.6.0, but its *test-suite* requires hspec >=2.7 && < 2.11 and the snapshot contains hspec-2.11.7 + - strongweak # tried strongweak-0.6.0, but its *test-suite* requires hspec-discover >=2.7 && < 2.10 and the snapshot contains hspec-discover-2.11.7 + - sv # tried sv-1.4.0.1, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.4 + - sv # tried sv-1.4.0.1, but its *test-suite* requires lens >=4 && < 4.20 and the snapshot contains lens-5.2.3 + - sv # tried sv-1.4.0.1, but its *test-suite* requires semigroups >=0.18 && < 0.20 and the snapshot contains semigroups-0.20 + - sv # tried sv-1.4.0.1, but its *test-suite* requires tasty >=0.11 && < 1.3 and the snapshot contains tasty-1.4.3 + - sv # tried sv-1.4.0.1, but its *test-suite* requires tasty-hedgehog >=0.1 && < 1.1 and the snapshot contains tasty-hedgehog-1.4.0.2 + - sv # tried sv-1.4.0.1, but its *test-suite* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - sv # tried sv-1.4.0.1, but its *test-suite* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 + - sv-cassava # tried sv-cassava-0.3, but its *test-suite* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 + - sv-core # tried sv-core-0.5, but its *test-suite* requires tasty >=0.11 && < 1.3 and the snapshot contains tasty-1.4.3 + - swagger2 # tried swagger2-2.8.7, but its *test-suite* requires hspec >=2.5.5 && < 2.11 and the snapshot contains hspec-2.11.7 + - swagger2 # tried swagger2-2.8.7, but its *test-suite* requires hspec-discover >=2.5.5 && < 2.9 and the snapshot contains hspec-discover-2.11.7 - system-fileio # tried system-fileio-0.3.16.4, but its *test-suite* requires the disabled package: chell - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell-quickcheck - tar # tried tar-0.5.1.1, but its *test-suite* requires the disabled package: bytestring-handle - - temporary-resourcet # tried temporary-resourcet-0.1.0.1, but its *test-suite* does not support: tasty-1.4.2.1 + - tasty-discover # tried tasty-discover-5.0.0, but its *test-suite* requires hspec >=2.7 && < 2.11 and the snapshot contains hspec-2.11.7 + - tasty-discover # tried tasty-discover-5.0.0, but its *test-suite* requires hspec-core >=2.7.10 && < 2.11 and the snapshot contains hspec-core-2.11.7 + - temporary-resourcet # tried temporary-resourcet-0.1.0.1, but its *test-suite* requires tasty >=1.0 && < 1.2 and the snapshot contains tasty-1.4.3 - test-framework # tried test-framework-0.8.2.0, but its *test-suite* requires the disabled package: libxml - - transient # tried transient-0.7.0.0, but its *test-suite* does not support: random-1.2.1 - - tzdata # tried tzdata-0.2.20201021.0, but its *test-suite* requires the disabled package: test-framework-th - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: generic-random-1.5.0.1 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - type-errors # tried type-errors-0.2.0.2, but its *test-suite* requires doctest >=0.16.0.1 && < 0.22 and the snapshot contains doctest-0.22.2 + - type-errors-pretty # tried type-errors-pretty-0.0.1.2, but its *test-suite* requires doctest >=0.16 && < 0.19 and the snapshot contains doctest-0.22.2 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires QuickCheck >=2.11.3 && < 2.14 and the snapshot contains QuickCheck-2.14.3 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires generic-random >=1.2.0.0 && < 1.3 and the snapshot contains generic-random-1.5.0.1 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires hspec >=2.0.0 && < 2.8 and the snapshot contains hspec-2.11.7 - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires the disabled package: time-qq - - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 - - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 - - validation # tried validation-1.1.2, but its *test-suite* does not support: lens-5.0.1 - - validation-selective # tried validation-selective-0.1.0.1, but its *test-suite* does not support: hspec-2.8.5 - - web-routes-th # tried web-routes-th-0.22.6.6, but its *test-suite* does not support: hspec-2.8.5 - - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: random-1.2.1 - - wreq # tried wreq-0.5.3.3, but its *test-suite* requires the disabled package: snap-server - - xmlhtml # tried xmlhtml-0.2.5.2, but its *test-suite* does not support: hspec-2.8.5 - - yesod-static-angular # tried yesod-static-angular-0.1.8, but its *test-suite* does not support: yesod-test-1.6.12 + - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* requires hspec >=2.0.0 && < 2.8 and the snapshot contains hspec-2.11.7 + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* requires QuickCheck >=2.9 && < 2.14 and the snapshot contains QuickCheck-2.14.3 + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* requires hspec >=2.4.1 && < 2.8 and the snapshot contains hspec-2.11.7 + - utf8-light # tried utf8-light-0.4.4.0, but its *test-suite* requires hspec >=2.3 && < 2.11 and the snapshot contains hspec-2.11.7 + - wai-session-redis # tried wai-session-redis-0.1.0.5, but its *test-suite* requires hspec < 2.10 and the snapshot contains hspec-2.11.7 + - wakame # tried wakame-0.1.0.0, but its *test-suite* requires tasty-discover >=4.2 && < 5.0 and the snapshot contains tasty-discover-5.0.0 + - wakame # tried wakame-0.1.0.0, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.0.2 + - web-routes-th # tried web-routes-th-0.22.8.1, but its *test-suite* requires hspec >=2.2 && < 2.11 and the snapshot contains hspec-2.11.7 + - web3-bignum # tried web3-bignum-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - web3-bignum # tried web3-bignum-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 + - web3-crypto # tried web3-crypto-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - web3-crypto # tried web3-crypto-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 + - web3-ethereum # tried web3-ethereum-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - web3-ethereum # tried web3-ethereum-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 + - web3-polkadot # tried web3-polkadot-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - web3-polkadot # tried web3-polkadot-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 + - web3-solidity # tried web3-solidity-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 + - web3-solidity # tried web3-solidity-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 + - wild-bind-x11 # tried wild-bind-x11-0.2.0.15, but its *test-suite* requires time >=1.5.0 && < 1.12 and the snapshot contains time-1.12.2 + - yesod-static-angular # tried yesod-static-angular-0.1.8, but its *test-suite* requires yesod-test >=1.2 && < 1.6 and the snapshot contains yesod-test-1.6.16 + - zm # tried zm-0.3.2, but its *test-suite* requires doctest >=0.11.1 && < 0.14 and the snapshot contains doctest-0.22.2 + - zm # tried zm-0.3.2, but its *test-suite* requires tasty >=0.11 && < 0.13 and the snapshot contains tasty-1.4.3 + - zm # tried zm-0.3.2, but its *test-suite* requires tasty-quickcheck >=0.8.1 && < 0.9.2 and the snapshot contains tasty-quickcheck-0.10.2 + - zm # tried zm-0.3.2, but its *test-suite* requires timeit >=1 && < 1.1 and the snapshot contains timeit-2.0 # End of Test bounds issues + # general failures + - aern2-mp # https://github.com/michalkonecny/aern2/issues/11 + + # ??? + - chronos # 1.1.5.1 chronos-test: executable not found + - do-list # 1.0.1 test: executable not found https://github.com/tserduke/do-list/issues/3 + - incremental-parser # 0.5.0.3 Main: executable not found + - streamt # executable not found + # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run @@ -7258,6 +8703,61 @@ skipped-tests: # PR to re-enable them. expected-test-failures: + # Compilation failures + - Spock # 0.14.0.0 + - blake2 # 0.3.0 + - blas-hs # 0.1.1.0 + - brick # 2.1.1 + - butter # 0.1.0.6 + - cabal-file-th # 0.2.7 + - cacophony # 0.10.1 https://github.com/centromere/cacophony/issues/15 + - cereal # 0.5.8.3 https://github.com/GaloisInc/cereal/issues/109 + - conduit-aeson # https://github.com/commercialhaskell/stackage/issues/6469 + - conduit-connection # 0.1.0.5 + - cryptohash # 0.11.9 Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built + - crypton-x509 # 1.7.6 https://github.com/kazu-yamamoto/crypton-certificate/issues/1 + - deriveJsonNoPrefix # 0.1.0.1 compile fail against aeson 2 + - do-notation # 0.1.0.2 + - flay # 0.4 + - generic-lens # https://github.com/commercialhaskell/stackage/issues/6377 + - geojson # 4.1.0 + - ghc-byteorder # 4.11.0.0.10 https://github.com/haskell-hvr/ghc-byteorder/issues/1 + - ghc-prof # Regression tests: /usr/bin/ld.gold: error: cannot find -lHStemporary-1.3-51ST9z47bmaL2YkhqqBGqn_p ... + - heap # 1.0.4 https://github.com/pruvisto/heap/issues/11 + - hourglass # 0.2.12 + - hweblib # 0.6.3 https://github.com/aycanirican/hweblib/issues/3 + - inline-r # 1.0.1 https://github.com/tweag/HaskellR/issues/371 + - leveldb-haskell + - lifted-base # 0.2.3.12 compile fail + - mfsolve # https://github.com/commercialhaskell/stackage/issues/6379 + - multiarg # 0.30.0.10 + - parameterized # 0.5.0.0 https://github.com/commercialhaskell/stackage/issues/5746 + - protobuf # 0.2.1.4 + - quickcheck-state-machine # 0.8.0 https://github.com/stevana/quickcheck-state-machine/issues/32 + - record-wrangler # 0.1.1.0 + - secp256k1-haskell # #5948/closed + - servant-static-th # 1.0.0.0 Tasty issue: https://github.com/commercialhaskell/stackage/issues/6090 + - snappy # Could not find module ‘Functions’ + - thread-supervisor # 0.2.0.0 + - twitter-types # 0.11.0 compile fail against aeson 2 + - type-of-html-static # 0.1.0.2 https://github.com/commercialhaskell/stackage/issues/5728 + - ua-parser # 0.7.7.0 compile fail against aeson 2 + - ua-parser # 0.7.7.0 https://github.com/commercialhaskell/stackage/issues/6440 + - vformat # 0.14.1.0 + - vivid-supercollider # 0.4.1.2 https://github.com/commercialhaskell/stackage/issues/4250 + - xml-html-qq # 0.1.0.1 + - xmlgen # 0.6.2.2 https://github.com/skogsbaer/xmlgen/issues/6 + + # Consistent test failures + - Allure # 0.11.0.0 + - ap-normalize # 0.1.0.1 ghc-9.6 + - astro # 0.4.3.0 https://github.com/aligusnet/astro/issues/8 + - generics-eot # 0.4.0.1 ghc-9.6 + - hsexif # 0.6.1.10 Missing test file + - pvar # 1.0.0.0 ghc-9.6 + - tar-conduit # https://github.com/snoyberg/tar-conduit/issues/33 + - markov-chain-usage-model # https://github.com/advancedtelematic/markov-chain-usage-model/issues/44 + # Intermittent failures or unreliable. These tests may pass when # re-enabled, but will eventually fail again. # @@ -7266,24 +8766,32 @@ expected-test-failures: - binary-instances # https://github.com/haskellari/binary-instances/issues/7 - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - capataz # https://github.com/roman/Haskell-capataz/issues/6 + - cardano-coin-selection # 1.0.1 https://github.com/input-output-hk/cardano-coin-selection/issues/93 - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 - crypto-numbers - - css-text # 0.1.2.2 https://github.com/yesodweb/css-text/issues/10 + - css-text # https://github.com/yesodweb/css-text/issues/10 - distributed-process - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - distributed-process-task + - dl-fedora # status 404 on http download - fft # test-fft: exited with: ExitFailure (-11) - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 + - friday # https://github.com/RaphaelJ/friday/issues/37 - fsnotify # Often runs out of inotify handles - hastache + - hedn - idris # https://github.com/fpco/stackage/issues/1382 - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 + - kdt # 0.2.5 https://github.com/giogadi/kdt/issues/7 + - lapack - math-functions # https://github.com/bos/math-functions/issues/25 - - matplotlib # https://github.com/fpco/stackage/issues/2365 - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 - network # Unfortunately network failures seem to happen haphazardly - nsis # Intermittent on non-Windows systems - - statistics # https://github.com/bos/statistics/issues/42 + - tdigest # 0.3 https://github.com/phadej/tdigest/issues/46 + - texmath # https://github.com/jgm/texmath/issues/224 + - tree-diff # 0.3.0.1 https://github.com/haskellari/tree-diff/issues/79 + - typst # https://github.com/jgm/typst-hs/issues/11 # Requires running servers, accounts, or a specific environment. # @@ -7296,6 +8804,7 @@ expected-test-failures: - HaRe # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 - IPv6DB - accelerate-bignum # CUDA GPU + - aeson-typescript # needs either yarn or npm; one of them is needed to install a TypeScript compiler. - alex - amqp - aws # AWS Credentials @@ -7312,6 +8821,8 @@ expected-test-failures: - datadog # requires API keys in env vars https://github.com/fpco/stackage/pull/3308#issuecomment-369535040 - dbcleaner # Requires running PostgreSQL server - dbmigrations # PostgreSQL + - dbus # #6373/closed + - dns # https://github.com/commercialhaskell/stackage/issues/6374 - drifter-postgresql # PostgreSQL - egison # executable not found https://github.com/egison/egison/issues/250 - esqueleto # mysql and postgresql @@ -7333,14 +8844,18 @@ expected-test-failures: - haskell-tools-cli # https://github.com/haskell-tools/haskell-tools/issues/230 - haskell-tools-refactor # https://github.com/haskell-tools/haskell-tools/issues/231 - hasql # PostgreSQL + - hasql-dynamic-statements # PostgreSQL - hasql-notifications # PostgreSQL - hasql-queue - hasql-transaction # PostgreSQL - hedis + - hexml-lens # Access to web.archive.org is unreliable. - hie-bios # cabal, stack, ghc; see https://github.com/commercialhaskell/stackage/issues/5025 - - hnix # #5469/closed + - hjsmin # Test-runner expects a cabal-style 'dist-newstyle' directory - hocilib # oracle + - http-api-data-qq # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 + - http-client-tls # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 - http2 # executable not found https://github.com/kazu-yamamoto/http2/issues/22 - hworker @@ -7349,12 +8864,13 @@ expected-test-failures: - jvm - katip-elasticsearch # elasticsearch - log # ElasticSearch - - lsp-test - lxd-client # Needs LXD, not available on debian - lz4 # executable not found https://github.com/commercialhaskell/stackage/issues/6226 - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 + - matplotlib # https://github.com/fpco/stackage/issues/2365 - memcached-binary # memcached - milena + - minio-hs # 1.6.0 Depends on AWS API - mongoDB # Requires local MongoDB server - mysql # MySQL - mysql-haskell # Requires local mysql server with a test account, and binlog enabled. @@ -7383,20 +8899,28 @@ expected-test-failures: - rattle # needs fsatrace - redis-io - rel8 + - req-conduit # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). + - rest-rewrite # posix_spawnp - rethinkdb - rethinkdb-client-driver - riak # needs riak server on localhost:8098 - sdl2 # "Failed to connect to the Mir Server" - sendgrid-v3 # Requires sendgrid API key in env #5951/closed - serialport # "The tests need two serial ports as command line arguments" https://github.com/jputcu/serialport/issues/30 + - servant-rate-limit # redis + - serversession-backend-persistent # persistent, see https://github.com/commercialhaskell/stackage/pull/6655#issuecomment-1198868074 - serversession-backend-redis # redis - shake # Needs ghc on $PATH with some installed haskell packages - slack-api # needs api key https://github.com/commercialhaskell/stackage/pull/5345 - - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account - sourcemap # requires npm installed packages + - squeal-postgresql # ConnectionException "LibPQ.exec", https://github.com/commercialhaskell/stackage/issues/7108 + - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account + - sydtest-wai # epollControl does not exist. Stackage server issue? - users-persistent # sqlite - users-postgresql-simple # PostgreSQL + - yesod-core - wai-cors # PhantomJS + - wai-middleware-delegate # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - wai-rate-limit-redis # Redis - wai-session-postgresql # PostgreSQL - wai-session-redis # https://github.com/commercialhaskell/stackage/pull/5980 @@ -7411,176 +8935,149 @@ expected-test-failures: # fixed by adding these files to `extra-source-files` in the # .cabal file. # + - aeson-combinators # https://github.com/turboMaCk/aeson-combinators/issues/31 + - brittany # https://github.com/commercialhaskell/stackage/issues/6465 - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - - doctest - - doctest-discover # 0.1.0.9 https://github.com/karun012/doctest-discover/issues/22 + - doctest-discover # https://github.com/karun012/doctest-discover/issues/33 + - enum-text # https://github.com/cdornan/enum-text/issues/3 - ghc-events # https://github.com/haskell/ghc-events/issues/70 - - hspec-core # https://github.com/commercialhaskell/stackage/issues/6291 + - gitlab-haskell # https://github.com/commercialhaskell/stackage/issues/6088 - hspec-junit-formatter # https://github.com/freckle/hspec-junit-formatter/issues/14 - persistent # https://github.com/commercialhaskell/stackage/issues/6037 - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 + - wai-saml2 # https://github.com/mbg/wai-saml2/issues/44 - # Testcase assertion failures, or other runtime failures. + # Testcase failures, or other runtime failures. # These can be real testsuite bugs, or maybe limitations in test cases or the test setup. - # - - JuicyPixels-blurhash - - aeson-casing - - aeson-schemas # https://github.com/commercialhaskell/stackage/issues/6289 - - base32 - - blaze-colonnade - - bsb-http-chunked - - c2hs - - character-cases # https://github.com/aiya000/hs-character-cases/issues/3 - - colonnade - - composable-associations-aeson - - control-dsl - - crypto-enigma - - curl-runnings - - debian - - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 - - dimensional - - download # https://github.com/fpco/stackage/issues/2811 - - duration - - ede - - error # https://github.com/commercialhaskell/stackage/issues/6300 - - fixed-vector-hetero - - freckle-app # https://github.com/commercialhaskell/stackage/issues/6197 - - genvalidity-persistent - - genvalidity-property - - ghc-prof - - gingersnap - - github-types - - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - - haskoin-core - - hpack # https://github.com/commercialhaskell/stackage/issues/4512 - - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 - - hspec-golden-aeson - - incremental-parser # 0.5.0.2 - - jose - - justified-containers - - jwt - - katip - - lens-regex + - OrderedBits # 0.0.2.0 + - ShellCheck # https://github.com/commercialhaskell/stackage/issues/6867 + - ace # failed with ghc-9.4.4 + - algebraic-graphs # Module not visible https://github.com/commercialhaskell/stackage/issues/4670 + - binary-generic-combinators # 0.4.4.0 negative quickcheck resize + - bsb-http-chunked # 0.0.0.4 + - c2hs # 0.28.8 + - cfenv # 0.1.0.0 https://github.com/tomphp/haskell-cfenv/issues/1 + - character-cases # 0.1.0.6 https://github.com/aiya000/hs-character-cases/issues/3 + - codec-beam # 0.2.0 posix_spawnp: does not exist + - colonnade # 1.2.0.2 https://github.com/andrewthad/colonnade/issues/31 + - control-dsl # 0.2.1.3 + - crypt-sha512 # 0 Use -p '/crypt.$6$rounds=10$roundstoolow/' to rerun this test only. + - curl-runnings # 0.17.0 + - download # 0.3.2.7 https://github.com/fpco/stackage/issues/2811 + - duration # 0.2.0.0 + - ede # 0.3.3.0 hashable order dependent + - fixed-vector-hetero # 0.6.1.1 + - generic-optics # 2.2.1.0 optimization output https://github.com/kcsongor/generic-lens/issues/133 + - github-types # https://github.com/commercialhaskell/stackage/issues/6549 + - haskoin-node # https://github.com/commercialhaskell/stackage/issues/6769 + - heist # https://github.com/commercialhaskell/stackage/issues/6765 + - hgeometry-combinatorial # 0.14 + - hruby # 0.5.1.0 + - hspec-golden-aeson # 0.9.0.0 + - invertible # 0.2.0.8 executable not found + - justified-containers # 0.3.0.0 + - jwt # 0.11.0 + - lattices # quicheck flakiness - list-transformer - - lucid # https://github.com/chrisdone/lucid/issues/109 - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - massiv-io - megaparsec-tests + - memcache # 0.3.0.1 executable not found - mighty-metropolis # https://github.com/jtobin/mighty-metropolis/issues/6 - mixpanel-client # https://github.com/domenkozar/mixpanel-client/issues/7 - - mmark # https://github.com/mmark-md/mmark/issues/80 - - mmark-ext # https://github.com/mmark-md/mmark/issues/80 + - morpheus-graphql-app - mwc-random - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - nri-observability # https://github.com/commercialhaskell/stackage/issues/6179 - nri-prelude # https://github.com/commercialhaskell/stackage/issues/6179 - - numhask-array - ochintin-daicho - openapi3 + - openssl-streams # 1.2.3.0 asn1 encoding wrong tag + - opentelemetry-extra # 0.8.0 negative quickcheck resize + - optics # 0.4.2.1 - pcre-heavy - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 + - pkgtreediff # 0.6.0 - posix-paths + - posix-pty # 0.2.2 - prettyprinter - prettyprinter-ansi-terminal + - product-profunctors # 0.11.0.3 executable not found - rando # https://github.com/commercialhaskell/stackage/issues/4249 - rank1dynamic + - readline # 1.0.3.0 + - req # https://github.com/commercialhaskell/stackage/issues/6904 - rescue + - roc-id # 0.1.0.0 negative quickcheck resize - rose-trees - safe-decimal - simple-affine-space - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + - singletons-base - sized - spatial-math + - sqids + - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/6 - subcategories + - sydtest # https://github.com/commercialhaskell/stackage/issues/6729 + - sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/6798 - tasty-fail-fast + - tasty-html # https://github.com/commercialhaskell/stackage/issues/6966 + - thyme # 0.4 - triplesec - turtle - type-level-kv-list + - tzdata # 0.2.20230322.0 - https://github.com/ysangkok/haskell-tzdata/issues/3 - unicode-show - universe-some - universum - utf8-conversions - varying - vivid-osc + - wai-extra # https://github.com/yesodweb/wai/issues/886 - wakame - world-peace - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - xmlbf + - yarn-lock + - yesod-gitrev # needs a git repo https://github.com/commercialhaskell/stackage/issues/6132 + - yesod-markdown # https://github.com/pbrisbin/yesod-markdown/issues/77 # Assertion failures due to module name ambiguity. # These _should_ be fixed by using the `hide` section of this file - reanimate # https://github.com/commercialhaskell/stackage/issues/5626 - # Compilation failures - - aeson-commit - - base16 # #5948/closed - - blake2 - - blas-hs - - bound # https://github.com/commercialhaskell/stackage/issues/6274 - - butter - - cabal-file-th - - conduit-connection - - config-ini # https://github.com/aisamanra/config-ini/issues/22 - - construct # 0.3.0.2 - - data-diverse - - do-notation - - domain-optics # https://github.com/commercialhaskell/stackage/pull/6102 - - flat - - flay - - fmt - - focuslist - - generic-lens # https://github.com/commercialhaskell/stackage/issues/6290 - - geojson - - hsc2hs - - hsini - - htoml - - hweblib # https://github.com/aycanirican/hweblib/issues/3 - - LambdaHack # https://github.com/commercialhaskell/stackage/issues/6276 - - leveldb-haskell - - mono-traversable - - multiarg - - murmur3 - - parameterized # # https://github.com/commercialhaskell/stackage/issues/5746 - - protobuf - - record-wrangler - - relapse # #5948/closed - - require # compilation failure https://github.com/commercialhaskell/stackage/issues/6093 - - secp256k1-haskell # #5948/closed - - servant-static-th # Tasty issue: https://github.com/commercialhaskell/stackage/issues/6090 - - snap-core # random 1.2 - - snappy # Could not find module ‘Functions’ - - string-random # https://github.com/hiratara/hs-string-random/issues/16 - - text-icu # https://github.com/bos/text-icu/issues/32 - - thread-supervisor - - type-map - - type-of-html-static # https://github.com/commercialhaskell/stackage/issues/5728 - - typecheck-plugin-nat-simple - - uncertain - - vector-algorithms # http://hub.darcs.net/dolio/vector-algorithms/issue/9 - - vivid-supercollider # https://github.com/commercialhaskell/stackage/issues/4250 - - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - - yesod-gitrev # https://github.com/commercialhaskell/stackage/issues/6132 - # Recursive deps https://github.com/fpco/stackage/issues/1818 - options - text # 1.2.2.1 # Problem on the stackage build server, we need to dig deeper into # these if we want them fixed - - skein # openfile: does not exist https://github.com/fpco/stackage/issues/1187 + - domain-optics # `demo`: executable not found + - ghci-hexcalc # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 - haskell-tools-daemon # openFile: permission denied https://github.com/fpco/stackage/issues/2502 - - rounded # segfault - isocline # segfault https://github.com/daanx/isocline/issues/1 + - rounded # segfault - shake-language-c # Cannot reproduce locally, looks like it may be a bug in Stack or curator + - skein # openfile: does not exist https://github.com/fpco/stackage/issues/1187 + - genvalidity-text # Suddenly not able to find the executable + - safe-coloured-text-layout # Golden output not found + - ListLike # listlike-tests: executable not found + - lsp-test # 'posix_spawnp' does not exist, 'hPutBuf: resource vanished (Broken Pipe)' https://github.com/commercialhaskell/stackage/issues/7189 # doctests can be flaky on the build server, add packages here if # they start causing issues. - bookkeeping + - detour-via-sci # https://github.com/commercialhaskell/stackage/issues/6360 - dhall + - dimensional # CPP issue - doctest-driver-gen - - email-validate + - doctest-parallel + - dyre + - envelope # https://github.com/commercialhaskell/stackage/issues/6383 + - error + - fmt # https://github.com/commercialhaskell/stackage/issues/6375 - greskell - greskell-core - headroom @@ -7588,41 +9085,19 @@ expected-test-failures: - hledger-lib - iproute - kawhi + - lens-regex - makefile # Doctests require hidden Glob package - - multiset # # Doctests require hidden Glob package - - perf - - prometheus-client + - model + - multiset # Doctests require hidden Glob package + - servant-openapi3 - xml-indexed-cursor - yesod-paginator # Misc. Please check if there is a better section before adding more packages here. - - Diff # https://github.com/commercialhaskell/stackage/issues/4289 - - algebraic-graphs # Module not visible https://github.com/commercialhaskell/stackage/issues/4670 - - binary-parsers # runtime failure https://github.com/winterland1989/binary-parsers/issues/3 - - bugsnag-haskell # Module not visible https://github.com/commercialhaskell/stackage/issues/4759 - - cacophony # https://github.com/centromere/cacophony/issues/15 - - cfenv # https://github.com/tomphp/haskell-cfenv/issues/1 - - cryptohash # Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built - - dbus # https://github.com/commercialhaskell/stackage/issues/5587 - - dns # https://github.com/kazu-yamamoto/dns/issues/153 - - envelope # Module not visible https://github.com/commercialhaskell/stackage/issues/4669 - - exp-pairs # https://github.com/Bodigrim/exp-pairs/issues/16 - - fused-effects # https://github.com/fused-effects/fused-effects/issues/413 - - generic-optics # https://github.com/kcsongor/generic-lens/issues/133 - - ghc-exactprint # https://github.com/alanz/ghc-exactprint/issues/82 - - ghci-hexcalc # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 - - gitlab-haskell # https://github.com/commercialhaskell/stackage/issues/6088 - - heap # https://github.com/pruvisto/heap/issues/11 - - hjsmin # Test-runner expects a cabal-style 'dist-newstyle' directory - hspec-expectations-pretty-diff # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - hw-kafka-client # missing exe https://github.com/commercialhaskell/stackage/pull/5542 - - invertible # https://github.com/dylex/invertible/issues/4 - - language-docker # https://github.com/commercialhaskell/stackage/issues/5407 - - lzma-conduit # https://github.com/alphaHeavy/lzma-conduit/issues/19 - pandoc # https://github.com/jgm/pandoc/issues/5582 - - password # Module not visible https://github.com/cdepillabout/password/issues/2 - - password-instances # Module not visible https://github.com/commercialhaskell/stackage/issues/4653 - pcg-random # https://github.com/cchalmers/pcg-random/pull/7 - persistent-mongoDB # Requires a running server - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/4764 @@ -7638,11 +9113,9 @@ expected-test-failures: - servant-ruby # Module not visible https://github.com/commercialhaskell/stackage/issues/4650 - skews # https://github.com/iij-ii/direct-hs/issues/100 - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - - tar-conduit # to get fixed in version after 0.3.2 https://github.com/snoyberg/tar-conduit/issues/28 - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4722 - threads # https://github.com/basvandijk/threads/issues/10 - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - - yesod-core # https://github.com/yesodweb/yesod/issues/1711 # Please review the sections above before adding packages to a new section or to Misc. @@ -7669,11 +9142,16 @@ expected-haddock-failures: - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 - hw-json # https://github.com/commercialhaskell/stackage/issues/5014 - hw-rankselect + - doctest-parallel # https://github.com/commercialhaskell/stackage/issues/5014 + - tztime # https://github.com/commercialhaskell/stackage/issues/5014 + # crashes with 9.4.3 + - MissingH # https://github.com/haskell-hvr/missingh/issues/61 # end of expected-haddock-failures # For packages with haddock issues skipped-haddocks: +- amazonka-ec2 # Around 7 GB memory consumption - so do not build haddock to optimize overall performance. For more details see: https://gitlab.haskell.org/ghc/ghc/-/issues/19203, https://github.com/brendanhay/amazonka/issues/549 and related issues. - modular # Module uses compiler plugins https://github.com/haskell/haddock/issues/900 # end of skipped-haddocks @@ -7681,46 +9159,55 @@ skipped-haddocks: # benchmarks, and therefore failures are only for building, not running. expected-benchmark-failures: # Compilation failures - - OrderedBits - - aeson-combinators - - cipher-blowfish # https://github.com/vincenthz/hs-crypto-cipher/issues/46 + - OrderedBits # 0.0.2.0 + - cacophony # 0.10.1 + - chronos # 1.1.5.1 Ambiguous occurrence ‘Thyme.defaultTimeLocale’ - cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5 - - cryptohash # https://github.com/vincenthz/hs-cryptohash/pull/43 - - egison # https://github.com/egison/egison/issues/249 - - extensible # via freer-effects https://github.com/fumieval/extensible/issues/12 - - genvalidity-persistent # https://github.com/commercialhaskell/stackage/issues/5903 - - incremental-parser # 0.5.0.2 + - cryptohash # 0.11.9 https://github.com/vincenthz/hs-cryptohash/pull/43 + - do-list # 1.0.1 https://github.com/tserduke/do-list/issues/3 + - fast-builder # 0.1.3.0 compile fail against aeson 2 + - genvalidity-text # 1.0.0.1 https://github.com/NorfairKing/validity/issues/105 + - hedis # 0.15.2 https://github.com/informatikr/hedis/issues/214 + - incremental-parser # 0.5.0.3 - lz4 # https://github.com/fpco/stackage/issues/3510 + - memcache # 0.3.0.1 + - product-profunctors # 0.11.1.1 - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - - serialise # https://github.com/commercialhaskell/stackage/issues/6340 - - thyme + - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/5 + - ua-parser # 0.7.7.0 compile fail against aeson 2 - universum - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - # end of expected-benchmark-failures -# Benchmarks which should not be built. Note that Stackage builds benchmarks but does not run them. +# Benchmarks which should not be built. +# Note that Stackage builds benchmarks but does not run them. # By skipping a benchmark, we do not pull in the build dependencies # Packages should only be added here if required by `stackage-curator check' # or if Setup fails because of missing foreign libraries. # Otherwise place them in expected-benchmark-failures. skipped-benchmarks: - # aeson-2 - - jsonifier - # Cyclic dependencies + - Agda + - aeson + - indexed-traversable-instances + - semialign - attoparsec - case-insensitive - cassava - clock - criterion + - criterion-measurement + - foldable1-classes-compat - foundation - hashable # https://github.com/fpco/stackage/issues/1818 - hspec + - microstache - nanospec - scientific + - statistics + - tree-diff - vector-binary-instances # Timeouts @@ -7734,10 +9221,6 @@ skipped-benchmarks: # Maintainers who don't want to update benchmarks # Only re-enable if requested. ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 - - cassava - - cryptohash-md5 - - cryptohash-sha1 - - cryptohash-sha256 - uuid - uuid-types # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 @@ -7761,7 +9244,6 @@ skipped-benchmarks: - fgl - fgl-arbitrary - graphviz - - graphviz - wl-pprint-text # @phadej - dlist-nonempty # criterion-1.3 @@ -7773,38 +9255,49 @@ skipped-benchmarks: # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. # # Benchmark bounds issues - - IntervalMap # tried IntervalMap-0.6.1.2, but its *benchmarks* requires the disabled package: SegmentTree - - accelerate-bignum # tried accelerate-bignum-0.3.0.0, but its *benchmarks* requires the disabled package: accelerate-io-vector - - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: accelerate-llvm-native-1.3.0.0 - - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: criterion-1.5.11.0 - - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* does not support: criterion-1.5.11.0 - - buffer-builder # tried buffer-builder-0.2.4.7, but its *benchmarks* requires the disabled package: json-builder - - chronos # tried chronos-1.1.3, but its *benchmarks* requires the disabled package: thyme + - IntervalMap # tried IntervalMap-0.6.2.1, but its *benchmarks* requires the disabled package: SegmentTree + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* requires accelerate-llvm-native >=1.1 && < 1.2 and the snapshot contains accelerate-llvm-native-1.3.0.0 + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* requires criterion >=1.0 && < 1.5 and the snapshot contains criterion-1.6.3.0 + - avers # tried avers-0.0.17.1, but its *benchmarks* requires criterion >=1.1.4.0 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* requires criterion ==1.1.* and the snapshot contains criterion-1.6.3.0 + - buffer-builder # tried buffer-builder-0.2.4.8, but its *benchmarks* requires the disabled package: json-builder - cipher-aes # tried cipher-aes-0.2.11, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - cipher-camellia # tried cipher-camellia-0.0.2, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - - cipher-des # tried cipher-des-0.0.6, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - cipher-rc4 # tried cipher-rc4-0.1.4, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - - distributed-process # tried distributed-process-0.7.4, but its *benchmarks* does not support: network-transport-tcp-0.8.0 - - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* does not support: criterion-1.5.11.0 - - elynx-tree # tried elynx-tree-0.6.1.0, but its *benchmarks* requires the disabled package: elynx-tools + - cmark-gfm # tried cmark-gfm-0.2.6, but its *benchmarks* requires the disabled package: cheapskate + - csg # tried csg-0.1.0.6, but its *benchmarks* requires criterion < 1.6 and the snapshot contains criterion-1.6.3.0 + - csg # tried csg-0.1.0.6, but its *benchmarks* requires vector < 0.13 and the snapshot contains vector-0.13.1.0 + - distributed-process # tried distributed-process-0.7.4, but its *benchmarks* requires the disabled package: network-transport-tcp + - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* requires criterion >=0.8 && < 1.2 and the snapshot contains criterion-1.6.3.0 - extensible-effects # tried extensible-effects-5.0.0.1, but its *benchmarks* requires the disabled package: test-framework-th - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: aeson-1.5.6.0 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: time-1.9.3 + - filepath-bytestring # tried filepath-bytestring-1.4.2.1.13, but its *benchmarks* requires filepath >=1.4.2 && < =1.4.2.1 and the snapshot contains filepath-1.4.100.4 + - galois-field # tried galois-field-1.0.2, but its *benchmarks* requires criterion >=1.5 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - hasbolt # tried hasbolt-0.1.6.3, but its *benchmarks* requires hspec >=2.4.1 && < 2.11 and the snapshot contains hspec-2.11.7 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 + - hasmin # tried hasmin-1.0.3, but its *benchmarks* requires criterion >=0.11 && < 1.6 and the snapshot contains criterion-1.6.3.0 - hip # tried hip-1.5.6.0, but its *benchmarks* requires the disabled package: repa-algorithms - - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *benchmarks* requires the disabled package: hw-hspec-hedgehog - - o-clock # tried o-clock-1.2.1, but its *benchmarks* requires the disabled package: tiempo - - polysemy # tried polysemy-1.6.0.0, but its *benchmarks* requires the disabled package: freer-simple - - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: PSQueue - - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: fingertree-psqueue + - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *benchmarks* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 + - lz4 # tried lz4-0.2.3.1, but its *benchmarks* requires the disabled package: snappy + - markup-parse # tried markup-parse-0.1.1, but its *benchmarks* requires the disabled package: html-parse + - min-max-pqueue # tried min-max-pqueue-0.1.0.2, but its *benchmarks* requires criterion >=1.4.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - minisat-solver # tried minisat-solver-0.1, but its *benchmarks* requires the disabled package: easyrender + - normalization-insensitive # tried normalization-insensitive-2.0.2, but its *benchmarks* requires criterion >=0.6.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - o-clock # tried o-clock-1.4.0, but its *benchmarks* requires the disabled package: tiempo + - pasta-curves # tried pasta-curves-0.0.1.0, but its *benchmarks* requires criterion >=1.5 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - pg-transact # tried pg-transact-0.3.2.0, but its *benchmarks* requires the disabled package: tmp-postgres + - pipes # tried pipes-4.3.16, but its *benchmarks* requires optparse-applicative >=0.12 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 + - pred-trie # tried pred-trie-0.6.1, but its *benchmarks* requires the disabled package: sets - regex-applicative # tried regex-applicative-0.3.4, but its *benchmarks* requires the disabled package: parsers-megaparsec - - sbv # tried sbv-8.17, but its *benchmarks* requires the disabled package: bench-show - - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* does not support: criterion-1.5.11.0 - - superbuffer # tried superbuffer-0.3.1.1, but its *benchmarks* does not support: criterion-1.5.11.0 + - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* requires criterion >=0.6.2.1 && < 1.4 and the snapshot contains criterion-1.6.3.0 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *benchmarks* requires shelly >=1.6.8 && < 1.10 and the snapshot contains shelly-1.12.1 + - superbuffer # tried superbuffer-0.3.1.2, but its *benchmarks* requires criterion < 1.3 and the snapshot contains criterion-1.6.3.0 + - sv # tried sv-1.4.0.1, but its *benchmarks* requires criterion >=1.3 && < 1.6 and the snapshot contains criterion-1.6.3.0 - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: criterion-plus - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: stm-stats - - typerep-map # tried typerep-map-0.4.0.0, but its *benchmarks* requires the disabled package: dependent-sum - - tz # tried tz-0.1.3.5, but its *benchmarks* requires the disabled package: thyme - - unicode-transforms # tried unicode-transforms-0.3.8, but its *benchmarks* does not support: path-0.9.1 + - vectortiles # tried vectortiles-1.5.1, but its *benchmarks* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 + - xeno # tried xeno-0.6, but its *benchmarks* requires the disabled package: bytestring-mmap - xxhash-ffi # tried xxhash-ffi-0.2.0.0, but its *benchmarks* requires the disabled package: xxhash # End of Benchmark bounds issues @@ -7861,7 +9354,6 @@ github-users: stackbuilders: - jsl - sestrella - - juanpaucar - CristhianMotoche scotty-web: - RyanGlScott @@ -7880,9 +9372,6 @@ github-users: - klappvisor fpinsight: - thierry-b - arithmoi: - - Bodigrim - - cartazio IxpertaSolutions: - Siprj - liskin @@ -8002,27 +9491,26 @@ hide: # # This only supports pinning to the initial release (revision 0), not to an arbitrary revision. no-revisions: -- hjsonpointer - tls - mime-mail - basement - cryptonite - foundation - gauge -- stack - http-download -- pantry - rio-prettyprint - hi-file-parser +- aura +# Note, this no longer actually does anything with curator2 unfortunately: # Do not build these packages in parallel with others. Useful for high memory # usage. non-parallel-builds: +- amazonka-ec2 # Around 6 GB memory consumption - so do not build in parallel to optimize overall performance. For more details see: https://gitlab.haskell.org/ghc/ghc/-/issues/19203, https://github.com/brendanhay/amazonka/issues/549 and related issues. - pandoc - gogol-dfareporting - gogol-compute - idris -- amazonka-ec2 - massiv-persist - massiv-serialise From 25bedc3f2c67d38eef36053e8b5d611b5872834c Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 18 Dec 2023 13:17:08 +0100 Subject: [PATCH 07/14] Run against LTS 22.0 --- etc/lts-constraints/src/Main.hs | 2 +- lts-build-constraints.yaml | 42 ++++++++++++++++----------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs index b46080472..d58bb1c18 100644 --- a/etc/lts-constraints/src/Main.hs +++ b/etc/lts-constraints/src/Main.hs @@ -29,7 +29,7 @@ data State main :: IO () main = do - map <- snapshotMap <$> loadSnapshot "../../../stackage-snapshots/nightly/2023/12/15.yaml" + map <- snapshotMap <$> loadSnapshot "../../../stackage-snapshots/lts/22/0.yaml" output <- openFile target WriteMode let putLine = liftIO . T.hPutStrLn output lines <- T.lines <$> T.readFile src diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml index 74a5eb314..2a2972117 100644 --- a/lts-build-constraints.yaml +++ b/lts-build-constraints.yaml @@ -285,10 +285,10 @@ packages: - aeson-combinators ^>= 0.1.1.0 "Fernando Freire @dogonthehorizon": - - hal ^>= 1.0.0.1 + - hal ^>= 1.0.1 "Nathan Fairhurst @iamfromspace": - - hal ^>= 1.0.0.1 + - hal ^>= 1.0.1 "Daniel Taskoff @dtaskoff": - hlibcpuid ^>= 0.2.0 @@ -1110,7 +1110,7 @@ packages: - compensated ^>= 0.8.3 - compressed < 0 - concurrent-supply ^>= 0.1.8 - - constraints ^>= 0.13.4 + - constraints ^>= 0.14 - contravariant ^>= 1.5.5 - distributive ^>= 0.6.2.1 - discrimination ^>= 0.5 @@ -1161,7 +1161,7 @@ packages: - speculation < 0 - streams ^>= 3.3.2 - structs ^>= 0.1.9 - - tagged ^>= 0.8.7 + - tagged ^>= 0.8.8 - tagged-transformer ^>= 0.8.2 - transformers-compat ^>= 0.7.2 - trifecta ^>= 2.1.3 @@ -1201,7 +1201,7 @@ packages: - construct < 0 "Brent Yorgey @byorgey": - - active ^>= 0.2.0.18 + - active ^>= 0.2.1 - statestack ^>= 0.3.1.1 - diagrams ^>= 1.4.1 - diagrams-builder ^>= 0.8.0.6 @@ -3068,8 +3068,8 @@ packages: - html-entity-map ^>= 0.1.0.0 - identicon ^>= 0.2.2 - lame ^>= 0.2.2 - - megaparsec ^>= 9.4.1 - - megaparsec-tests ^>= 9.4.1 + - megaparsec ^>= 9.5.0 + - megaparsec-tests ^>= 9.5.0 - mmark ^>= 0.0.7.6 - mmark-cli ^>= 0.0.5.1 - mmark-ext ^>= 0.2.1.5 @@ -3340,8 +3340,8 @@ packages: - doclayout ^>= 0.4.0.1 - doctemplates ^>= 0.11 - emojis ^>= 0.1.3 - - pandoc ^>= 3.1.10 - - pandoc-cli ^>= 3.1.10 + - pandoc ^>= 3.1.11 + - pandoc-cli ^>= 3.1.11 - pandoc-server ^>= 0.1.0.4 - citeproc ^>= 0.8.1 - commonmark ^>= 0.2.4.1 @@ -3353,7 +3353,7 @@ packages: - skylighting-format-blaze-html ^>= 0.1.1.1 - skylighting-format-context ^>= 0.1.0.2 - skylighting-format-latex ^>= 0.1 - - typst ^>= 0.4 + - typst ^>= 0.5 - typst-symbols ^>= 0.1.5 "Karun Ramakrishnan @karun012": @@ -3391,7 +3391,7 @@ packages: "Alex McLean @yaxu": - tidal ^>= 1.9.4 - - tidal-link ^>= 1.0.1 + - tidal-link ^>= 1.0.2 - hosc ^>= 0.20 "Kei Hibino @khibino": @@ -3427,7 +3427,7 @@ packages: "Fraser Tweedale @frasertweedale": - concise ^>= 0.1.0.1 - dyre ^>= 0.9.2 - - jose ^>= 0.10.0.1 + - jose ^>= 0.11 "Yoshikuni Jujo @YoshikuniJujo": - zot ^>= 0.0.3 @@ -4575,8 +4575,8 @@ packages: - file-path-th ^>= 0.1.0.0 "Raghu Kaippully @rkaippully": - - webgear-core ^>= 1.0.5 - - webgear-openapi ^>= 1.0.5 + - webgear-core < 0 + - webgear-openapi < 0 - webgear-server < 0 # 1.0.5 compile fail https://github.com/haskell-webgear/webgear/issues/16 "Alex Washburn @recursion-ninja": @@ -5080,7 +5080,7 @@ packages: - ipa < 0 "Andreas Herrmann @aherrmann": - - capability ^>= 0.5.0.1 + - capability < 0 "Dustin Sallings @dustin": - net-mqtt ^>= 0.8.6.0 @@ -8044,15 +8044,15 @@ packages: - th-abstraction ^>= 0.5.0.0 && <0.6.0.0 # https://github.com/commercialhaskell/stackage/issues/7205 - - megaparsec ^>= 9.4.1 && <9.6 - - megaparsec-tests ^>= 9.4.1 && <9.6 + - megaparsec ^>= 9.5.0 && <9.6 + - megaparsec-tests ^>= 9.5.0 && <9.6 # https://github.com/commercialhaskell/stackage/issues/7106 - tls ^>= 1.8.0 && <1.9 # https://github.com/commercialhaskell/stackage/issues/7111 - # tasty < 1.5 - # tasty-quickcheck < 0.10.3 + - tasty ^>= 1.4.3 && <1.5 + - tasty-quickcheck ^>= 0.10.2 && <0.10.3 # https://github.com/commercialhaskell/stackage/issues/7124 - mpi-hs ^>= 0.7.2.0 && <0.7.3 @@ -8073,13 +8073,13 @@ packages: - th-desugar ^>= 1.15 && <1.16 # https://github.com/commercialhaskell/stackage/issues/7146 - - constraints ^>= 0.13.4 && <0.14 + - constraints ^>= 0.14 && <0.14 # https://github.com/commercialhaskell/stackage/issues/7159 - Diff ^>= 0.4.1 && <0.5 # https://github.com/commercialhaskell/stackage/issues/7168 - - jose ^>= 0.10.0.1 && <0.11 + - jose ^>= 0.11 && <0.11 # https://github.com/commercialhaskell/stackage/issues/7178 - cassava-megaparsec ^>= 2.0.4 && <2.1 From 8518a38303801dcf0cd9a44d5fedada7d2b13b22 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 18 Dec 2023 14:19:25 +0100 Subject: [PATCH 08/14] Add check-lts command --- .gitignore | 1 + check-lts | 14 ++++++++++++++ lts-build-constraints.yaml | 0 3 files changed, 15 insertions(+) create mode 100755 check-lts mode change 100644 => 100755 lts-build-constraints.yaml diff --git a/.gitignore b/.gitignore index 3df030f94..96237474f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ check-plan.yaml /constraints.yaml /snapshot.yaml /snapshot-incomplete.yaml +/constraints.yaml.previous diff --git a/check-lts b/check-lts new file mode 100755 index 000000000..e23566cc9 --- /dev/null +++ b/check-lts @@ -0,0 +1,14 @@ +#!/bin/bash + +# Convenience script for checking constraints locally + +cd `dirname $0` + +export GHCVER=$(sed -n "s/^ghc-version: \"\(.*\)\"/\1/p" "lts-build-constraints.yaml") + +LTS="lts-$@" +curator update && + curator constraints --target=$LTS && + curator snapshot-incomplete --target=$LTS && + curator snapshot && + stack --resolver ghc-$GHCVER exec curator check-snapshot diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml old mode 100644 new mode 100755 From 9f73118cb7179b1909a0aadcbf983dfce1280083 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Mon, 18 Dec 2023 14:22:21 +0100 Subject: [PATCH 09/14] Update --- lts-build-constraints.yaml | 33 ++++++--------------------------- 1 file changed, 6 insertions(+), 27 deletions(-) diff --git a/lts-build-constraints.yaml b/lts-build-constraints.yaml index 2a2972117..101673988 100755 --- a/lts-build-constraints.yaml +++ b/lts-build-constraints.yaml @@ -63,8 +63,6 @@ packages: - buttplug-hs-core < 0 "Manuel Schneckenreither @schnecki": - - experimenter < 0 # 0.1.0.14 https://github.com/schnecki/experimenter/issues/1 - - api-maker < 0 # 0.1.0.6 https://github.com/schnecki/api-maker/issues/1 - easy-logger ^>= 0.1.0.7 - welford-online-mean-variance ^>= 0.2.0.0 @@ -72,7 +70,6 @@ packages: - error-or ^>= 0.3.0 - error-or-utils ^>= 0.2.0 - inbox ^>= 0.2.0 - - mock-time < 0 # 0.1.0 compile fail https://github.com/luntain/error-or-bundle/issues/4 "Liang-Ting Chen @L-TChen": - geniplate-mirror < 0 @@ -90,7 +87,7 @@ packages: - java-adt ^>= 1.0.20231204 - Sit ^>= 0.2023.8.3 - - alex ^>= 3.4.0.1 && >3.2.7 + - alex ^>= 3.4.0.1 - happy ^>= 1.20.1.1 && (<1.21.0 || >1.21.0) - haskell-src ^>= 1.0.4 - ListLike ^>= 4.7.8.2 @@ -321,7 +318,6 @@ packages: - primecount ^>= 0.1.0.1 "Guillaume Bouchard @guibou": - - krank < 0 # 0.3.0 https://github.com/guibou/krank/issues/97 - pretty-terminal ^>= 0.1.0.0 - PyF ^>= 0.11.2.1 @@ -366,7 +362,6 @@ packages: "Matthew Ahrens @mpahrens": - forkable-monad ^>= 0.2.0.3 - - butter < 0 # 0.1.0.6 text 1.2.5.0 exports `elem` https://github.com/System-Indystress/Butter/issues/4 "Iris Ward @AdituV": - typenums ^>= 0.1.4 @@ -650,7 +645,6 @@ packages: - cabal-plan ^>= 0.7.3.0 - topograph ^>= 1.0.0.2 - ix-shapable ^>= 0.1.0 - - hsshellscript < 0 # 3.5.0 compile fail https://github.com/commercialhaskell/stackage/issues/6762 - hyper ^>= 0.2.1.1 - storable-endian ^>= 0.2.6.1 - glpk-headers ^>= 0.5.1 @@ -1175,7 +1169,7 @@ packages: - zlib-lens < 0 "Andrew Farmer @xich": - - scotty ^>= 0.20.1 + - scotty ^>= 0.20.1 && <0.21 # https://github.com/commercialhaskell/stackage/issues/7208 - wai-middleware-static ^>= 0.9.2 "Simon Hengel @sol": @@ -3041,9 +3035,6 @@ packages: - tree-fun ^>= 0.8.1.0 - random-tree ^>= 0.6.0.5 - clumpiness ^>= 0.17.0.2 - - find-clumpiness < 0 - - blosum < 0 # 0.1.1.4 compile fail - - rank-product < 0 # 0.2.2.0 compile fail "Simon Marechal @bartavelle": - compactmap ^>= 0.1.4.3 @@ -3094,7 +3085,7 @@ packages: - slack-web < 0 "Nickolay Kudasov @fizruk": - - http-api-data ^>= 0.5.1 && <0.6 # https://github.com/commercialhaskell/stackage/issues/7032 + - http-api-data ^>= 0.5.1 - swagger2 ^>= 2.8.7 - telegram-bot-simple < 0 - rzk ^>= 0.7.1 @@ -4575,8 +4566,8 @@ packages: - file-path-th ^>= 0.1.0.0 "Raghu Kaippully @rkaippully": - - webgear-core < 0 - - webgear-openapi < 0 + - webgear-core < 0 # https://github.com/commercialhaskell/stackage/issues/7168 + - webgear-openapi < 0 # https://github.com/commercialhaskell/stackage/issues/7168 - webgear-server < 0 # 1.0.5 compile fail https://github.com/haskell-webgear/webgear/issues/16 "Alex Washburn @recursion-ninja": @@ -5080,7 +5071,7 @@ packages: - ipa < 0 "Andreas Herrmann @aherrmann": - - capability < 0 + - capability < 0 # https://github.com/commercialhaskell/stackage/issues/7146 "Dustin Sallings @dustin": - net-mqtt ^>= 0.8.6.0 @@ -5115,7 +5106,6 @@ packages: - hgal ^>= 2.0.0.3 "Rickard Andersson @GoNZooo": - - gotyno-hs < 0 # 1.1.0 compile fail https://github.com/commercialhaskell/stackage/issues/6766 - reddit-scrape ^>= 0.0.1 "James Cranch @jcranch": @@ -5511,7 +5501,6 @@ packages: - heap ^>= 1.0.4 - here ^>= 1.2.14 - hex ^>= 0.2.0 - - hierarchical-clustering < 0 # 0.4.7 compile fail https://github.com/commercialhaskell/stackage/issues/6764 - hjsonpointer < 0 - hjsonschema < 0 - hlibgit2 ^>= 0.18.0.16 @@ -6122,7 +6111,6 @@ packages: - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires network < =2.8.0.0 and the snapshot contains network-3.1.4.0 - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: BiobaseBlast - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: Taxonomy - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: hierarchical-clustering - Spintax < 0 # tried Spintax-0.3.6, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - Spintax < 0 # tried Spintax-0.3.6, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core @@ -6549,7 +6537,6 @@ packages: - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude - filecache < 0 # tried filecache-0.4.1, but its *library* requires fsnotify ==0.3.* and the snapshot contains fsnotify-0.4.1.0 - filecache < 0 # tried filecache-0.4.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: hierarchical-clustering - first-class-patterns < 0 # tried first-class-patterns-0.3.2.5, but its *library* requires transformers >=0.1.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 @@ -8072,15 +8059,9 @@ packages: - singletons-th ^>= 3.2 && <3.3 - th-desugar ^>= 1.15 && <1.16 - # https://github.com/commercialhaskell/stackage/issues/7146 - - constraints ^>= 0.14 && <0.14 - # https://github.com/commercialhaskell/stackage/issues/7159 - Diff ^>= 0.4.1 && <0.5 - # https://github.com/commercialhaskell/stackage/issues/7168 - - jose ^>= 0.11 && <0.11 - # https://github.com/commercialhaskell/stackage/issues/7178 - cassava-megaparsec ^>= 2.0.4 && <2.1 # end of Stackage upper bounds @@ -8971,7 +8952,6 @@ expected-test-failures: - generic-optics # 2.2.1.0 optimization output https://github.com/kcsongor/generic-lens/issues/133 - github-types # https://github.com/commercialhaskell/stackage/issues/6549 - haskoin-node # https://github.com/commercialhaskell/stackage/issues/6769 - - heist # https://github.com/commercialhaskell/stackage/issues/6765 - hgeometry-combinatorial # 0.14 - hruby # 0.5.1.0 - hspec-golden-aeson # 0.9.0.0 @@ -9020,7 +9000,6 @@ expected-test-failures: - sqids - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/6 - subcategories - - sydtest # https://github.com/commercialhaskell/stackage/issues/6729 - sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/6798 - tasty-fail-fast - tasty-html # https://github.com/commercialhaskell/stackage/issues/6966 From d49e1b107a454c22463cce0a306ef54eb1d00202 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Fri, 22 Dec 2023 14:40:41 +0100 Subject: [PATCH 10/14] Version LTS file --- check-lts | 11 +++++++++-- etc/lts-constraints/src/Main.hs | 15 +++++++++++---- ...straints.yaml => lts-22-build-constraints.yaml | 0 3 files changed, 20 insertions(+), 6 deletions(-) rename lts-build-constraints.yaml => lts-22-build-constraints.yaml (100%) mode change 100755 => 100644 diff --git a/check-lts b/check-lts index e23566cc9..a36921589 100755 --- a/check-lts +++ b/check-lts @@ -2,11 +2,18 @@ # Convenience script for checking constraints locally +set -euxo pipefail + cd `dirname $0` -export GHCVER=$(sed -n "s/^ghc-version: \"\(.*\)\"/\1/p" "lts-build-constraints.yaml") +MAJOR=$1 +MINOR=$2 +LTS="lts-$MAJOR.$MINOR" + +echo "$MAJOR $MINOR $LTS" + +export GHCVER=$(sed -n "s/^ghc-version: \"\(.*\)\"/\1/p" "lts-$MAJOR-build-constraints.yaml") -LTS="lts-$@" curator update && curator constraints --target=$LTS && curator snapshot-incomplete --target=$LTS && diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs index d58bb1c18..51cb9b320 100644 --- a/etc/lts-constraints/src/Main.hs +++ b/etc/lts-constraints/src/Main.hs @@ -1,5 +1,6 @@ {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE ScopedTypeVariables #-} {-# OPTIONS -Wno-name-shadowing #-} module Main (main) where @@ -11,6 +12,8 @@ import RIO.Map (Map) import System.IO (openFile, IOMode (..), hFlush, hClose) import qualified Data.Text as T import qualified Data.Text.IO as T +import Safe (at) +import System.Environment (getArgs) import BuildConstraints (parsePackageDecl, handlePackage) import Snapshot (snapshotMap, loadSnapshot) @@ -19,8 +22,8 @@ import Types (PackageName, Version) src :: String src = "../../build-constraints.yaml" -target :: String -target = "../../lts-build-constraints.yaml" +target :: Int -> String +target major = "../../lts-" <> show major <> "-build-constraints.yaml" data State = LookingForLibBounds @@ -29,14 +32,18 @@ data State main :: IO () main = do - map <- snapshotMap <$> loadSnapshot "../../../stackage-snapshots/lts/22/0.yaml" - output <- openFile target WriteMode + args :: [String] <- getArgs + print args + let major :: Int = read . (`at` 0) $ args + map <- snapshotMap <$> loadSnapshot ("../../../stackage-snapshots/lts/" <> show major <> "/0.yaml") + output <- openFile (target major) WriteMode let putLine = liftIO . T.hPutStrLn output lines <- T.lines <$> T.readFile src void $ flip runStateT LookingForLibBounds $ do forM_ lines $ putLine <=< processLine map hFlush output hClose output + putStrLn $ "Done. Wrote to " <> (target major) processLine :: MonadState State m => Map PackageName Version -> Text -> m Text processLine map line = do diff --git a/lts-build-constraints.yaml b/lts-22-build-constraints.yaml old mode 100755 new mode 100644 similarity index 100% rename from lts-build-constraints.yaml rename to lts-22-build-constraints.yaml From e666743f91cc68c84e0477bb9f717708b301c787 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Sat, 23 Dec 2023 19:27:17 +0100 Subject: [PATCH 11/14] cleanup --- etc/lts-constraints/cabal.project.local | 2 ++ etc/lts-constraints/lts-constraints.cabal | 1 + etc/lts-constraints/src/Main.hs | 28 +++++++++++++++-------- etc/lts-constraints/src/Types.hs | 6 ++--- etc/lts-constraints/stack.yaml | 2 +- etc/lts-constraints/stack.yaml.lock | 8 +++---- etc/lts-constraints/weeder.toml | 7 ++++++ 7 files changed, 35 insertions(+), 19 deletions(-) create mode 100644 etc/lts-constraints/cabal.project.local create mode 100644 etc/lts-constraints/weeder.toml diff --git a/etc/lts-constraints/cabal.project.local b/etc/lts-constraints/cabal.project.local new file mode 100644 index 000000000..2eab4ee6d --- /dev/null +++ b/etc/lts-constraints/cabal.project.local @@ -0,0 +1,2 @@ +package * + ghc-options: -fwrite-ide-info diff --git a/etc/lts-constraints/lts-constraints.cabal b/etc/lts-constraints/lts-constraints.cabal index 9edf39a72..06602e10b 100644 --- a/etc/lts-constraints/lts-constraints.cabal +++ b/etc/lts-constraints/lts-constraints.cabal @@ -30,6 +30,7 @@ executable lts-constraints , Cabal , containers , mtl + , optparse-generic , pantry , parsec , rio diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs index 51cb9b320..766e3dffa 100644 --- a/etc/lts-constraints/src/Main.hs +++ b/etc/lts-constraints/src/Main.hs @@ -1,4 +1,7 @@ {-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE ImportQualifiedPost #-} +{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} {-# OPTIONS -Wno-name-shadowing #-} @@ -8,12 +11,12 @@ import Control.Monad import Control.Monad.IO.Class (MonadIO (..)) import Control.Monad.State (MonadState (..), runStateT) import Data.Text (Text) +import Options.Generic (getRecord, ParseRecord) +import Data.Text qualified as T +import Data.Text.IO qualified as T +import GHC.Generics (Generic) import RIO.Map (Map) import System.IO (openFile, IOMode (..), hFlush, hClose) -import qualified Data.Text as T -import qualified Data.Text.IO as T -import Safe (at) -import System.Environment (getArgs) import BuildConstraints (parsePackageDecl, handlePackage) import Snapshot (snapshotMap, loadSnapshot) @@ -23,7 +26,14 @@ src :: String src = "../../build-constraints.yaml" target :: Int -> String -target major = "../../lts-" <> show major <> "-build-constraints.yaml" +target major = "lts-" <> show major <> "-build-constraints.yaml" + +data Args = Args + { major :: Int + , baseSnapshotPath :: FilePath + } deriving Generic + +instance ParseRecord Args data State = LookingForLibBounds @@ -32,10 +42,8 @@ data State main :: IO () main = do - args :: [String] <- getArgs - print args - let major :: Int = read . (`at` 0) $ args - map <- snapshotMap <$> loadSnapshot ("../../../stackage-snapshots/lts/" <> show major <> "/0.yaml") + Args { major, baseSnapshotPath } <- getRecord "lts-constraints" + map <- snapshotMap <$> loadSnapshot baseSnapshotPath output <- openFile (target major) WriteMode let putLine = liftIO . T.hPutStrLn output lines <- T.lines <$> T.readFile src @@ -43,7 +51,7 @@ main = do forM_ lines $ putLine <=< processLine map hFlush output hClose output - putStrLn $ "Done. Wrote to " <> (target major) + putStrLn $ "Done. Wrote to " <> target major processLine :: MonadState State m => Map PackageName Version -> Text -> m Text processLine map line = do diff --git a/etc/lts-constraints/src/Types.hs b/etc/lts-constraints/src/Types.hs index 4e14ad9bb..e1563a032 100644 --- a/etc/lts-constraints/src/Types.hs +++ b/etc/lts-constraints/src/Types.hs @@ -1,6 +1,5 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE DeriveAnyClass #-} -{-# LANGUAGE DeriveGeneric #-} {-# OPTIONS -Wno-name-shadowing #-} module Types where @@ -9,13 +8,12 @@ import Data.Aeson import Data.String.Conversions.Monomorphic import Distribution.Text (simpleParse) import Distribution.Types.VersionRange (VersionRange) -import GHC.Generics import RIO.Text (Text) import qualified Distribution.Types.PackageName as C (PackageName, mkPackageName) import qualified Distribution.Types.Version as C (Version) newtype PackageName = PackageName { unPackageName :: C.PackageName } - deriving (Eq, Generic, Ord, FromJSONKey, Show) + deriving (Eq, Ord, FromJSONKey, Show) mkPackageName :: Text -> PackageName mkPackageName = PackageName . C.mkPackageName . fromStrictText @@ -24,7 +22,7 @@ instance FromJSON PackageName where parseJSON = fmap (PackageName . C.mkPackageName) . parseJSON newtype Version = Version { unVersion :: C.Version } - deriving (Generic, Show) + deriving Show instance FromJSON Version where parseJSON = diff --git a/etc/lts-constraints/stack.yaml b/etc/lts-constraints/stack.yaml index f62d238d8..2b6560b2e 100644 --- a/etc/lts-constraints/stack.yaml +++ b/etc/lts-constraints/stack.yaml @@ -1,4 +1,4 @@ resolver: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/24.yaml + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/0.yaml packages: - . diff --git a/etc/lts-constraints/stack.yaml.lock b/etc/lts-constraints/stack.yaml.lock index 16308d5de..a39a1241b 100644 --- a/etc/lts-constraints/stack.yaml.lock +++ b/etc/lts-constraints/stack.yaml.lock @@ -6,8 +6,8 @@ packages: [] snapshots: - completed: - sha256: abcc4a65c15c7c2313f1a87f01bfd4d910516e1930b99653eef1d2d006515916 - size: 640074 - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/24.yaml + sha256: e176944bc843f740e05242fa7a66ca1f440c127e425254f7f1257f9b19add23f + size: 712153 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/0.yaml original: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/24.yaml + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/0.yaml diff --git a/etc/lts-constraints/weeder.toml b/etc/lts-constraints/weeder.toml new file mode 100644 index 000000000..fbcfa8208 --- /dev/null +++ b/etc/lts-constraints/weeder.toml @@ -0,0 +1,7 @@ +roots = ["Main.main","^Paths_.*"] + +type-class-roots = false + +root-instances = [{ class = "\\.IsString$" },{ class = "\\.IsList$" }] + +unused-types = false From cbb36e520ae2b28695b85d37507226216723ad1e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 9 Dec 2024 12:53:06 +0530 Subject: [PATCH 12/14] tiny tweaks/updates to etc/lts-constraints --- etc/lts-constraints/LICENSE | 2 +- etc/lts-constraints/cabal.project | 2 +- etc/lts-constraints/src/Main.hs | 2 +- etc/lts-constraints/stack.yaml | 5 +---- etc/lts-constraints/stack.yaml.lock | 9 ++++----- 5 files changed, 8 insertions(+), 12 deletions(-) diff --git a/etc/lts-constraints/LICENSE b/etc/lts-constraints/LICENSE index bc59db9ef..89f25d28b 100644 --- a/etc/lts-constraints/LICENSE +++ b/etc/lts-constraints/LICENSE @@ -1,4 +1,4 @@ -Copyright Author name here (c) 2021 +Copyright Adam Bergmark (c) 2021 All rights reserved. diff --git a/etc/lts-constraints/cabal.project b/etc/lts-constraints/cabal.project index 37f48c838..03642128a 100644 --- a/etc/lts-constraints/cabal.project +++ b/etc/lts-constraints/cabal.project @@ -1,2 +1,2 @@ packages: ./lts-constraints.cabal -with-compiler: ghc-9.4.7 +with-compiler: ghc-9.6.6 diff --git a/etc/lts-constraints/src/Main.hs b/etc/lts-constraints/src/Main.hs index 766e3dffa..59e99a153 100644 --- a/etc/lts-constraints/src/Main.hs +++ b/etc/lts-constraints/src/Main.hs @@ -23,7 +23,7 @@ import Snapshot (snapshotMap, loadSnapshot) import Types (PackageName, Version) src :: String -src = "../../build-constraints.yaml" +src = "build-constraints.yaml" target :: Int -> String target major = "lts-" <> show major <> "-build-constraints.yaml" diff --git a/etc/lts-constraints/stack.yaml b/etc/lts-constraints/stack.yaml index 2b6560b2e..377040a65 100644 --- a/etc/lts-constraints/stack.yaml +++ b/etc/lts-constraints/stack.yaml @@ -1,4 +1 @@ -resolver: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/0.yaml -packages: -- . +resolver: lts-21.25 diff --git a/etc/lts-constraints/stack.yaml.lock b/etc/lts-constraints/stack.yaml.lock index a39a1241b..f823d294d 100644 --- a/etc/lts-constraints/stack.yaml.lock +++ b/etc/lts-constraints/stack.yaml.lock @@ -6,8 +6,7 @@ packages: [] snapshots: - completed: - sha256: e176944bc843f740e05242fa7a66ca1f440c127e425254f7f1257f9b19add23f - size: 712153 - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/0.yaml - original: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/0.yaml + sha256: a81fb3877c4f9031e1325eb3935122e608d80715dc16b586eb11ddbff8671ecd + size: 640086 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/21/25.yaml + original: lts-21.25 From dfb146e267f83059681d4fe84df5005c0b62947a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 9 Dec 2024 12:54:29 +0530 Subject: [PATCH 13/14] lts-22-build-constraints.yaml lives in lts-haskell build-constraints/ --- lts-22-build-constraints.yaml | 9495 --------------------------------- 1 file changed, 9495 deletions(-) delete mode 100644 lts-22-build-constraints.yaml diff --git a/lts-22-build-constraints.yaml b/lts-22-build-constraints.yaml deleted file mode 100644 index 101673988..000000000 --- a/lts-22-build-constraints.yaml +++ /dev/null @@ -1,9495 +0,0 @@ -ghc-major-version: "9.6" -# new curator is supposed to use exact GHC version -ghc-version: "9.6.3" - -# This affects which version of the Cabal file format we allow. We -# should ensure that this is always no greater than the version -# supported by the most recent cabal-install and Stack releases. -cabal-format-version: "3.0" - -# Constraints for brand new builds -packages: - - "Dominick Samperi @djsamperi": - - mathlist ^>= 0.2.0.0 - - "Alexey Tochin @alexeytochin": - - simple-expr ^>= 0.1.1.0 - - inf-backprop ^>= 0.1.0.2 - - "Felix Springer @jumper149": - - deriving-trans ^>= 0.9.1.0 - - monad-control-identity ^>= 0.2.0.0 - - wai-control ^>= 0.2.0.0 - - "Eric Schorn @eric-schorn": - - pasta-curves < 0 - - "Martin Bednar @martin-bednar": - - wai-middleware-bearer ^>= 1.0.3 - - "Xy Ren @re-xyr": - - cleff ^>= 0.3.3.0 - - cleff-plugin < 0 - - rec-smallarray < 0 - - "Janus Troelsen @ysangkok": - - ListZipper ^>= 1.2.0.2 - - timezone-olson-th ^>= 0.1.0.11 - - "Paul Burns @onslaughtq": - - rollbar ^>= 1.1.3 - - "David Burkett @Disco-Dave": - - katip-wai ^>= 0.1.2.2 - - "Lukas Epple @sternenseemann": - - socket ^>= 0.8.3.0 - - spacecookie ^>= 1.0.0.2 - - gopher-proxy ^>= 0.1.1.3 - - filepath-bytestring ^>= 1.4.2.1.13 - - download-curl ^>= 0.1.4 - - cabal2nix ^>= 2.19.1 - - distribution-nixpkgs ^>= 1.7.0.1 - - hackage-db ^>= 2.1.3 - - language-nix ^>= 2.2.0 - - jailbreak-cabal ^>= 1.4 - - "Profpatsch @Profpatsch": - - error ^>= 1.0.0.0 - - yarn-lock ^>= 0.6.5 - - "James Sully @sullyj3": - - buttplug-hs-core < 0 - - "Manuel Schneckenreither @schnecki": - - easy-logger ^>= 0.1.0.7 - - welford-online-mean-variance ^>= 0.2.0.0 - - "Kamil Dworakowski @luntain": - - error-or ^>= 0.3.0 - - error-or-utils ^>= 0.2.0 - - inbox ^>= 0.2.0 - - "Liang-Ting Chen @L-TChen": - - geniplate-mirror < 0 - - "Andreas Abel @andreasabel": - - Agda ^>= 2.6.4.1 - - agda2lagda ^>= 0.2023.6.9 - - BNFC ^>= 2.9.5 - - cabal-clean ^>= 0.2.20230609 - - fix-whitespace ^>= 0.1 - - goldplate ^>= 0.2.1.1 - - hackage-cli ^>= 0.1.0.1 - - hasktags ^>= 0.73.0 - - hs-tags < 0 - - java-adt ^>= 1.0.20231204 - - Sit ^>= 0.2023.8.3 - - - alex ^>= 3.4.0.1 - - happy ^>= 1.20.1.1 && (<1.21.0 || >1.21.0) - - haskell-src ^>= 1.0.4 - - ListLike ^>= 4.7.8.2 - - MissingH ^>= 1.6.0.1 - - regex-base ^>= 0.94.0.2 - - regex-compat ^>= 0.95.2.1 - - regex-pcre ^>= 0.95.0.0 - - regex-posix ^>= 0.96.0.1 - - regex-posix-clib ^>= 2.7 - - regex-tdfa ^>= 1.3.2.2 - - shelly ^>= 1.12.1 - - STMonadTrans ^>= 0.4.7 - - tasty-silver ^>= 3.3.1.3 - - acid-state ^>= 0.16.1.3 - - rss ^>= 3000.2.0.7 - - brotli ^>= 0.0.0.1 - - brotli-streams ^>= 0.0.0.0 - - xor ^>= 0.0.1.2 - - http-io-streams ^>= 0.1.6.3 - - github ^>= 0.29 - - microaeson ^>= 0.1.0.1 - - cassava ^>= 0.5.3.0 - - ini ^>= 0.4.2 - - cryptohash-md5 ^>= 0.11.101.0 - - cryptohash-sha1 ^>= 0.11.101.0 - - cryptohash-sha256 ^>= 0.11.102.1 - - cryptohash-sha512 ^>= 0.11.102.0 - - newtype ^>= 0.2.2.0 - - resolv ^>= 0.2.0.2 - - blaze-builder ^>= 0.4.2.3 - - netrc ^>= 0.2.0.0 - - equivalence ^>= 0.4.1 - - # Some "grandfathered dependencies" I took over because I contributed to them at some time. - # Feel free to snatch them from me! - - regex-pcre-builtin ^>= 0.95.2.3.8.44 - - test-framework ^>= 0.8.2.0 - - c2hs ^>= 0.28.8 - - cabal-doctest ^>= 1.0.9 - - hackage-security ^>= 0.6.2.3 - - haskell-lexer ^>= 1.1.1 - - lifted-async ^>= 0.10.2.5 - - polyparse ^>= 1.13 - - silently ^>= 1.2.5.3 - - text-icu ^>= 0.8.0.4 - - vector-binary-instances ^>= 0.2.5.2 - - map-syntax ^>= 0.3 - - heist ^>= 1.1.1.2 - - snap ^>= 1.1.3.3 - - unix-compat ^>= 0.7.1 - - - "Diogo Biazus ": - - hasql-notifications ^>= 0.2.0.6 - - "David James @davjam": - - MapWith < 0 - - "Bernie Pope @bjpop": - - language-python ^>= 0.5.8 - - "Nils Alex @nilsalex": - - safe-tensor < 0 - - "Artur Gajowy @ArturGajowy": - - ghc-clippy-plugin < 0 - - "Daniel Rolls @danielrolls": - - byte-count-reader ^>= 0.10.1.10 - - shellify ^>= 0.11.0.0 - - "Allan Lukwago @epicallan": - - servant-errors < 0 - - "Christian Charukiewicz @charukiewicz": - - isbn ^>= 1.1.0.4 - - "Koz Ross @kozross": - - medea < 0 - - "Jappie Klooster @jappeace": - - yesod-middleware-csp ^>= 1.2.0 - - persistent-lens ^>= 1.0.0 - - mail-pool < 0 - - keter ^>= 2.1.2 - - zxcvbn-hs ^>= 0.3.6 - - "Marcin RzeĆșnicki @marcin-rzeznicki": - - hspec-tables < 0 - - stackcollapse-ghc < 0 - - libjwt-typed < 0 - - "Mauricio Fierro @mauriciofierrom": - - dialogflow-fulfillment < 0 - - "Mihai Giurgeanu @mihaigiurgeanu": - - sqlcli < 0 - - sqlcli-odbc < 0 - # not a maintainer - - logging ^>= 3.0.5 - - "Sasha Bogicevic @v0d1ch": - - plaid ^>= 0.1.0.4 - - "Geoffrey Mainland @mainland": - - exception-mtl ^>= 0.4.0.2 - - exception-transformers ^>= 0.4.0.12 - - mainland-pretty ^>= 0.7.1 - - ref-fd ^>= 0.5.0.1 - - ref-tf ^>= 0.5.0.1 - - srcloc ^>= 0.6.0.1 - - symbol ^>= 0.2.4 - - "Patrick Bahr ": - - compdata ^>= 0.13.1 - - Rattus ^>= 0.5.1.1 - - "Rob Stewart @robstewart57": - - gitlab-haskell < 0 - - "Callan McGill @callanmcgill": - - perfect-vector-shuffle < 0 - - "Luke Clifton @luke-clifton": - - generic-monoid ^>= 0.1.0.1 - - "Tobias Reinhart @TobiReinhart": - - sparse-tensor < 0 - - "Stephan Schiffels @stschiff": - - sequence-formats ^>= 1.8.0.0 - - pipes-ordered-zip ^>= 1.2.1 - - sequenceTools ^>= 1.5.3.1 - - "YongJoon Joe @QuietJoon": - - doldol ^>= 0.4.1.2 - - ENIG ^>= 0.0.1.0 - - "Chris Penner @ChrisPenner": - - eve < 0 - - lens-regex-pcre ^>= 1.1.0.0 - - lens-csv ^>= 0.1.1.0 - - selections ^>= 0.3.0.0 - - slick ^>= 1.2.1.0 - - unipatterns ^>= 0.0.0.0 - - "Emily Pillmore @topos": - - base16 ^>= 1.0 - - base16-lens < 0 - - base32 ^>= 0.4 - - base32-lens < 0 - - base64 ^>= 0.4.2.4 - - base64-lens < 0 - - lens-process < 0 - - microlens-process < 0 - - nonempty-vector ^>= 0.2.3 - - smash < 0 - - smash-aeson < 0 - - smash-microlens < 0 - - smash-lens < 0 - - strict-tuple ^>= 0.1.5.3 - - strict-tuple-lens < 0 - - "Matthieu Monsch @mtth": - - flags-applicative ^>= 0.1.0.3 - - more-containers ^>= 0.2.2.2 - - tracing ^>= 0.0.7.3 - - "Robert Vollmert @robx": - - configurator-pg ^>= 0.2.9 - - postgrest < 0 - - "Sandy Maguire @isovector": - - ecstasy ^>= 0.2.1.0 - - interpolatedstring-qq2 < 0 - - prospect ^>= 0.1.0.0 - - do-notation ^>= 0.1.0.2 - - unagi-chan ^>= 0.4.1.4 - - type-errors ^>= 0.2.0.2 - - "Matej Niznik @TheMatten": - - loopbreaker < 0 - - "William Yao @williamyaoh": - - string-interpolate ^>= 0.3.2.1 - - "Roel van Dijk @roelvandijk": - - terminal-progress-bar ^>= 0.4.2 - - "Marek Fajkus @turboMaCk": - - wai-enforce-https ^>= 1.0.0.0 - - aeson-combinators ^>= 0.1.1.0 - - "Fernando Freire @dogonthehorizon": - - hal ^>= 1.0.1 - - "Nathan Fairhurst @iamfromspace": - - hal ^>= 1.0.1 - - "Daniel Taskoff @dtaskoff": - - hlibcpuid ^>= 0.2.0 - - skip-var ^>= 0.1.1.0 - - system-info ^>= 0.5.2 - - "Dzianis Kabanau @kobargh": - - template-toolkit < 0 - - "Christopher Davenport @ChristopherDavenport": - - nonemptymap < 0 - - hinfo ^>= 0.0.3.0 - - "Joerg Winter @clojj": - - rosezipper ^>= 0.2 - - "Edward Wastell @edwardwas": - - TotalMap < 0 - - sized-grid < 0 - - "Antonio Alonso Dominguez @alonsodomin": - - hschema < 0 - - hschema-aeson < 0 - - hschema-prettyprinter < 0 - - hschema-quickcheck < 0 - - "Preetham Gujjula @pgujjula": - - modular ^>= 0.1.0.8 - - list-predicate ^>= 0.1.0.1 - - primecount ^>= 0.1.0.1 - - "Guillaume Bouchard @guibou": - - pretty-terminal ^>= 0.1.0.0 - - PyF ^>= 0.11.2.1 - - "Erik Schnetter @eschnett": - - mpi-hs ^>= 0.7.2.0 - - mpi-hs-binary ^>= 0.1.1.0 - - mpi-hs-cereal ^>= 0.1.0.0 - - "Yang Bo @Atry": - - control-dsl ^>= 0.2.1.3 - - "Laurent P. RenĂ© de Cotret @LaurentRDC": - - pandoc-plot ^>= 1.8.0 - - "Andrew Newman @andrewfnewman": - - geojson ^>= 4.1.1 - - "Mateusz Karbowy @obszczymucha": - - parsec-numbers ^>= 0.1.0 - - "Joshua Grosso @jgrosso": - - axel < 0 - - "Varun Gandhi @theindigamer": - - edit < 0 - - "Luka HadĆŸiegrić @reygoch": - - valor ^>= 1.0.0.0 - - "Scott N. Walck @walck": - - cyclotomic ^>= 1.1.2 - - learn-physics ^>= 0.6.6 - - SpatialMath ^>= 0.2.7.1 - - Vis ^>= 0.7.7.0 - - LPFP ^>= 1.1.1 - - LPFP-core ^>= 1.1.1 - - "Phil de Joux @philderbeast": - - siggy-chardust ^>= 1.0.0 - - detour-via-sci ^>= 1.0.0 - - hpack-dhall < 0 - - "Matthew Ahrens @mpahrens": - - forkable-monad ^>= 0.2.0.3 - - "Iris Ward @AdituV": - - typenums ^>= 0.1.4 - - "Jude Taylor @pikajude": - - th-printf ^>= 0.8 - - "Christian Marie @christian-marie": - - git-vogue < 0 # 0.3.0.2 compile fail - - "Manuel BĂ€renz @turion": - - dunai < 0 # 0.12.0 9.6 compile fail https://github.com/ivanperez-keera/dunai/discussions/368 - - essence-of-live-coding < 0 # 0.2.7 compile fail https://github.com/turion/essence-of-live-coding/issues/107 - - essence-of-live-coding-gloss < 0 - - essence-of-live-coding-pulse < 0 - - essence-of-live-coding-quickcheck < 0 - - essence-of-live-coding-warp < 0 - - finite-typelits ^>= 0.1.6.0 - - has-transformers ^>= 0.1.0.4 - - monad-schedule ^>= 0.1.2.1 - - pulse-simple ^>= 0.1.14 - - rhine < 0 - - rhine-gloss < 0 - - simple-affine-space ^>= 0.2.1 - - time-domain ^>= 0.1.0.2 - - "Paul Johnson @PaulJohnson": - - geodetics ^>= 0.1.2 - - Ranged-sets ^>= 0.4.0 - - "Travis Athougies @tathougies": - - beam-core ^>= 0.10.1.0 - - beam-migrate < 0 - - beam-mysql < 0 - - beam-postgres < 0 - - beam-sqlite < 0 - - "Fraser Murray = 0.6.0.0 - - "Yusent Chig @yusent": - - yesod-auth-bcryptdb < 0 - - "Johannes Gerer ": - - buchhaltung < 0 - - "Tom McLaughlin @thomasjm": - - aeson-typescript ^>= 0.6.1.0 - - fsnotify ^>= 0.4.1.0 - - myers-diff ^>= 0.3.0.0 - - sandwich ^>= 0.2.1.0 - - sandwich-hedgehog ^>= 0.1.3.0 - - sandwich-quickcheck ^>= 0.1.0.7 - - sandwich-slack ^>= 0.1.2.0 - - sandwich-webdriver ^>= 0.2.3.1 - - slack-progressbar < 0 # 0.1.0.1 https://github.com/codedownio/slack-progressbar/issues/1 - - system-linux-proc ^>= 0.1.1.1 # @erikd - - webdriver ^>= 0.12.0.0 - - "Paulo Tanaka @paulot": - # on behalf of Bryan O'Sullivan @bos: - - zstd ^>= 0.1.3.0 - - "Jacek Galowicz @tfc": - - hamtsolo ^>= 1.0.4 - - "Ferdinand van Walree @Ferdinand-vW": - - tuple-sop ^>= 0.3.1.0 - - sessiontypes < 0 - - sessiontypes-distributed < 0 - - "Jacob Thomas Errington @tsani": - - servant-github-webhook < 0 - - pushbullet-types < 0 - - "Theodore Lief Gannon @tejon": - - aeson-yak ^>= 0.1.1.3 - - safe-foldable ^>= 0.1.0.0 - - "Florian Knupfer @knupfer": - - type-of-html ^>= 1.6.2.0 - - type-of-html-static ^>= 0.1.0.2 - - chronos-bench ^>= 0.2.0.2 - - "Mikolaj Konarski @Mikolaj": - - sdl2-ttf ^>= 2.1.3 - - enummapset ^>= 0.7.2.0 - - assert-failure ^>= 0.1.3.0 - - minimorph ^>= 0.3.0.1 - - miniutter ^>= 0.5.1.2 - - LambdaHack ^>= 0.11.0.1 - - Allure ^>= 0.11.0.0 - - "JĂŒrgen Keck @j-keck": - - wreq-stringless ^>= 0.5.9.1 - - "Olaf Chitil @OlafChitil": - - FPretty < 0 - - "Maarten Faddegon @MaartenFaddegon": - - libgraph < 0 - - Hoed < 0 - - "Agustin Camino @acamino": - - state-codes ^>= 0.1.3 - - "Sebastian Mihai Ardelean @ardeleanasm": - - qchas ^>= 1.1.0.1 - - "Patrick Pelletier @ppelleti": - - mercury-api < 0 - - normalization-insensitive < 0 - - "Jacob Stanley @jacobstanley": - - hedgehog ^>= 1.4 - - hedgehog-quickcheck ^>= 0.1.1 - - transformers-bifunctors < 0 - - "Walter Schulze @awalterschulze": - - katydid < 0 - - "Nobutada Matsubara @matsubara0507": - - chatwork < 0 - - rakuten < 0 - - servant-kotlin < 0 - - "Pavol Klacansky @pavolzetor": - - openexr-write ^>= 0.1.0.2 - - "Pasqualino Assini @tittoassini": - - zm < 0 - - flat ^>= 0.6 - - model < 0 - - "Jose Iborra @pepeiborra": - - arrowp-qq < 0 - - haskell-src-exts-util ^>= 0.2.5 - - hexml-lens ^>= 0.2.2 - - hp2pretty ^>= 0.10 - - floatshow ^>= 0.2.4 - - ghc-check ^>= 0.5.0.8 - - "Roman Gonzalez @roman": - - componentm ^>= 0.0.0.2 - - componentm-devel ^>= 0.0.0.2 - - teardown ^>= 0.5.0.1 - - etc < 0 - - capataz < 0 - - "Richard Cook @rcook": - - hidden-char < 0 - - oset < 0 - - req-url-extra < 0 - - sexpr-parser < 0 - - "Vanessa McHale @vmchale": - - bz2 ^>= 1.0.1.0 - - "Henning Thielemann @thielema": - - accelerate-arithmetic < 0 - - accelerate-fftw < 0 - - accelerate-fourier < 0 - - accelerate-utility < 0 - - align-audio ^>= 0.0.0.1 - - alsa-core ^>= 0.5.0.1 - - alsa-pcm ^>= 0.6.1.1 - - alsa-seq ^>= 0.6.0.9 - - apportionment ^>= 0.0.0.4 - - audacity ^>= 0.0.2.1 - - battleship-combinatorics ^>= 0.0.1 - - bibtex ^>= 0.1.0.7 - - board-games ^>= 0.4 - - boomwhacker ^>= 0.0.1 - - buffer-pipe ^>= 0.0 - - cabal-flatpak < 0 - - cabal-sort ^>= 0.1.2 - - calendar-recycling ^>= 0.0.0.1 - - checksum ^>= 0.0.0.1 - - coinor-clp ^>= 0.0.0.1 - - combinatorial ^>= 0.1.1 - - comfort-graph ^>= 0.0.4 - - comfort-array ^>= 0.5.3 - - comfort-array-shape ^>= 0.0 - - comfort-fftw ^>= 0.0.0.1 - - comfort-glpk ^>= 0.1 - - concurrent-split ^>= 0.0.1.1 - - cutter ^>= 0.0 - - data-accessor ^>= 0.2.3.1 - - data-accessor-mtl ^>= 0.2.0.5 - - data-accessor-template < 0 - - data-accessor-transformers ^>= 0.2.1.8 - - data-ref ^>= 0.1 - - doctest-exitcode-stdio ^>= 0.0 - - doctest-extract ^>= 0.1.1.1 - - doctest-lib ^>= 0.1 - - dsp ^>= 0.2.5.2 - - enumset ^>= 0.1 - - equal-files ^>= 0.0.5.4 - - event-list ^>= 0.1.2.1 - - explicit-exception ^>= 0.2 - - fixed-length ^>= 0.2.3.1 - - fftw-ffi ^>= 0.1 - - ghostscript-parallel ^>= 0.0 - - gnuplot ^>= 0.5.7 - - group-by-date ^>= 0.1.0.5 - - guarded-allocation ^>= 0.0.1 - - iff ^>= 0.0.6.1 - - interpolation ^>= 0.1.1.2 - - jack ^>= 0.7.2.2 - - latex ^>= 0.1.0.4 - - lazyio ^>= 0.1.0.4 - - linear-programming ^>= 0.0.0.1 - - markov-chain ^>= 0.0.3.4 - - midi ^>= 0.2.2.4 - - midi-alsa ^>= 0.2.1 - - midi-music-box ^>= 0.0.1.2 - - mbox-utility ^>= 0.0.3.1 - - med-module ^>= 0.1.3 - - monoid-transformer ^>= 0.0.4 - - non-empty ^>= 0.3.5 - - non-negative ^>= 0.1.2 - - numeric-prelude ^>= 0.4.4 - - numeric-quest ^>= 0.2.0.2 - - ods2csv ^>= 0.1 - - pathtype ^>= 0.8.1.2 - - pooled-io ^>= 0.0.2.3 - - probability ^>= 0.2.8 - - quickcheck-transformer ^>= 0.3.1.2 - - reactive-banana-bunch ^>= 1.0.0.1 - - reactive-midyim ^>= 0.4.1.1 - - reactive-balsa ^>= 0.4.0.1 - - reactive-jack ^>= 0.4.1.2 - - sample-frame ^>= 0.0.4 - - sample-frame-np ^>= 0.0.5 - - set-cover ^>= 0.1.1 - - shell-utility ^>= 0.1 - - sound-collage ^>= 0.2.1 - - sox ^>= 0.2.3.2 - - soxlib ^>= 0.0.3.2 - - split-record ^>= 0.1.1.4 - - spreadsheet ^>= 0.1.3.10 - - stm-split ^>= 0.0.2.1 - - storable-record ^>= 0.0.7 - - storable-tuple ^>= 0.1 - - storablevector ^>= 0.2.13.2 - - synthesizer-core ^>= 0.8.3 - - synthesizer-dimensional ^>= 0.8.1.1 - - synthesizer-alsa ^>= 0.5.0.6 - - synthesizer-midi ^>= 0.6.1.2 - - tagchup ^>= 0.4.1.2 - - tfp ^>= 1.0.2 - - unicode ^>= 0.0.1.1 - - unique-logic ^>= 0.4.0.1 - - unique-logic-tf ^>= 0.5.1 - - unsafe ^>= 0.0 - - utility-ht ^>= 0.0.17 - - wraxml ^>= 0.5 - - xml-basic ^>= 0.1.3.2 - - youtube ^>= 0.2.1.1 - - prelude-compat ^>= 0.0.0.2 - - fft ^>= 0.1.8.7 - - carray ^>= 0.1.6.8 - - lapack-ffi-tools ^>= 0.1.3.1 - - netlib-ffi ^>= 0.1.1 - - blas-ffi ^>= 0.1 - - lapack-ffi ^>= 0.0.3 - - netlib-carray ^>= 0.1 - - blas-carray ^>= 0.1.0.2 - - lapack-carray ^>= 0.0.3 - - netlib-comfort-array ^>= 0.0.0.2 - - blas-comfort-array ^>= 0.0.0.3 - - lapack-comfort-array ^>= 0.0.1 - - comfort-blas ^>= 0.0.1 - - lapack ^>= 0.5.1 - - lapack-hmatrix ^>= 0.0.0.2 - - hmm-lapack ^>= 0.5.0.1 - - magico ^>= 0.0.2.3 - - resistor-cube ^>= 0.0.1.4 - - linear-circuit ^>= 0.1.0.4 - # Not a maintainer - - cabal-plan ^>= 0.7.3.0 - - topograph ^>= 1.0.0.2 - - ix-shapable ^>= 0.1.0 - - hyper ^>= 0.2.1.1 - - storable-endian ^>= 0.2.6.1 - - glpk-headers ^>= 0.5.1 - - derive-storable ^>= 0.3.1.0 - - "Jeremy Barisch-Rooney @barischrooneyj": - - threepenny-gui-flexbox < 0 # 0.4.2 compile fail https://github.com/jerbaroo/threepenny-gui-flexbox/issues/5 - - "Romain Edelmann @redelmann": - - distribution < 0 - - "Nikita Tchayka @nickseagull": - - ramus ^>= 0.1.2 - - require < 0 - - tintin < 0 - - aws-lambda-haskell-runtime < 0 - - "Simon Jakobi @sjakobi": - - threepenny-gui ^>= 0.9.4.0 - - newtype-generics ^>= 0.6.2 - - bsb-http-chunked ^>= 0.0.0.4 - - hspec-parsec ^>= 0 - - checkers ^>= 0.6.0 - - unordered-containers ^>= 0.2.19.1 - - prettyprinter ^>= 1.7.1 - - prettyprinter-ansi-terminal ^>= 1.1.3 - - prettyprinter-compat-wl-pprint ^>= 1.0.1 - - prettyprinter-compat-ansi-wl-pprint ^>= 1.0.2 - - prettyprinter-compat-annotated-wl-pprint ^>= 1.1 - - prettyprinter-convert-ansi-wl-pprint < 0 - - HsYAML ^>= 0.2.1.3 - - HsYAML-aeson ^>= 0.2.0.1 - - "Joe M @joe9": - - logger-thread ^>= 0.1.0.2 - - text-generic-pretty < 0 - - "Li-yao Xia @Lysxia": - - ap-normalize ^>= 0.1.0.1 - - boltzmann-samplers ^>= 0.1.1.0 - - diff-loc ^>= 0.1.0.0 - - first-class-families ^>= 0.8.0.1 - - fcf-family ^>= 0.2.0.0 - - generic-data ^>= 1.1.0.0 - - generic-data-surgery ^>= 0.3.0.0 - - generic-functor ^>= 1.1.0.0 - - generic-random ^>= 1.5.0.1 - - scanf ^>= 0.1.0.0 - - show-combinators ^>= 0.2.0.0 - - type-map ^>= 0.1.7.0 - - quickcheck-higherorder ^>= 0.1.0.1 - - test-fun ^>= 0.1.0.0 - - "Solomon Bothwell @solomon-b": - - monoidal-functors ^>= 0.2.3.0 - - "Tobias Dammers @tdammers": - - ginger ^>= 0.10.5.2 - - yeshql < 0 - - "Yair Chuchem @yairchu": - - generic-constraints ^>= 1.1.1.1 - - git-mediate ^>= 1.0.9 - - List ^>= 0.6.2 - - ListTree ^>= 0.2.3 - - "Marco Zocca @ocramz": - - ad-delcont ^>= 0.5.0.0 - - sparse-linear-algebra < 0 - - depq ^>= 0.4.2 - - matrix-market-attoparsec ^>= 0.1.1.3 - - splitmix-distributions ^>= 1.0.0 - - rp-tree ^>= 0.7.1 - - xeno ^>= 0.6 - - bytestring-mmap < 0 # 0.2.2 required by xeno # not ghc 9.6 ready - - datasets < 0 - - lucid-extras ^>= 0.2.2 - - mnist-idx-conduit ^>= 0.4.0.0 - - rigel-viz < 0 - - "Joseph Canero @caneroj1": - - sqlite-simple-errors < 0 - - median-stream ^>= 0.7.0.0 - - stm-supply ^>= 0.2.0.0 - - filter-logger ^>= 0.6.0.0 - - tile ^>= 0.3.0.0 - - mbtiles < 0 # 0.6.0.0 compile fail - - "James M.C. Haver II @mchaver": - - quickcheck-arbitrary-adt ^>= 0.3.1.0 - - hspec-golden-aeson ^>= 0.9.0.0 - - quickcheck-arbitrary-template < 0 - - "Winter Han @winterland1989": - - if ^>= 0.1.0.0 - - tcp-streams < 0 # 1.0.1.1 https://github.com/didi-FP/tcp-streams/issues/9 - - tcp-streams-openssl < 0 - - wire-streams < 0 - - binary-parsers < 0 - - binary-ieee754 ^>= 0.1.0.0 - - word24 < 0 - - mysql-haskell ^>= 1.1.3 - - mysql-haskell-openssl < 0 - - data-has ^>= 0.4.0.0 - - unboxed-ref ^>= 0.4.0.0 - - "Harendra Kumar @harendra-kumar": - - bench-show < 0 - - monad-recorder < 0 - - packcheck ^>= 0.6.0 - - streamly ^>= 0.10.0 - - streamly-core ^>= 0.2.0 - - unicode-transforms ^>= 0.4.0.1 - - xls < 0 - - "Ranjeet Ranjan @rnjtranjan": - - streamly-process < 0 - - streamly-examples < 0 - - "Pranay Sashank @pranaysashank": - - fusion-plugin-types ^>= 0.1.0 - - fusion-plugin ^>= 0.2.7 - - "Adithya Kumar @adithyaov": - - unicode-data ^>= 0.4.0.1 - - "Aleksey Uimanov @s9gf4ult": - - postgresql-query ^>= 3.10.0 - - hreader ^>= 1.1.1 - - hset ^>= 2.2.0 - - base58-bytestring ^>= 0.1.0 - - "Aaron Taylor @hamsterdam": - - kawhi < 0 - - "Schell Scivally @schell": - - renderable ^>= 0.2.0.1 - - varying ^>= 0.8.1.0 - - "Nicolas Mattia @nmattia": - - makefile < 0 - - "Siddharth Bhat @bollu": - - symengine ^>= 0.1.2.0 - - "alpheccar @alpheccar": - - HPDF ^>= 1.6.2 - - "Dmitry Bogatov @iu-guest": - - once ^>= 0.4 - - mbug < 0 - - "David Johnson @dmjio": - - miso ^>= 1.8.3.0 - - envy ^>= 2.1.2.0 - - s3-signer ^>= 0.5.0.0 - - google-translate < 0 - - hackernews < 0 - - ses-html ^>= 0.4.0.0 - - stripe-haskell < 0 - - stripe-http-client < 0 - - stripe-core < 0 - - stripe-tests < 0 - - "Piotr Mlodawski @pmlodawski": - - error-util < 0 # 0.0.1.2 MonadFail - - signal ^>= 0.1.0.4 - - "Michael Snoyman michael@snoyman.com @snoyberg": - - bzlib-conduit ^>= 0.3.0.2 - - case-insensitive ^>= 1.2.1.0 - - classy-prelude-yesod ^>= 1.5.0 - - conduit-combinators ^>= 1.3.0 - - conduit-extra ^>= 1.3.6 - - hebrew-time ^>= 0.1.2 - - markdown ^>= 0.1.17.5 - - mime-mail ^>= 0.5.1 - - mime-mail-ses ^>= 0.4.3 - - mime-types ^>= 0.1.2.0 - - network-conduit-tls ^>= 1.4.0 - - persistent ^>= 2.14.6.0 - - persistent-mysql ^>= 2.13.1.5 - - persistent-postgresql ^>= 2.13.6.1 - - persistent-sqlite ^>= 2.13.3.0 - - persistent-template ^>= 2.12.0.0 - - persistent-test ^>= 2.13.1.3 - - store ^>= 0.7.18 - - wai-extra ^>= 3.1.13.0 - - wai-websockets ^>= 3.0.1.2 - - warp-tls ^>= 3.4.3 - - yesod ^>= 1.6.2.1 - - authenticate ^>= 1.3.5.2 - - html-conduit ^>= 1.3.2.2 - - yesod-auth ^>= 1.6.11.2 - - authenticate-oauth ^>= 1.7 - - yesod-bin < 0 # 1.6.2.2 https://github.com/yesodweb/yesod/issues/1804 - - yesod-eventsource ^>= 1.6.0.1 - - yesod-gitrepo ^>= 0.3.0 - - yesod-newsfeed ^>= 1.7.0.0 - - yesod-sitemap ^>= 1.6.0 - - yesod-static ^>= 1.6.1.0 - - yesod-test ^>= 1.6.16 - - yesod-websockets ^>= 0.3.0.3 - - cereal-conduit ^>= 0.8.0 - - binary-conduit ^>= 1.3.1 - - lzma-conduit < 0 - - mutable-containers ^>= 0.3.4.1 - - hpc-coveralls < 0 - - monad-unlift < 0 - - monad-unlift-ref < 0 - - yaml ^>= 0.11.11.2 - - servius ^>= 1.2.3.0 - - cryptonite-conduit ^>= 0.2.2 - - streaming-commons ^>= 0.2.2.6 - - - async ^>= 2.2.5 - - base16-bytestring ^>= 1.0.2.0 - - csv-conduit < 0 - - executable-hash ^>= 0.2.0.4 - - executable-path ^>= 0.0.3.1 - - foreign-store ^>= 0.2 - - formatting ^>= 7.2.0 - - gtk2hs-buildtools ^>= 0.13.10.0 - - hybrid-vectors ^>= 0.2.4 - - indents ^>= 0.5.0.1 - - language-c ^>= 0.9.2 - - persistent-mongoDB ^>= 2.13.0.1 - - pretty-class ^>= 1.0.1.1 - - th-expand-syns ^>= 0.4.11.0 - - th-lift ^>= 0.8.4 - - quickcheck-assertions ^>= 0.3.0 - - - wai-middleware-crowd < 0 - - monad-logger-json ^>= 0.1.0.0 - - safe-exceptions ^>= 0.1.7.4 - - fsnotify-conduit < 0 # 0.1.1.1 compile fail https://github.com/commercialhaskell/stackage/issues/6768 - - pid1 ^>= 0.1.3.1 - - typed-process ^>= 0.2.11.1 - - say ^>= 0.1.0.1 - - unliftio-core ^>= 0.2.1.0 - - unliftio ^>= 0.2.25.0 - - - hinotify ^>= 0.4.1 - - hfsevents ^>= 0.1.6 - - Win32-notify ^>= 0.3.0.3 - - windns ^>= 0.1.0.1 - - - mono-traversable ^>= 1.0.15.3 - - http-client ^>= 0.7.15 - - http-conduit ^>= 2.3.8.3 - - githash ^>= 0.1.7.0 - - - time-manager ^>= 0.0.1 - - pantry ^>= 0.9.3.1 - - mega-sdist ^>= 0.4.3.0 - - http-download ^>= 0.2.1.0 - - hi-file-parser ^>= 0.1.6.0 - - rio-prettyprint ^>= 0.1.7.0 - - packdeps < 0 - - "Brandon Barker @bbarker": - - unexceptionalio ^>= 0.5.1 - - unexceptionalio-trans < 0 # 0.5.1 # fails to compile https://github.com/singpolyma/unexceptionalio-trans/issues/2 - - zio < 0 - - "Omari Norman @massysett": - - rainbow ^>= 0.34.2.2 - - rainbox ^>= 0.26.0.0 - - multiarg ^>= 0.30.0.10 - - ofx ^>= 0.4.4.0 - - accuerr < 0 - - timelens ^>= 0.2.0.2 - - squeather ^>= 0.8.0.0 - - "Neil Mitchell @ndmitchell": - - hlint ^>= 3.6.1 - - hoogle < 0 - - shake ^>= 0.19.7 - - tagsoup ^>= 0.14.8 - - cmdargs ^>= 0.10.22 - - safe ^>= 0.3.19 - - uniplate ^>= 1.6.13 - - nsis ^>= 0.3.3 - - js-jquery ^>= 3.3.1 - - js-flot ^>= 0.8.3 - - js-dgtable ^>= 0.5.2 - - extra ^>= 1.7.14 - - ghcid ^>= 0.8.9 - - hexml ^>= 0.3.4 - - profiterole < 0 - - record-dot-preprocessor < 0 - - filepattern ^>= 0.1.3 - - record-hasfield ^>= 1.0 - - rattle ^>= 0.2 - - fuzzy ^>= 0.1.0.1 - - "Digital Asset @shayne-fletcher": - - ghc-lib ^>= 9.6.3.20231121 - - ghc-lib-parser ^>= 9.6.3.20231121 - - "Shayne Fletcher @shayne-fletcher": - - ghc-lib-parser-ex ^>= 9.6.0.2 - - "Karl Ostmo @kostmo": - - perfect-hash-generator ^>= 1.0.0 - - "Alan Zimmerman @alanz": - - ghc-exactprint ^>= 1.7.0.1 - - hjsmin ^>= 0.2.1 - - language-javascript ^>= 0.7.1.0 - - Strafunski-StrategyLib < 0 - - "Michael Peyton Jones ": - - lsp-types ^>= 2.1.0.0 - - lsp ^>= 2.3.0.0 - - lsp-test ^>= 0.16.0.1 - - "Alfredo Di Napoli @adinapoli": - - mandrill ^>= 0.5.7.0 - - "Jon Schoning @jonschoning": - - pinboard < 0 - - swagger-petstore < 0 - - "Jasper Van der Jeugt @jaspervdj": - - blaze-html ^>= 0.9.1.2 - - blaze-markup ^>= 0.8.3.0 - - stylish-haskell ^>= 0.14.5.0 - - profiteur < 0 - - psqueues ^>= 0.2.8.0 - - websockets ^>= 0.12.7.3 - - websockets-snap ^>= 0.10.3.1 - - "Jasper Van der Jeugt @jaspervdj & Alexander Batischev @Minoru": - - hakyll ^>= 4.16.2.0 - - "Sibi Prabakaran @psibi": - - download ^>= 0.3.2.7 - - textlocal ^>= 0.1.0.5 - - shell-conduit ^>= 5.0.0 - - tldr ^>= 0.9.2 - - fb ^>= 2.1.1.1 - - yesod-fb ^>= 0.6.1 - - yesod-auth-fb < 0 # 1.1.0.1 compile fail - - hourglass-orphans ^>= 0.1.0.0 - - wai-slack-middleware ^>= 0.2.0 - - sysinfo ^>= 0.1.1 - - xmonad-extras < 0 - - persistent-redis ^>= 2.13.0.1 - - fakedata ^>= 1.0.3 - - fakedata-parser ^>= 0.1.0.0 - - fakedata-quickcheck ^>= 0.2.0 - - streamly-bytestring < 0 - - crypton-conduit ^>= 0.2.3 - - "haskell-openal @svenpanne": - - OpenAL ^>= 1.7.0.5 - - ALUT ^>= 2.4.0.3 - - "haskell-opengl @svenpanne": - - OpenGL ^>= 3.0.3.0 - - GLURaw ^>= 2.0.0.5 - - GLUT ^>= 2.7.0.16 - - OpenGLRaw ^>= 3.3.4.1 - - StateVar ^>= 1.2.2 - - ObjectName ^>= 1.1.0.2 - - "Antoine Latter @aslatter": - - byteorder ^>= 1.0.4 - - uuid ^>= 1.3.15 - - "Philipp Middendorf @pmiddend": - - clock ^>= 0.8.4 - - "Stefan Wehr @skogsbaer": - - HTF ^>= 0.15.0.1 - - xmlgen ^>= 0.6.2.2 - - stm-stats < 0 - - large-hashable < 0 - - "Bart Massey @BartMassey": - - parseargs ^>= 0.2.0.9 - - "Vincent Hanquez @vincenthz": - - basement ^>= 0.0.16 - - bytedump ^>= 1.0 - - cipher-aes ^>= 0.2.11 - - cipher-rc4 ^>= 0.1.4 - - connection < 0 - - cprng-aes < 0 - - cpu ^>= 0.1.2 - - cryptocipher < 0 - - cryptohash ^>= 0.11.9 - - cryptonite ^>= 0.30 - - cryptonite-openssl ^>= 0.7 - - crypto-pubkey-types ^>= 0.4.3 - - crypto-random-api ^>= 0.2.0 - - foundation ^>= 0.0.30 - - gauge ^>= 0.2.5 - - git < 0 # 0.3.0 compile fail MonadFail - - hit < 0 - - memory ^>= 0.18.0 - - language-java ^>= 0.2.9 - - libgit < 0 # 0.3.1 compile fail https://github.com/vincenthz/hs-libgit/issues/7 - - pem ^>= 0.2.4 - - siphash < 0 - - socks ^>= 0.6.1 - - tasty-kat ^>= 0.0.3 - - tls ^>= 1.8.0 - - tls-debug < 0 - - vhd < 0 # 0.2.2 compile fail: Missing Semigroup Checksum - - xenstore < 0 # 0.1.1 compile fail: sClose not in scope - - "Chris Done @chrisdone": - - labels ^>= 0.3.3 - - ace ^>= 0.6 - - check-email ^>= 1.0.2 - - freenect ^>= 1.2.1 - - frisby ^>= 0.2.5 - - gd ^>= 3000.7.3 - - hostname-validate ^>= 1.0.0 - - lucid ^>= 2.11.20230408 - - lucid2 ^>= 0.0.20230706 - - pdfinfo < 0 - - pure-io < 0 - - sourcemap ^>= 0.1.7 - - descriptive < 0 - - wrap ^>= 0.0.0 - - path ^>= 0.9.5 - - weigh ^>= 0.0.17 - - odbc < 0 - - structured-haskell-mode < 0 - - casa-client ^>= 0.0.2 - - casa-types ^>= 0.0.2 - - "Alberto G. Corona @agocorona": - - RefSerialize ^>= 0.4.0 - - TCache < 0 # 0.13.3 compile fail - - Workflow < 0 - - MFlow < 0 - - transient < 0 # 0.7.0.0 # fails to compile (#7017) - - transient-universe < 0 - - axiom < 0 - - "Edward Kmett @ekmett": - - ad ^>= 4.5.4 - - adjunctions ^>= 4.4.2 - - algebra ^>= 4.3.1 - - ansi-wl-pprint ^>= 1.0.2 - - approximate ^>= 0.3.5 - - bifunctors ^>= 5.6.1 - - bits ^>= 0.6 - - bound ^>= 2.0.7 - - bytes ^>= 0.17.3 - - charset ^>= 0.3.10 - - comonad ^>= 5.0.8 - - compensated ^>= 0.8.3 - - compressed < 0 - - concurrent-supply ^>= 0.1.8 - - constraints ^>= 0.14 - - contravariant ^>= 1.5.5 - - distributive ^>= 0.6.2.1 - - discrimination ^>= 0.5 - - either ^>= 5.0.2 - - eq ^>= 4.3 - - ersatz ^>= 0.5 - - fixed ^>= 0.3 - - folds ^>= 0.7.8 - - free ^>= 5.2 - - gl ^>= 0.9 - - graphs ^>= 0.7.2 - - half ^>= 0.3.1 - - heaps ^>= 0.4 - - hybrid-vectors ^>= 0.2.4 - - hyperloglog ^>= 0.4.6 - - hyphenation ^>= 0.8.2 - - indexed-traversable ^>= 0.1.3 - - integration ^>= 0.2.1 - - intern ^>= 0.9.5 - - intervals ^>= 0.9.2 - - kan-extensions ^>= 5.2.5 - - keys ^>= 3.12.3 - - lca ^>= 0.4 - - lens ^>= 5.2.3 - - lens-action ^>= 0.2.6 - - lens-aeson ^>= 1.2.3 - - lens-properties ^>= 4.11.1 - - linear ^>= 1.22 - - linear-accelerate < 0 - - log-domain ^>= 0.13.2 - - machines ^>= 0.7.3 - - monadic-arrays < 0 - - monad-products < 0 - - monad-st ^>= 0.2.4.1 - # - mtl take the one that ships with GHC - - nats ^>= 1.1.2 - - numeric-extras ^>= 0.1 - - parsers ^>= 0.12.11 - - pointed ^>= 5.0.4 - - profunctors ^>= 5.6.2 - - promises ^>= 0.3 - - rcu ^>= 0.2.7 - - reducers ^>= 3.12.4 - - reflection ^>= 2.1.7 - - semigroupoid-extras < 0 - - semigroupoids ^>= 6.0.0.1 - - semigroups ^>= 0.20 - - speculation < 0 - - streams ^>= 3.3.2 - - structs ^>= 0.1.9 - - tagged ^>= 0.8.8 - - tagged-transformer ^>= 0.8.2 - - transformers-compat ^>= 0.7.2 - - trifecta ^>= 2.1.3 - - unique ^>= 0.0.1 - - vector-instances ^>= 3.4.2 - - void ^>= 0.7.3 - - wl-pprint-extras < 0 - - wreq ^>= 0.5.4.2 - - wl-pprint-terminfo < 0 - - zippers ^>= 0.3.2 - - zlib-lens < 0 - - "Andrew Farmer @xich": - - scotty ^>= 0.20.1 && <0.21 # https://github.com/commercialhaskell/stackage/issues/7208 - - wai-middleware-static ^>= 0.9.2 - - "Simon Hengel @sol": - - hpack ^>= 0.36.0 - - hspec ^>= 2.11.7 - - hspec-api ^>= 2.11.7 - - hspec-core ^>= 2.11.7 - - hspec-discover ^>= 2.11.7 - - hspec-wai ^>= 0.11.1 - - hspec-wai-json ^>= 0.11.0 - - aeson-qq ^>= 0.8.4 - - interpolate ^>= 0.2.1 - - doctest ^>= 0.22.2 - - base-compat ^>= 0.13.1 - - "Mario Blazevic @blamario": - - monad-parallel ^>= 0.8 - - monad-coroutine ^>= 0.9.2 - - monoid-subclasses ^>= 1.2.4.1 - - rank2classes ^>= 1.5.3 - - input-parsers ^>= 0.3.0.2 - - incremental-parser < 0 - - construct < 0 - - "Brent Yorgey @byorgey": - - active ^>= 0.2.1 - - statestack ^>= 0.3.1.1 - - diagrams ^>= 1.4.1 - - diagrams-builder ^>= 0.8.0.6 - - diagrams-cairo ^>= 1.4.2.1 - - diagrams-canvas ^>= 1.4.1.2 - - diagrams-contrib ^>= 1.4.5.1 - - diagrams-core ^>= 1.5.1.1 - - diagrams-gtk ^>= 1.4 - - diagrams-html5 ^>= 1.4.2 - - diagrams-lib ^>= 1.4.6 - - diagrams-postscript ^>= 1.5.1.1 - - diagrams-rasterific ^>= 1.4.2.3 - - diagrams-solve ^>= 0.1.3 - - diagrams-svg ^>= 1.4.3.1 - - force-layout ^>= 0.4.0.6 - - SVGFonts ^>= 1.8.0.1 - - haxr ^>= 3000.11.5 - - MonadRandom ^>= 0.6 - - monoid-extras ^>= 0.6.2 - - "Vincent Berthoux @Twinside": - - JuicyPixels ^>= 3.3.8 - - FontyFruity ^>= 0.5.3.5 - - Rasterific ^>= 0.7.5.4 - - svg-tree ^>= 0.6.2.4 - - rasterific-svg ^>= 0.3.3.2 - - asciidiagram < 0 - - "Patrick Brisbin @pbrisbin": - - bugsnag-haskell ^>= 0.0.4.4 - - bugsnag ^>= 1.1.0.0 - - bugsnag-wai ^>= 1.0.0.1 - - bugsnag-yesod ^>= 1.0.1.0 - - gravatar ^>= 0.8.1 - - load-env ^>= 0.2.1.0 - - shellwords ^>= 0.1.3.1 - - yesod-markdown ^>= 0.12.6.13 - - yesod-paginator ^>= 1.1.2.2 - - "Freckle Engineering @pbrisbin @mjgpy3 @stevenxl": - - Blammo ^>= 1.1.2.1 - - aws-sns-verify ^>= 0.0.0.3 - - aws-xray-client ^>= 0.1.0.2 - - aws-xray-client-persistent ^>= 0.1.0.5 - - aws-xray-client-wai ^>= 0.1.0.2 - - bcp47 ^>= 0.2.0.6 - - bcp47-orphans ^>= 0.1.0.6 - - faktory ^>= 1.1.2.5 - - graphula ^>= 2.1.0.0 - - hspec-expectations-json ^>= 1.0.2.1 - - hspec-junit-formatter ^>= 1.1.0.2 - - nonempty-zipper ^>= 1.0.0.4 - - scientist ^>= 0.0.0.0 - - sendgrid-v3 ^>= 1.0.0.1 - - yesod-auth-oauth2 ^>= 0.7.1.3 - - yesod-page-cursor ^>= 2.0.1.0 - - yesod-routes-flow ^>= 3.0.0.2 - - "Felipe Lessa @meteficha": - - fb ^>= 2.1.1.1 - - nonce ^>= 1.0.7 - - serversession ^>= 1.0.3 - - serversession-backend-persistent < 0 - - serversession-backend-redis ^>= 1.0.5 - - serversession-frontend-wai ^>= 1.0.1 - - serversession-frontend-yesod ^>= 1.0.1 - - thumbnail-plus < 0 - - yesod-auth-fb < 0 # 1.10.1 compile fail - - yesod-fb ^>= 0.6.1 - - "Alexander Altman @pthariensflame": - # Maintaining on behalf of @roelvandijk: - - base-unicode-symbols ^>= 0.2.4.2 - - containers-unicode-symbols < 0 - # My own packages: - - ChannelT ^>= 0.0.0.7 - - "Trevor L. McDonell @tmcdonell": - - accelerate < 0 - - accelerate-bignum < 0 - - accelerate-blas < 0 - - accelerate-fft < 0 - - accelerate-io < 0 - - accelerate-llvm < 0 - - accelerate-llvm-native < 0 - - accelerate-llvm-ptx < 0 - - accelerate-examples < 0 - - repa < 0 - - repa-algorithms < 0 - - repa-io < 0 - - gloss ^>= 1.13.2.2 - - gloss-rendering ^>= 1.13.1.2 - - gloss-algorithms ^>= 1.13.0.3 - - gloss-examples < 0 - - gloss-raster < 0 - - gloss-accelerate < 0 - - gloss-raster-accelerate < 0 - - colour-accelerate < 0 - - lens-accelerate < 0 - - mwc-random-accelerate < 0 - - cuda ^>= 0.11.0.1 - - cufft < 0 # 0.10.0.0 compile fail (#7198) - - cublas < 0 # 0.6.0.0 compile fail (#7198) - - cusparse < 0 # 0.3.0.0 compile fail (#7198) - - cusolver < 0 - - nvvm ^>= 0.10.0.1 - - wide-word ^>= 0.1.6.0 # @erikd - - "Dan Burton @DanBurton": - - ANum ^>= 0.2.0.2 - - basic-prelude ^>= 0.7.0 - - composition ^>= 1.0.2.2 - - haskell-src-meta ^>= 0.8.13 - - io-memoize ^>= 1.1.1.0 - - lens-family-th < 0 - - numbers ^>= 3000.2.0.2 - - rev-state < 0 - - runmemo ^>= 1.0.0.1 - - tardis < 0 # 0.4.4.0 # fails to compile https://github.com/DanBurton/tardis/issues/15 - - yesod-gitrev ^>= 0.2.2 - # @mr's packages - - ftp-client < 0 - - ftp-client-conduit < 0 - # other: real maintainers pls steal these back - - text-format ^>= 0.3.2.1 # needed by liquid-fixpoint - - liquid-fixpoint < 0 - - "Daniel Casanueva @Daniel-Diaz": - - binary-list ^>= 1.1.1.2 - - bounded-qsem ^>= 0.1.0.1 - - byteset ^>= 0.1.1.1 - - Clipboard ^>= 2.3.2.0 - - fgl-arbitrary ^>= 0.2.0.6 - - gmail-simple ^>= 0.1.0.5 - - graphviz ^>= 2999.20.2.0 - - grouped-list < 0 - - haskintex ^>= 0.8.0.2 - - HaTeX ^>= 3.22.4.1 - - hetzner ^>= 0.6.0.0 - - include-file ^>= 0.1.0.4 - - journalctl-stream ^>= 0.6.0.5 - - mailtrap ^>= 0.1.2.0 - - matrix ^>= 0.3.6.3 - - mysql-json-table ^>= 0.1.2.0 - - pcre-light ^>= 0.4.1.2 - - phantom-state ^>= 0.2.1.4 - - post-mess-age ^>= 0.2.1.0 - - sorted-list ^>= 0.2.2.0 - - "Gabriella Gonzalez @Gabriella439": - - optparse-generic ^>= 1.5.2 - - pipes ^>= 4.3.16 - - pipes-extras ^>= 1.0.15 - - pipes-http ^>= 1.0.6 - - pipes-parse ^>= 3.0.9 - - pipes-concurrency ^>= 2.0.14 - - pipes-safe ^>= 2.3.5 - - turtle ^>= 1.6.2 - - foldl ^>= 1.4.15 - - bench < 0 - - dhall ^>= 1.42.1 - - dhall-bash ^>= 1.0.41 - - dhall-json < 0 - - dhall-lsp-server < 0 - - dhall-yaml < 0 - - dhall-nix < 0 - - nix-derivation ^>= 1.1.3 - - list-transformer ^>= 1.1.0 - - "Andrew Thaddeus Martin @andrewthad": - - colonnade ^>= 1.2.0.2 - - blaze-colonnade ^>= 1.2.2.1 - - dot ^>= 0.3 - - "Chris Allen @bitemyapp": - - machines-directory < 0 - - machines-io < 0 - - bloodhound ^>= 0.21.0.0 - - "Adam Bergmark @bergmark": - - aeson ^>= 2.1.2.1 - - HUnit ^>= 1.6.2.0 - - attoparsec-iso8601 ^>= 1.1.0.1 - - feed ^>= 1.3.2.1 - - time-compat ^>= 1.9.6.1 - - through-text < 0 - # Not my packages - - HStringTemplate ^>= 0.8.8 - - spoon ^>= 0.3.1 - - tagshare < 0 # 0.0 # fails to compile (#7017) - - "Benedict Aas @Shou": - - boolean-like < 0 - - type-operators < 0 - - "Sebastiaan Visser @sebastiaanvisser": - - clay ^>= 0.14.0 - - fclabels ^>= 2.0.5.1 - - "Robert Klotzner @eskimor": - - purescript-bridge ^>= 0.15.0.0 - - servant-purescript < 0 # 0.10.0.0 compile fail #6091/closed - - servant-subscriber ^>= 0.7.0.0 - - "Rodrigo Setti @rodrigosetti": - - messagepack ^>= 0.5.5 - - messagepack-rpc < 0 - - "Boris Lykah @lykahb": - - groundhog < 0 - - groundhog-inspector < 0 - - groundhog-mysql < 0 - - groundhog-postgresql < 0 - - groundhog-sqlite < 0 - - groundhog-th < 0 - - "Janne Hellsten @nurpax": - - sqlite-simple ^>= 0.4.18.2 - - "Michal J. Gajda @mgajda": - - iterable < 0 - - FenwickTree ^>= 0.1.2.1 - - json-autotype < 0 - - "Dom De Re @domdere": - - cassava-conduit ^>= 0.6.5 - - "Dominic Steinitz @idontgetoutmuch": - - monad-bayes < 0 - - random-fu ^>= 0.3.0.1 - - "Ben Gamari @bgamari": - - vector-fftw < 0 - - cborg-json ^>= 0.2.6.0 - - language-dot ^>= 0.1.2 - - "Roman Cheplyaka @feuerbach": - - action-permutations ^>= 0.0.0.1 - - amqp ^>= 0.22.2 - - heredoc ^>= 0.2.0.0 - - immortal ^>= 0.3 - - regex-applicative ^>= 0.3.4 - - lexer-applicative ^>= 2.1.0.2 - - tasty ^>= 1.4.3 - - tasty-golden ^>= 2.3.5 - - tasty-hunit ^>= 0.10.1 - - tasty-quickcheck ^>= 0.10.2 - - tasty-smallcheck ^>= 0.8.2 - - tasty-html ^>= 0.4.2.1 - - time-lens ^>= 0.4.0.2 - - timezone-olson ^>= 0.2.1 - - timezone-series ^>= 0.1.13 - - traverse-with-class ^>= 1.0.1.1 - - tuples-homogenous-h98 ^>= 0.1.1.0 - - "George Giorgidze @giorgidze": - - YampaSynth < 0 # 0.2 compile fail - - set-monad ^>= 0.3.0.0 - - "Phil Hargett @hargettp": - - courier < 0 - - "Aycan iRiCAN @aycanirican": - - hdaemonize ^>= 0.5.7 - - hweblib ^>= 0.6.3 - - "Joachim Breitner @nomeata": - - arbtt < 0 - - rec-def ^>= 0.2.2 - - bytestring-progress < 0 # dependency of arbtt - - circle-packing ^>= 0.1.0.6 - - haskell-spacegoo < 0 - - tasty-expected-failure ^>= 0.12.3 - - "Aditya Bhargava @egonSchiele": - - HandsomeSoup ^>= 0.4.2 - - "Clint Adams @clinty": - - hOpenPGP < 0 - - openpgp-asciiarmor ^>= 0.1.2 - - MusicBrainz ^>= 0.4.1 - - DAV ^>= 1.3.4 - - hopenpgp-tools < 0 - - opensource ^>= 0.1.1.0 - - debian ^>= 4.0.5 - - cabal-debian ^>= 5.2.2 - # dependencies: - - monad-chronicle ^>= 1.0.1 - - "Piyush P Kurur @piyush-kurur": - - raaz < 0 - - naqsha < 0 - - "Joey Hess @joeyh": - - git-annex ^>= 10.20231129 - - concurrent-output ^>= 1.10.20 - - mountpoints ^>= 1.0.2 - - disk-free-space ^>= 0.1.0.1 - - "Colin Woodbury @fosskers": - - aur < 0 - - aura < 0 - - bounded-queue ^>= 1.0.0 - - kanji < 0 - - language-bash < 0 - - microlens-aeson ^>= 2.5.1 - - pipes-random ^>= 1.0.0.5 - - servant-xml ^>= 1.0.2 - - streaming-attoparsec ^>= 1.0.0.1 - - versions ^>= 6.0.3 - - vectortiles < 0 - - "Ketil Malde @ketil-malde": - - biocore < 0 - - biofasta < 0 - - biofastq < 0 - - blastxml < 0 - - bioace < 0 - - biopsl < 0 - - seqloc < 0 - - bioalign < 0 - - BlastHTTP < 0 - - "Florian Eggenhofer @eggzilla": - - ClustalParser ^>= 1.3.0 - - EntrezHTTP < 0 - - Genbank < 0 - - RNAlien < 0 - - biocore < 0 - - bimaps ^>= 0.1.0.2 - - BiobaseBlast < 0 - - BiobaseENA < 0 - - BiobaseEnsembl ^>= 0.2.0.1 - - BiobaseFasta < 0 - - BiobaseHTTP < 0 - - BiobaseTypes < 0 - - BiobaseXNA < 0 - - DPutils ^>= 0.1.1.0 - - ForestStructures ^>= 0.0.1.1 - - OrderedBits ^>= 0.0.2.0 - - PrimitiveArray < 0 # 0.10.1.1 compile fail - - SciBaseTypes ^>= 0.1.1.0 - - Taxonomy < 0 - - ViennaRNAParser ^>= 1.3.3 - - either-unwrap ^>= 1.1 - - "Silk ": - - attoparsec-expr ^>= 0.1.1.2 - - generic-xmlpickler < 0 - - imagesize-conduit ^>= 1.1 - - multipart ^>= 0.2.1 - - tostring ^>= 0.2.1.1 - - uri-encode ^>= 1.5.0.7 - - "Simon Michael @simonmichael": - - quickbench < 0 - - regex-compat-tdfa < 0 - - shelltestrunner ^>= 1.10 - # The hledger project aims to keep the latest release of the core - # "hledger-lib" and "hledger" packages in stackage nightly at all times. - # When other hledger-* packages (or minor non-hledger packages) have - # incompatible bounds, we would prefer they be disabled temporarily, - # rather than disabling the latest hledger-lib and hledger. - # (#3494/closed, #5779/closed) - - hledger ^>= 1.32.1 - - hledger-lib ^>= 1.32.1 - - hledger-ui < 0 - - hledger-web ^>= 1.32.1 - - breakpoint ^>= 0.1.3.0 - - "Mihai Maruseac @mihaimaruseac": - - hindent ^>= 6.1.1 - - io-manager ^>= 0.1.0.4 - - "Dimitri Sabadie @phaazon": - - al < 0 - - event < 0 - - hid < 0 - - monad-journal < 0 - - smoothie < 0 - - wavefront < 0 - - zero < 0 - - "Thomas Schilling @nominolo": - - ghc-syb-utils < 0 - - "Boris Buliga @d12frosted": - - io-choice < 0 - - "Yann Esposito yogsototh @yogsototh": - - human-readable-duration ^>= 0.2.1.4 - - holy-project < 0 - - wai-middleware-caching ^>= 0.1.0.2 - - wai-middleware-caching-lru ^>= 0.1.0.0 - - wai-middleware-caching-redis ^>= 0.2.0.0 - - "Paul Rouse @paul-rouse": - - mysql ^>= 0.2.1 - - mysql-simple ^>= 0.4.9 - - sphinx < 0 # 0.6.0.2 compile fail: Could not find module Network - - xmlhtml ^>= 0.2.5.4 - - yesod-auth-hashdb ^>= 1.7.1.7 - - "Toralf Wittner @twittner": - - bytestring-conversion ^>= 0.3.2 - - cql ^>= 4.0.4 - - cql-io ^>= 1.1.1 - - redis-resp ^>= 1.0.0 - - redis-io < 0 - - swagger < 0 - - tinylog < 0 - - wai-predicates < 0 - - wai-routing < 0 - - zeromq4-haskell ^>= 0.8.0 - - "Alejandro Serrano @serras": - - djinn-lib ^>= 0.0.1.4 - - djinn-ghc < 0 - - generics-mrsop < 0 # 2.3.0 compile fail: TyVarBndr - - kind-apply ^>= 0.4.0.0 - - kind-generics ^>= 0.5.0.0 - - kind-generics-th ^>= 0.2.3.3 - - simplistic-generics < 0 - - wl-pprint ^>= 1.2.1 - - AC-Angle ^>= 1.0 - - language-protobuf ^>= 1.0.1 - - generic-aeson < 0 - - parameterized ^>= 0.5.0.0 - - tracing-control < 0 - - primitive-unlifted ^>= 2.1.0.0 && (<1.0.0.0 || >1.0.0.0) - - stm-lifted < 0 - - monad-primitive < 0 # 0.1 compile fail ghc-9.6 - - mwc-random-monad < 0 - - "Flavio Corpa @kutyel": - - language-avro ^>= 0.1.4.0 - - "Matvey Aksenov @supki": - - terminal-size ^>= 0.3.4 - - envparse ^>= 0.5.0 - - "Luis G. Torres @giogadi": - - kdt ^>= 0.2.5 - - "Pavel Krajcevski @Mokosha": - - netwire ^>= 5.0.3 - - netwire-input ^>= 0.0.7 - - netwire-input-glfw < 0 # 0.0.11 compile fail https://github.com/Mokosha/netwire-input-glfw/issues/5 - - yoga ^>= 0.0.0.5 - - freetype2 ^>= 0.2.0 - - HCodecs ^>= 0.5.2 - - netcode-io ^>= 0.0.3 - - reliable-io ^>= 0.0.2 - - "Michael Sloan @mgsloan": - - store ^>= 0.7.18 - - store-core ^>= 0.4.4.6 - - store-streaming ^>= 0.2.0.5 - - th-orphans ^>= 0.13.14 - - th-reify-many ^>= 0.1.10 - - th-utilities ^>= 0.2.5.0 - - "Nikita Volkov @nikita-volkov": - - acc ^>= 0.2.0.3 - - aeson-unqualified-ast ^>= 1.0.0.3 - - aeson-value-parser ^>= 0.19.7.2 - - attoparsec-data ^>= 1.0.5.4 - - attoparsec-time ^>= 1.0.3.1 - - base-prelude ^>= 1.6.1.1 - - bytestring-strict-builder ^>= 0.4.5.7 - - bytestring-tree-builder ^>= 0.2.7.11 - - cases ^>= 0.1.4.2 - - cereal-unordered-containers ^>= 0.1.0.1 - - deferred-folds ^>= 0.9.18.6 - - deque ^>= 0.4.4.1 - - domain ^>= 0.1.1.5 - - domain-aeson ^>= 0.1.1.2 - - domain-cereal ^>= 0.1.0.1 - - domain-core ^>= 0.1.0.4 - - domain-optics ^>= 0.1.0.4 - - focus ^>= 1.0.3.2 - - hasql ^>= 1.6.3.4 - - hasql-optparse-applicative ^>= 0.7.1.1 - - hasql-pool ^>= 0.10.0.1 - - hasql-th ^>= 0.4.0.19 - - hasql-transaction ^>= 1.0.1.2 - - headed-megaparsec ^>= 0.2.1.3 - - isomorphism-class ^>= 0.1.0.12 - - jsonifier ^>= 0.2.1.3 - - list-t ^>= 1.0.5.7 - - mtl-prelude ^>= 2.0.3.2 - - neat-interpolation ^>= 0.5.1.4 - - optima ^>= 0.4.0.5 - - partial-handler ^>= 1.0.3 - - postgresql-binary ^>= 0.13.1.2 - - postgresql-syntax ^>= 0.4.1.1 - - primitive-extras ^>= 0.10.1.10 - - ptr-poker ^>= 0.1.2.14 - - rebase ^>= 1.20.2 - - rerebase ^>= 1.20.2 - - slave-thread ^>= 1.1.0.3 - - stm-containers ^>= 1.2.0.3 - - stm-hamt ^>= 1.2.0.14 - - template-haskell-compat-v0208 ^>= 0.1.9.3 - - text-builder ^>= 0.6.7.2 - - text-builder-dev ^>= 0.3.4.2 - - th-lego ^>= 0.3.0.3 - - vector-builder ^>= 0.3.8.5 - - vector-extras ^>= 0.2.8.1 - - yaml-unscrambler ^>= 0.1.0.18 - - xml-parser < 0 - - "Iustin Pop @iustin": - - prefix-units ^>= 0.3.0.1 - - "Alexander Thiemann @agrafix": - - Spock < 0 - - Spock-core < 0 # 0.14.0.1 https://github.com/agrafix/Spock/issues/184 - - Spock-api ^>= 0.14.0.0 - - Spock-api-server < 0 - - Spock-worker < 0 - - graph-core ^>= 0.3.0.0 - - hvect ^>= 0.4.0.1 - - reroute ^>= 0.7.0.0 - - users ^>= 0.5.0.0 - - users-persistent < 0 - - users-postgresql-simple < 0 # 0.5.0.2 # fails to compile (#7017) - - users-test ^>= 0.5.0.1 - - validate-input ^>= 0.5.0.0 - - ignore < 0 # 0.1.1.0 compile fail https://github.com/agrafix/ignore/issues/5 - - blaze-bootstrap ^>= 0.1.0.1 - - dataurl ^>= 0.1.0.0 - - psql-helpers ^>= 0.1.0.0 - - superbuffer ^>= 0.3.1.2 - - timespan ^>= 0.4.0.0 - - distance < 0 # 0.1.0.0 compile fail: Semigroup Distance - - async-extra ^>= 0.2.0.0 - - format-numbers ^>= 0.1.0.1 - - highjson < 0 - - highjson-swagger < 0 - - highjson-th < 0 - - fileplow ^>= 0.1.0.0 - - "Joey Eremondi @JoeyEremondi": - - digest ^>= 0.0.2.0 - - elm-core-sources ^>= 1.0.0 - - language-glsl ^>= 0.3.0 - - prettyclass ^>= 1.0.0.0 - - QuasiText ^>= 0.1.2.6 - - union-find < 0 - - zip-archive ^>= 0.4.3 - - "Arthur Fayzrakhmanov @geraldus": - - yesod-form-richtext < 0 - - ghcjs-perch ^>= 0.3.3.3 - - "Tom Ellis @tomjaguarpaw": - - opaleye ^>= 0.10.2.0 - - product-profunctors ^>= 0.11.1.1 - - strict-wrapper ^>= 0.0.0.0 - - "Samplecount stefan@samplecount.com @kaoskorobase": - - shake-language-c ^>= 0.12.0 - - "David Turner @davecturner": - - alarmclock ^>= 0.7.0.6 - - bank-holidays-england ^>= 0.2.0.9 - - "Haskell Servant ": - - servant ^>= 0.20.1 - - servant-blaze ^>= 0.9.1 - - servant-cassava < 0 - - servant-client ^>= 0.20 - - servant-client-core ^>= 0.20 - - servant-conduit ^>= 0.16 - - servant-docs ^>= 0.13 - - servant-foreign ^>= 0.16 - - servant-http-streams ^>= 0.20 - - servant-js < 0 - - servant-lucid ^>= 0.9.0.6 - - servant-machines ^>= 0.16 - - servant-mock < 0 - - servant-multipart ^>= 0.12.1 - - servant-multipart-api ^>= 0.12.1 - - servant-pipes ^>= 0.16 - - servant-server ^>= 0.20 - - servant-swagger ^>= 1.2 - - servant-swagger-ui ^>= 0.3.5.5.0.0 - - servant-swagger-ui-core ^>= 0.3.5 - - "Optics ": - - indexed-profunctors ^>= 0.1.1.1 - - optics ^>= 0.4.2.1 - - optics-core ^>= 0.4.1.1 - - optics-extra ^>= 0.4.2.1 - - optics-th ^>= 0.4.1 - - optics-vl ^>= 0.2.1 - - "Alexandr Ruchkin @mvoidex": - - hformat ^>= 0.3.3.1 - - simple-log < 0 - - text-region < 0 - - haskell-names < 0 - - hsdev < 0 - - "Aleksey Kliger @lambdageek": - - unbound-generics < 0 - - indentation-core < 0 - - indentation-parsec < 0 - - clang-compilation-database < 0 - - "Alois Cochard @aloiscochard": - - machines-binary < 0 - # on behalf of Bryan O'Sullivan @bos: - - wreq ^>= 0.5.4.2 - - "Andraz Bajt @edofic": - - effect-handlers < 0 - - koofr-client < 0 - - snowflake ^>= 0.1.1.1 - - "Leza M. Lutonda @lemol": - - HaskellNet ^>= 0.6.1.2 - - HaskellNet-SSL < 0 - - "Tristan de Cacqueray @tristanC": - - linux-capabilities ^>= 0.1.1.0 - - "Jens Petersen @juhp": - - bodhi ^>= 0.1.0 - - bugzilla-redhat ^>= 1.0.1.1 - - cabal-file ^>= 0.1.1 - - cabal-rpm ^>= 2.1.5 - - cached-json-file ^>= 0.1.1 - - copr-api ^>= 0.2.0 - - dl-fedora ^>= 1.0 - - fedora-dists ^>= 2.1.1 - - fedora-haskell-tools ^>= 1.1 - - HaXml ^>= 1.25.13 - - hkgr ^>= 0.4.3.2 - - http-directory ^>= 0.1.10 - - http-query ^>= 0.1.3 - - hwk ^>= 0.6 - - koji ^>= 0.0.2 - - koji-tool ^>= 1.1.1 - - pagure ^>= 0.1.1 - - pagure-cli ^>= 0.2.1 - - pdc ^>= 0.1.1 - - pkgtreediff ^>= 0.6.0 - - rhbzquery < 0 # 0.4.4 https://github.com/juhp/rhbzquery/issues/1 - - rpm-nvr ^>= 0.1.2 - - rpmbuild-order ^>= 0.4.10 - - simple-cabal ^>= 0.1.3.1 - - simple-cmd ^>= 0.2.7 - - simple-cmd-args ^>= 0.1.8 - - simple-prompt ^>= 0.2.2 - - stack-all ^>= 0.4.2 - - stack-clean-old ^>= 0.5 - - - darcs < 0 - - idris < 0 - - libffi ^>= 0.2.1 - - cairo ^>= 0.13.10.0 - - glib ^>= 0.13.10.0 - - gio ^>= 0.13.10.0 - - pango ^>= 0.13.10.0 - - gtk3 ^>= 0.15.8 - - ghcjs-codemirror ^>= 0.0.0.2 - - ghcjs-dom < 0 - - jsaddle ^>= 0.9.8.3 - - vado < 0 - - vcswrapper < 0 - - ShellCheck ^>= 0.9.0 - - binary-shared ^>= 0.8.3 - - xdg-userdirs ^>= 0.1.0.2 - - "Renzo Carbonara @k0001": - - df1 ^>= 0.4.2 - - di ^>= 1.3 - - di-core ^>= 1.0.4 - - di-df1 ^>= 1.2.1 - - di-handle ^>= 1.0.1 - - di-monad ^>= 1.3.5 - - exinst ^>= 0.9 - - flay ^>= 0.4 - - network-simple ^>= 0.4.5 - - network-simple-tls < 0 # 0.4.1 compile fail https://github.com/k0001/network-simple/issues/37 - - pipes-aeson < 0 - - pipes-attoparsec ^>= 0.6.0 - - pipes-binary ^>= 0.4.4 - - pipes-network < 0 - - pipes-network-tls < 0 - - safe-money ^>= 0.9.1 - - vector-bytes-instances ^>= 0.1.1 - - xmlbf-xeno ^>= 0.2.2 - - xmlbf-xmlhtml ^>= 0.2.2 - - xmlbf ^>= 0.7 - - "Tomas Carnecky @wereHamster": - - avers < 0 - - avers-api < 0 - - avers-server < 0 - - css-syntax ^>= 0.1.0.1 - - etcd < 0 - - github-types ^>= 0.2.1 - - github-webhook-handler < 0 - - github-webhook-handler-snap < 0 - - google-cloud < 0 - - kraken < 0 - - libinfluxdb < 0 - - mole < 0 - - publicsuffix < 0 - - rethinkdb-client-driver < 0 - - snap-blaze ^>= 0.2.1.5 - - "Alexandr Kurilin @alex_kurilin": - - bcrypt ^>= 0.0.11 - - "Jeffrey Rosenbluth @jeffreyrosenbluth": - - palette ^>= 0.3.0.3 - - diagrams-canvas ^>= 1.4.1.2 - - svg-builder ^>= 0.1.1 - - "Leon Mergen @solatis": - - base32string ^>= 0.9.1 - - base58string ^>= 0.10.0 - - bitcoin-api < 0 - - bitcoin-api-extra < 0 - - bitcoin-block < 0 - - bitcoin-script < 0 - - bitcoin-tx < 0 - - bitcoin-types < 0 - - hexstring < 0 - - network-attoparsec < 0 # 0.12.2 compile fail MonadFail - - network-anonymous-i2p < 0 # 0.10.0 compile fail - - network-anonymous-tor < 0 - - "Timothy Jones @zmthy": - - http-media ^>= 0.8.1.1 - - "Greg V @myfreeweb": - - pcre-heavy ^>= 1.0.0.3 - - http-link-header ^>= 1.2.1 - - microformats2-parser < 0 # 1.0.2.2 compile fail aeson >= 2 - - hspec-expectations-pretty-diff ^>= 0.7.2.6 - - wai-cli ^>= 0.2.3 - - magicbane < 0 - - "Francesco Mazzoli @bitonic": - - language-c-quote ^>= 0.13.0.1 - - "Sönke Hahn @soenkehahn": - - generics-eot ^>= 0.4.0.1 - - getopt-generics ^>= 0.13.1.0 - - graph-wrapper ^>= 0.2.6.0 - - string-conversions ^>= 0.4.0.1 - - hspec-checkers ^>= 0.1.0.2 - - FindBin ^>= 0.0.5 - - "Jan Stolarek @jstolarek": - - tasty-program ^>= 1.1.0 - - "Abhinav Gupta @abhinav": - - farmhash < 0 - - pinch ^>= 0.5.0.0 - - sandman < 0 # 0.2.0.1 compile fail (Cabal 3) - - "Adam C. Foltzer @acfoltzer": - - gitrev ^>= 1.3.1 - - persistent-refs < 0 # 0.4 compile fail https://github.com/acfoltzer/persistent-refs/issues/3 - - "Luke Taylor @tekul": - - jose-jwt ^>= 0.9.6 - - "Brendan Hay @brendanhay": - - amazonka ^>= 2.0 - - amazonka-core ^>= 2.0 - - amazonka-test ^>= 2.0 - - amazonka-accessanalyzer ^>= 2.0 - - amazonka-account ^>= 2.0 - - amazonka-amp ^>= 2.0 - - amazonka-amplify ^>= 2.0 - - amazonka-amplifybackend ^>= 2.0 - - amazonka-amplifyuibuilder ^>= 2.0 - - amazonka-apigateway ^>= 2.0 - - amazonka-apigatewaymanagementapi ^>= 2.0 - - amazonka-apigatewayv2 ^>= 2.0 - - amazonka-appconfig ^>= 2.0 - - amazonka-appconfigdata ^>= 2.0 - - amazonka-appflow ^>= 2.0 - - amazonka-appintegrations ^>= 2.0 - - amazonka-application-autoscaling ^>= 2.0 - - amazonka-application-insights ^>= 2.0 - - amazonka-applicationcostprofiler ^>= 2.0 - - amazonka-appmesh ^>= 2.0 - - amazonka-apprunner ^>= 2.0 - - amazonka-appstream ^>= 2.0 - - amazonka-arc-zonal-shift ^>= 2.0 - - amazonka-athena ^>= 2.0 - - amazonka-auditmanager ^>= 2.0 - - amazonka-autoscaling ^>= 2.0 - - amazonka-backup ^>= 2.0 - - amazonka-backup-gateway ^>= 2.0 - - amazonka-backupstorage ^>= 2.0 - - amazonka-billingconductor ^>= 2.0 - - amazonka-braket ^>= 2.0 - - amazonka-budgets ^>= 2.0 - - amazonka-certificatemanager ^>= 2.0 - - amazonka-chime ^>= 2.0 - - amazonka-chime-sdk-identity ^>= 2.0 - - amazonka-chime-sdk-media-pipelines ^>= 2.0 - - amazonka-chime-sdk-meetings ^>= 2.0 - - amazonka-chime-sdk-messaging ^>= 2.0 - - amazonka-chime-sdk-voice ^>= 2.0 - - amazonka-cloudcontrol ^>= 2.0 - - amazonka-cloudformation ^>= 2.0 - - amazonka-cloudfront ^>= 2.0 - - amazonka-cloudhsm ^>= 2.0 - - amazonka-cloudsearch ^>= 2.0 - - amazonka-cloudsearch-domains ^>= 2.0 - - amazonka-cloudtrail ^>= 2.0 - - amazonka-cloudwatch ^>= 2.0 - - amazonka-cloudwatch-events ^>= 2.0 - - amazonka-cloudwatch-logs ^>= 2.0 - - amazonka-codeartifact ^>= 2.0 - - amazonka-codebuild ^>= 2.0 - - amazonka-codecommit ^>= 2.0 - - amazonka-codedeploy ^>= 2.0 - - amazonka-codeguru-reviewer ^>= 2.0 - - amazonka-codeguruprofiler ^>= 2.0 - - amazonka-codepipeline ^>= 2.0 - - amazonka-codestar-connections ^>= 2.0 - - amazonka-codestar-notifications ^>= 2.0 - - amazonka-cognito-identity ^>= 2.0 - - amazonka-cognito-idp ^>= 2.0 - - amazonka-cognito-sync ^>= 2.0 - - amazonka-comprehendmedical ^>= 2.0 - - amazonka-compute-optimizer ^>= 2.0 - - amazonka-config ^>= 2.0 - - amazonka-connect-contact-lens ^>= 2.0 - - amazonka-connectcampaigns ^>= 2.0 - - amazonka-connectcases ^>= 2.0 - - amazonka-connectparticipant ^>= 2.0 - - amazonka-controltower ^>= 2.0 - - amazonka-customer-profiles ^>= 2.0 - - amazonka-databrew ^>= 2.0 - - amazonka-dataexchange ^>= 2.0 - - amazonka-datapipeline ^>= 2.0 - - amazonka-datasync ^>= 2.0 - - amazonka-detective ^>= 2.0 - - amazonka-devicefarm ^>= 2.0 - - amazonka-devops-guru ^>= 2.0 - - amazonka-directconnect ^>= 2.0 - - amazonka-discovery ^>= 2.0 - - amazonka-dlm ^>= 2.0 - - amazonka-dms ^>= 2.0 - - amazonka-docdb ^>= 2.0 - - amazonka-docdb-elastic ^>= 2.0 - - amazonka-drs ^>= 2.0 - - amazonka-ds ^>= 2.0 - - amazonka-dynamodb ^>= 2.0 - - amazonka-dynamodb-streams ^>= 2.0 - - amazonka-ebs ^>= 2.0 - - amazonka-ec2 ^>= 2.0 - - amazonka-ec2-instance-connect ^>= 2.0 - - amazonka-ecr ^>= 2.0 - - amazonka-ecr-public ^>= 2.0 - - amazonka-ecs ^>= 2.0 - - amazonka-efs ^>= 2.0 - - amazonka-eks ^>= 2.0 - - amazonka-elastic-inference ^>= 2.0 - - amazonka-elasticache ^>= 2.0 - - amazonka-elasticbeanstalk ^>= 2.0 - - amazonka-elasticsearch ^>= 2.0 - - amazonka-elastictranscoder ^>= 2.0 - - amazonka-elb ^>= 2.0 - - amazonka-elbv2 ^>= 2.0 - - amazonka-emr ^>= 2.0 - - amazonka-emr-containers ^>= 2.0 - - amazonka-emr-serverless ^>= 2.0 - - amazonka-evidently ^>= 2.0 - - amazonka-finspace ^>= 2.0 - - amazonka-finspace-data ^>= 2.0 - - amazonka-fis ^>= 2.0 - - amazonka-forecast ^>= 2.0 - - amazonka-forecastquery ^>= 2.0 - - amazonka-frauddetector ^>= 2.0 - - amazonka-fsx ^>= 2.0 - - amazonka-gamelift ^>= 2.0 - - amazonka-gamesparks ^>= 2.0 - - amazonka-glacier ^>= 2.0 - - amazonka-globalaccelerator ^>= 2.0 - - amazonka-glue ^>= 2.0 - - amazonka-grafana ^>= 2.0 - - amazonka-greengrassv2 ^>= 2.0 - - amazonka-groundstation ^>= 2.0 - - amazonka-health ^>= 2.0 - - amazonka-healthlake ^>= 2.0 - - amazonka-honeycode ^>= 2.0 - - amazonka-iam ^>= 2.0 - - amazonka-identitystore ^>= 2.0 - - amazonka-imagebuilder ^>= 2.0 - - amazonka-importexport ^>= 2.0 - - amazonka-inspector ^>= 2.0 - - amazonka-inspector2 ^>= 2.0 - - amazonka-iot ^>= 2.0 - - amazonka-iot-dataplane ^>= 2.0 - - amazonka-iot-roborunner ^>= 2.0 - - amazonka-iot1click-devices ^>= 2.0 - - amazonka-iot1click-projects ^>= 2.0 - - amazonka-iotdeviceadvisor ^>= 2.0 - - amazonka-iotevents ^>= 2.0 - - amazonka-iotevents-data ^>= 2.0 - - amazonka-iotfleethub ^>= 2.0 - - amazonka-iotfleetwise ^>= 2.0 - - amazonka-iotsecuretunneling ^>= 2.0 - - amazonka-iotsitewise ^>= 2.0 - - amazonka-iotthingsgraph ^>= 2.0 - - amazonka-iottwinmaker ^>= 2.0 - - amazonka-iotwireless ^>= 2.0 - - amazonka-ivs ^>= 2.0 - - amazonka-ivschat ^>= 2.0 - - amazonka-kafka ^>= 2.0 - - amazonka-kafkaconnect ^>= 2.0 - - amazonka-kendra ^>= 2.0 - - amazonka-keyspaces ^>= 2.0 - - amazonka-kinesis ^>= 2.0 - - amazonka-kinesis-analytics ^>= 2.0 - - amazonka-kinesis-firehose ^>= 2.0 - - amazonka-kinesis-video-signaling ^>= 2.0 - - amazonka-kinesis-video-webrtc-storage ^>= 2.0 - - amazonka-kinesisanalyticsv2 ^>= 2.0 - - amazonka-kms ^>= 2.0 - - amazonka-lakeformation ^>= 2.0 - - amazonka-lambda ^>= 2.0 - - amazonka-lexv2-models ^>= 2.0 - - amazonka-license-manager ^>= 2.0 - - amazonka-license-manager-linux-subscriptions ^>= 2.0 - - amazonka-license-manager-user-subscriptions ^>= 2.0 - - amazonka-lightsail ^>= 2.0 - - amazonka-location ^>= 2.0 - - amazonka-lookoutequipment ^>= 2.0 - - amazonka-lookoutmetrics ^>= 2.0 - - amazonka-lookoutvision ^>= 2.0 - - amazonka-m2 ^>= 2.0 - - amazonka-macie ^>= 2.0 - - amazonka-maciev2 ^>= 2.0 - - amazonka-managedblockchain ^>= 2.0 - - amazonka-marketplace-analytics ^>= 2.0 - - amazonka-marketplace-catalog ^>= 2.0 - - amazonka-marketplace-metering ^>= 2.0 - - amazonka-mediaconnect ^>= 2.0 - - amazonka-mediapackage-vod ^>= 2.0 - - amazonka-mediatailor ^>= 2.0 - - amazonka-memorydb ^>= 2.0 - - amazonka-mgn ^>= 2.0 - - amazonka-migration-hub-refactor-spaces ^>= 2.0 - - amazonka-migrationhub-config ^>= 2.0 - - amazonka-migrationhuborchestrator ^>= 2.0 - - amazonka-migrationhubstrategy ^>= 2.0 - - amazonka-ml ^>= 2.0 - - amazonka-mwaa ^>= 2.0 - - amazonka-neptune ^>= 2.0 - - amazonka-network-firewall ^>= 2.0 - - amazonka-networkmanager ^>= 2.0 - - amazonka-nimble ^>= 2.0 - - amazonka-oam ^>= 2.0 - - amazonka-omics ^>= 2.0 - - amazonka-opensearch ^>= 2.0 - - amazonka-opensearchserverless ^>= 2.0 - - amazonka-opsworks ^>= 2.0 - - amazonka-opsworks-cm ^>= 2.0 - - amazonka-outposts ^>= 2.0 - - amazonka-panorama ^>= 2.0 - - amazonka-personalize ^>= 2.0 - - amazonka-personalize-events ^>= 2.0 - - amazonka-personalize-runtime ^>= 2.0 - - amazonka-pi ^>= 2.0 - - amazonka-pinpoint ^>= 2.0 - - amazonka-pinpoint-email ^>= 2.0 - - amazonka-pinpoint-sms-voice ^>= 2.0 - - amazonka-pinpoint-sms-voice-v2 ^>= 2.0 - - amazonka-pipes ^>= 2.0 - - amazonka-polly ^>= 2.0 - - amazonka-privatenetworks ^>= 2.0 - - amazonka-proton ^>= 2.0 - - amazonka-qldb ^>= 2.0 - - amazonka-qldb-session ^>= 2.0 - - amazonka-quicksight ^>= 2.0 - - amazonka-ram ^>= 2.0 - - amazonka-rbin ^>= 2.0 - - amazonka-rds ^>= 2.0 - - amazonka-rds-data ^>= 2.0 - - amazonka-redshift ^>= 2.0 - - amazonka-redshift-data ^>= 2.0 - - amazonka-redshift-serverless ^>= 2.0 - - amazonka-rekognition ^>= 2.0 - - amazonka-resiliencehub ^>= 2.0 - - amazonka-resource-explorer-v2 ^>= 2.0 - - amazonka-robomaker ^>= 2.0 - - amazonka-rolesanywhere ^>= 2.0 - - amazonka-route53 ^>= 2.0 - - amazonka-route53-domains ^>= 2.0 - - amazonka-route53-recovery-cluster ^>= 2.0 - - amazonka-route53-recovery-control-config ^>= 2.0 - - amazonka-route53-recovery-readiness ^>= 2.0 - - amazonka-route53resolver ^>= 2.0 - - amazonka-rum ^>= 2.0 - - amazonka-s3 ^>= 2.0 - - amazonka-s3outposts ^>= 2.0 - - amazonka-sagemaker-a2i-runtime ^>= 2.0 - - amazonka-sagemaker-edge ^>= 2.0 - - amazonka-sagemaker-featurestore-runtime ^>= 2.0 - - amazonka-sagemaker-geospatial ^>= 2.0 - - amazonka-sagemaker-metrics ^>= 2.0 - - amazonka-savingsplans ^>= 2.0 - - amazonka-scheduler ^>= 2.0 - - amazonka-schemas ^>= 2.0 - - amazonka-sdb ^>= 2.0 - - amazonka-securityhub ^>= 2.0 - - amazonka-securitylake ^>= 2.0 - - amazonka-service-quotas ^>= 2.0 - - amazonka-servicecatalog ^>= 2.0 - - amazonka-servicecatalog-appregistry ^>= 2.0 - - amazonka-ses ^>= 2.0 - - amazonka-sesv2 ^>= 2.0 - - amazonka-shield ^>= 2.0 - - amazonka-signer ^>= 2.0 - - amazonka-simspaceweaver ^>= 2.0 - - amazonka-sms ^>= 2.0 - - amazonka-sms-voice ^>= 2.0 - - amazonka-snow-device-management ^>= 2.0 - - amazonka-snowball ^>= 2.0 - - amazonka-sns ^>= 2.0 - - amazonka-sqs ^>= 2.0 - - amazonka-ssm ^>= 2.0 - - amazonka-ssm-contacts ^>= 2.0 - - amazonka-ssm-incidents ^>= 2.0 - - amazonka-ssm-sap ^>= 2.0 - - amazonka-sso ^>= 2.0 - - amazonka-sso-admin ^>= 2.0 - - amazonka-sso-oidc ^>= 2.0 - - amazonka-stepfunctions ^>= 2.0 - - amazonka-storagegateway ^>= 2.0 - - amazonka-sts ^>= 2.0 - - amazonka-support ^>= 2.0 - - amazonka-support-app ^>= 2.0 - - amazonka-swf ^>= 2.0 - - amazonka-synthetics ^>= 2.0 - - amazonka-textract ^>= 2.0 - - amazonka-timestream-query ^>= 2.0 - - amazonka-timestream-write ^>= 2.0 - - amazonka-transfer ^>= 2.0 - - amazonka-voice-id ^>= 2.0 - - amazonka-waf ^>= 2.0 - - amazonka-wafv2 ^>= 2.0 - - amazonka-wellarchitected ^>= 2.0 - - amazonka-wisdom ^>= 2.0 - - amazonka-worklink ^>= 2.0 - - amazonka-workmailmessageflow ^>= 2.0 - - amazonka-workspaces ^>= 2.0 - - amazonka-workspaces-web ^>= 2.0 - - amazonka-xray ^>= 2.0 - # gogol-* disabled due to `gogol-core` due to `servant`: #6089/closed - - gogol < 0 - - gogol-core < 0 # 0.5.0 compile fail - - gogol-adexchange-buyer < 0 - - gogol-adexchange-seller < 0 - - gogol-admin-datatransfer < 0 - - gogol-admin-directory < 0 - - gogol-admin-emailmigration < 0 - - gogol-admin-reports < 0 - - gogol-adsense < 0 - - gogol-adsense-host < 0 - - gogol-affiliates < 0 - - gogol-analytics < 0 - - gogol-android-enterprise < 0 - - gogol-android-publisher < 0 - - gogol-appengine < 0 - - gogol-apps-activity < 0 - - gogol-apps-calendar < 0 - - gogol-apps-licensing < 0 - - gogol-apps-reseller < 0 - - gogol-apps-tasks < 0 - - gogol-appstate < 0 - - gogol-autoscaler < 0 - - gogol-bigquery < 0 - - gogol-billing < 0 - - gogol-blogger < 0 - - gogol-books < 0 - - gogol-civicinfo < 0 - - gogol-classroom < 0 - - gogol-cloudmonitoring < 0 - - gogol-cloudtrace < 0 - - gogol-compute < 0 - - gogol-container < 0 - - gogol-customsearch < 0 - - gogol-dataflow < 0 - - gogol-dataproc < 0 - - gogol-datastore < 0 - - gogol-debugger < 0 - - gogol-deploymentmanager < 0 - - gogol-dfareporting < 0 - - gogol-discovery < 0 - - gogol-dns < 0 - - gogol-doubleclick-bids < 0 - - gogol-doubleclick-search < 0 - - gogol-drive < 0 - - gogol-firebase-rules < 0 - - gogol-fitness < 0 - - gogol-fonts < 0 - - gogol-freebasesearch < 0 - - gogol-fusiontables < 0 - - gogol-games < 0 - - gogol-games-configuration < 0 - - gogol-games-management < 0 - - gogol-genomics < 0 - - gogol-gmail < 0 - - gogol-groups-migration < 0 - - gogol-groups-settings < 0 - - gogol-identity-toolkit < 0 - - gogol-kgsearch < 0 - - gogol-latencytest < 0 - - gogol-logging < 0 - - gogol-maps-coordinate < 0 - - gogol-maps-engine < 0 - - gogol-mirror < 0 - - gogol-monitoring < 0 - - gogol-oauth2 < 0 - - gogol-pagespeed < 0 - - gogol-partners < 0 - - gogol-people < 0 - - gogol-play-moviespartner < 0 - - gogol-plus < 0 - - gogol-plus-domains < 0 - - gogol-prediction < 0 - - gogol-proximitybeacon < 0 - - gogol-pubsub < 0 - - gogol-qpxexpress < 0 - - gogol-replicapool < 0 - - gogol-replicapool-updater < 0 - - gogol-resourcemanager < 0 - - gogol-resourceviews < 0 - - gogol-script < 0 - - gogol-sheets < 0 - - gogol-shopping-content < 0 - - gogol-siteverification < 0 - - gogol-spectrum < 0 - - gogol-sqladmin < 0 - - gogol-storage < 0 - - gogol-storage-transfer < 0 - - gogol-tagmanager < 0 - - gogol-taskqueue < 0 - - gogol-translate < 0 - - gogol-urlshortener < 0 - - gogol-useraccounts < 0 - - gogol-vision < 0 - - gogol-webmaster-tools < 0 - - gogol-youtube < 0 - - gogol-youtube-analytics < 0 - - gogol-youtube-reporting < 0 - - ede < 0 # 0.3.3.0 compile fail - - pagerduty < 0 # 0.0.8 compile fail with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 - - semver ^>= 0.4.0.1 - - text-manipulate ^>= 0.3.1.0 - - "Nick Partridge @nkpart": - - cabal-file-th < 0 # 0.2.7 compile fail https://github.com/nkpart/cabal-file-th/issues/13 - - "Gershom Bazerman @gbaz": - - jmacro ^>= 0.6.18 - - jmacro-rpc < 0 # 0.3.3 compile fail - - jmacro-rpc-snap < 0 - - jmacro-rpc-happstack < 0 - - - mbox < 0 - - kmeans ^>= 0.1.3 - - boolsimplifier ^>= 0.1.8 - - cubicspline ^>= 0.1.2 - - maximal-cliques ^>= 0.1.1 - - "Alexander Bondarenko @dpwiz": - - hedn ^>= 0.3.0.4 - - sdl2 ^>= 2.5.5.0 - - soap < 0 - - soap-tls < 0 - - soap-openssl < 0 - - "Andres Löh @kosmikus": - - generics-sop ^>= 0.5.1.3 && <0.5.1.4 # https://github.com/commercialhaskell/stackage/issues/7155 - - records-sop ^>= 0.1.1.1 - - sop-core ^>= 0.5.0.2 - - "Vivian McPhail @amcphail": - - hmatrix-gsl-stats ^>= 0.4.1.8 - - hsignal ^>= 0.2.7.5 - - hstatistics ^>= 0.3.1 - - plot < 0 # 0.2.3.11 # fails to compile (#7017) - - vector-buffer ^>= 0.4.1 - - hmatrix-repa < 0 - - "Noam Lewis @sinelaw": - - xml-to-json < 0 - - xml-to-json-fast ^>= 2.0.0 - - wl-pprint ^>= 1.2.1 - # not a maintainer - - hxt-curl ^>= 9.1.1.1 - - hxt-expat ^>= 9.1.1 - - hxt-tagsoup ^>= 9.1.4 - - hexpat ^>= 0.20.13 - - digits ^>= 0.3.1 - - logict ^>= 0.8.1.0 - - leveldb-haskell ^>= 0.6.5 - - system-argv0 ^>= 0.1.1 - - markdown-unlit ^>= 0.6.0 - - "Brian McKenna @puffnfresh": - - jwt ^>= 0.11.0 - - "Sven Bartscher sven.bartscher@weltraumschlangen.de @kritzefitz": - - setlocale ^>= 1.0.0.10 - - "Taylor Fausak @tfausak": - - autoexporter ^>= 2.0.0.9 - - burrito ^>= 2.0.1.7 - - flow ^>= 2.0.0.4 - - github-release ^>= 2.0.0.9 - - json-feed ^>= 2.0.0.10 - - lackey ^>= 2.0.0.7 - - patrol ^>= 1.0.0.6 - - rampart ^>= 2.0.0.7 - - ratel ^>= 2.0.0.10 - - ratel-wai ^>= 2.0.0.5 - - rattletrap ^>= 12.1.2 - - salve ^>= 2.0.0.4 - - strive ^>= 6.0.0.10 - - witch ^>= 1.2.0.3 - - wuss ^>= 2.0.1.5 - - - bmp ^>= 1.2.6.3 # @benl23x5 - - gpolyline ^>= 0.1.0.1 # @fegu - - "Marios Titas @redneb": - - HsOpenSSL-x509-system ^>= 0.1.0.4 - - adler32 ^>= 0.1.2.0 - - btrfs ^>= 0.2.1.0 - - disk-free-space ^>= 0.1.0.1 - - hxt-css ^>= 0.1.0.3 - - islink ^>= 0.1.0.0 - - linux-file-extents ^>= 0.2.0.1 - - linux-namespaces ^>= 0.1.3.1 - - "Will Coster @fimad": - - prometheus-client ^>= 1.1.1 - - prometheus-metrics-ghc ^>= 1.0.1.2 - - scalpel ^>= 0.6.2.2 - - scalpel-core ^>= 0.6.2.2 - - wai-middleware-prometheus ^>= 1.0.0.1 - - "William Casarin @jb55": - - bson-lens ^>= 0.1.1 - - cased ^>= 0.1.0.0 - - elm-export ^>= 0.6.0.1 - - elm-export-persistent < 0 - - pipes-csv ^>= 1.4.3 - - pipes-mongodb ^>= 0.1.0.0 - - servant-elm ^>= 0.7.3 - - servant-streaming < 0 - - servant-streaming-client < 0 - - servant-streaming-server < 0 - - skeletons < 0 - - "David Raymond Christiansen @david-christiansen": - - annotated-wl-pprint ^>= 0.7.0 - - "Yitz Gale @ygale": - - boolean-normal-forms < 0 - - strict-concurrency ^>= 0.2.4.3 - - timezone-series ^>= 0.1.13 - - timezone-olson ^>= 0.2.1 - - "Harry Garrood @hdgarrood": - - aeson-better-errors < 0 - - "Mitchell Rosen @mitchellwrosen": - - hasql-interpolate ^>= 0.2.1.0 - - hasql-listen-notify ^>= 0.1.0 - - int-supply ^>= 1.0.0 - - ki ^>= 1.0.1.1 - - ki-unlifted ^>= 1.0.0.2 - - list-shuffle ^>= 1.0.0 - - park-bench ^>= 0.1.1.0 - - tasty-hspec ^>= 1.2.0.4 - - termbox ^>= 2.0.0.1 - - termbox-banana ^>= 2.0.0 - - termbox-bindings-c ^>= 0.1.0.1 - - termbox-bindings-hs ^>= 1.0.0 - - termbox-tea ^>= 1.0.0 - - text-ansi ^>= 0.3.0.1 - - timer-wheel ^>= 1.0.0 - - "QBayLogic B.V. @martijnbastiaan": - - ghc-tcplugins-extra ^>= 0.4.5 - - ghc-typelits-extra ^>= 0.4.6 - - ghc-typelits-knownnat ^>= 0.7.10 - - ghc-typelits-natnormalise ^>= 0.7.9 - - clash-prelude ^>= 1.8.1 - # - clash-lib # https://github.com/commercialhaskell/stackage/issues/7176 - # - clash-ghc # https://github.com/commercialhaskell/stackage/issues/7176 - - "Martijn Bastiaan @martijnbastiaan": - - aeson-pretty ^>= 0.8.10 - - doctest-parallel ^>= 0.3.1 - - "Athan Clark @athanclark": - - aeson-attoparsec ^>= 0.0.0 - - alternative-vector ^>= 0.0.0 - - almost-fix ^>= 0.0.2 - - attoparsec-base64 ^>= 0.0.0 - - attoparsec-path ^>= 0.0.0.1 - # - attoparsec-ip # Deprecated in favor of ip - - attoparsec-uri ^>= 0.0.9 - - chan ^>= 0.0.4.1 - - commutative ^>= 0.0.2 - - composition-extra ^>= 2.1.0 - - every ^>= 0.0.1 - - extractable-singleton ^>= 0.0.1 - - follow-file < 0 # 0.0.3 compile fail https://github.com/athanclark/follow-file/issues/1 - - HSet ^>= 0.0.2 - - markup < 0 # 4.2.0 compile fail https://github.com/athanclark/markup/issues/7 - - monad-control-aligned ^>= 0.0.2.1 - - monadoid ^>= 0.0.3 - - n-tuple ^>= 0.0.3 - - path-extra ^>= 0.3.1 - - pred-set ^>= 0.0.1 - - pred-trie < 0 - - poly-arity ^>= 0.1.0 - - quickcheck-combinators < 0 - - rose-trees < 0 - - sets < 0 - - since ^>= 0.0.0 - - timemap < 0 - - tmapchan ^>= 0.0.3 - - tmapmvar ^>= 0.0.4 - - tries < 0 - - unit-constraint ^>= 0.0.0 - - unfoldable-restricted < 0 - - urlpath ^>= 11.0.2 - - wai-transformers ^>= 0.1.0 - - websockets-rpc < 0 - - websockets-simple ^>= 0.2.0 - - webpage ^>= 0.0.5.1 - - ws ^>= 0.0.6 - - "Fumiaki Kinoshita @fumieval": - - boundingboxes ^>= 0.2.3 - - control-bool ^>= 0.2.1 - - drinkery < 0 - - monad-skeleton < 0 - - xml-lens ^>= 0.3.1 - - witherable ^>= 0.4.2 - - deriving-aeson ^>= 0.2.9 - - data-functor-logistic ^>= 0.0 - - "Peter Harpending @pharpend": - - editor-open ^>= 0.6.0.0 - - exceptional < 0 # 0.3.0.0 MonadFail - - pager ^>= 0.1.1.0 - - semiring-simple ^>= 1.0.0.1 - - "Philipp Hausmann @phile314": - - language-thrift < 0 - - "Michael Thompson @michaelt": - - pipes-text ^>= 1.0.1 - - lens-simple < 0 - - lens-family-core ^>= 2.1.2 - - lens-family ^>= 2.1.2 - - "Sjoerd Visscher @sjoerdvisscher": - - one-liner ^>= 2.1 - - "Justin Le @mstksg": - - advent-of-code-api < 0 # 0.2.8.4 compile fail https://github.com/commercialhaskell/stackage/issues/7038 - - auto < 0 - - backprop ^>= 0.2.6.5 - - bins < 0 - - conduino < 0 # 0.2.2.0 https://github.com/mstksg/conduino/issues/1 - - configurator-export ^>= 0.1.0.1 - - decidable < 0 - - emd < 0 - - functor-products < 0 - - hamilton < 0 # 0.1.0.3 compile fail https://github.com/mstksg/hamilton/issues/9 - - hmatrix-backprop ^>= 0.1.3.0 - - hmatrix-vector-sized ^>= 0.1.3.0 - - lens-typelevel < 0 - - list-witnesses < 0 - - nonempty-containers ^>= 0.3.4.5 - - one-liner-instances ^>= 0.1.3.0 - - prompt < 0 # 0.1.1.2 # fails to compile (#7017) - - servant-cli < 0 - - tagged-binary ^>= 0.2.0.1 - - type-combinators-singletons < 0 - - typelits-witnesses ^>= 0.4.0.1 - - uncertain < 0 - - vector-sized ^>= 1.5.0 - - "Ian Duncan @iand675": - - feature-flags ^>= 0.1.0.1 - - metrics ^>= 0.4.1.1 - - pipes-wai ^>= 3.2.0 - - serf < 0 - - uri-templater < 0 - - data-sketches ^>= 0.3.1.0 - - data-sketches-core ^>= 0.1.0.0 - - "Michael Xavier @MichaelXavier": - - uri-bytestring ^>= 0.3.3.1 - - cron < 0 # 0.7.0 ghc-9.6 https://github.com/MichaelXavier/cron/issues/50 - - tasty-tap ^>= 0.1.0 - - tasty-fail-fast ^>= 0.0.3 - - drifter ^>= 0.3.0 - - drifter-postgresql ^>= 0.2.1 - - drifter-sqlite ^>= 0.1.0.0 - - "Lars Kuhtz @larskuhtz": - - wai-cors ^>= 0.2.7 - - configuration-tools ^>= 0.7.0 - - random-bytestring ^>= 0.1.4 - - "Sam Rijs @srijs": - - ndjson-conduit ^>= 0.1.0.5 - - operational-class < 0 # 0.3.0.0 compile fail https://github.com/srijs/haskell-operational-class/issues/1 - - result ^>= 0.2.6.0 - - "Daniel Patterson @dbp": - - hworker ^>= 0.1.0.1 - - fn ^>= 0.3.0.2 - - "Mathieu Boespflug @mboes": - - choice ^>= 0.2.3 - - distributed-closure ^>= 0.5.0.0 - - inline-java < 0 - - inline-r ^>= 1.0.1 - - jni < 0 # 0.8.0 compile fail - - jvm < 0 - - jvm-streaming < 0 - - H ^>= 1.0.0 - - sparkle < 0 - - th-lift ^>= 0.8.4 - - "Christopher Reichert @creichert": - - bencode ^>= 0.6.1.1 - - hsebaysdk < 0 - - dockerfile ^>= 0.2.0 - - wai-middleware-throttle ^>= 0.3.0.1 - - yesod-auth-basic ^>= 0.1.0.3 - - "Hirotomo Moriwaki @philopon": - - barrier ^>= 0.1.1 - - "Kai Zhang @kaizhang": - - matrices ^>= 0.5.0 - - haskell-igraph < 0 # 0.8.0 compile fail ghc 8.10.1 #5440/closed - - "Michel Boucey @MichelBoucey": - - IPv6Addr ^>= 2.0.5.1 - - ip6addr ^>= 1.0.3 - - cayley-client < 0 - - Spintax < 0 - - glabrous ^>= 2.0.6.2 - - google-oauth2-jwt < 0 - - IPv6DB < 0 - - gothic < 0 - - NanoID < 0 - - "koral koral@mailoo.org @k0ral": - - atom-conduit ^>= 0.9.0.1 - - conduit-parse ^>= 0.2.1.1 - - dublincore-xml-conduit ^>= 0.1.0.3 - - euler-tour-tree < 0 - - opml-conduit ^>= 0.9.0.0 - - rss-conduit ^>= 0.6.0.1 - - timerep ^>= 2.1.0.0 - - xml-conduit-parse < 0 - - "Daniel Cartwright @chessai": - - streaming ^>= 0.2.4.0 - - streaming-bytestring ^>= 0.3.2 - - country ^>= 0.2.4.1 - - semirings ^>= 0.6 - - torsor ^>= 0.1 - - chronos ^>= 1.1.5.1 - - refined ^>= 0.8.1 - - these-skinny ^>= 0.7.5 - - hedgehog-classes ^>= 0.2.5.4 - - "Kostiantyn Rybnikov @k-bx": - - SHA ^>= 1.6.4.4 - - currency ^>= 0.2.0.0 - - data-ordlist ^>= 0.4.7.0 - - digits ^>= 0.3.1 - - dns ^>= 4.2.0 - - friday ^>= 0.2.3.2 - - friday-juicypixels ^>= 0.1.2.4 - - hbeanstalk < 0 - - hedis ^>= 0.15.2 - - hprotoc < 0 - - hsyslog-udp < 0 - - iso3166-country-codes ^>= 0.20140203.8 - - iso639 ^>= 0.1.0.3 - - monoidal-containers ^>= 0.6.4.0 - - murmur-hash ^>= 0.1.0.10 - - protocol-buffers < 0 - - protocol-buffers-descriptor < 0 - - regex-pcre ^>= 0.95.0.0 - - string-class ^>= 0.1.7.1 - - string-combinators ^>= 0.6.0.5 - - "Rob O'Callahan ropoctl@gmail.com @rcallahan": - - pipes-fastx ^>= 0.3.0.0 - - seqalign ^>= 0.2.0.4 - - "John Lenz @wuzzeb": - - yesod-static-angular < 0 - - hspec-webdriver ^>= 1.2.2 - - webdriver-angular < 0 - - "Sven Heyll @sheyll": - - b9 < 0 - - type-spec ^>= 0.4.0.0 - - pretty-types < 0 # 0.4.0.0 # fails to compile https://github.com/sheyll/pretty-types/issues/2 - - function-builder ^>= 0.3.0.1 - - bytestring-to-vector ^>= 0.3.0.1 - - "Jakub FijaƂkowski @jakubfijalkowski": - - hlibsass ^>= 0.1.10.1 - - hsass ^>= 0.8.0 - - "Robert Massaioli @robertmassaioli": - - range ^>= 0.3.0.2 - - "Vladislav Zavialov @int-index": - - transformers-lift < 0 - - union < 0 - - named ^>= 0.3.0.1 - - inj ^>= 1.0 - - shower < 0 - - "Stack Builders stackage@stackbuilders.com @stackbuilders": - - atomic-write ^>= 0.2.0.7 - - dbcleaner ^>= 0.1.3 - - dotenv ^>= 0.11.0.2 - - hapistrano < 0 - - hspec-golden ^>= 0.2.1.0 - - inflections ^>= 0.4.0.7 - - stache ^>= 2.3.4 - - scalendar < 0 - - "Sergey Alirzaev @l29ah": - - monad-peel ^>= 0.3 - - NineP ^>= 0.0.2.1 - - Network-NineP < 0 - - pontarius-xmpp ^>= 0.5.6.8 - - stringprep ^>= 1.0.0 - - ranges ^>= 0.2.4 - - "Antoni Silvestre @asilvestre": - # Test suite needs a running neo4j server with auth disabled - # unfortunately the cabal package name and the github repo don't have the exact same name - # package name is haskell-neo4j-client github name is haskell-neo4j-rest-client - - haskell-neo4j-client < 0 # 0.3.2.4 compile fail with GHC 8.4 https://github.com/asilvestre/haskell-neo4j-rest-client/issues/32 - - "Anton Kholomiov ": - - data-fix ^>= 0.3.2 - - "Alexey Khudyakov @Shimuuar": - - histogram-fill ^>= 0.9.1.0 - - fixed-vector ^>= 1.2.3.0 - - fixed-vector-hetero ^>= 0.6.1.1 - - type-level-numbers ^>= 0.1.1.2 - - "Ryan Scott @RyanGlScott": - - abstract-deque ^>= 0.3 - - abstract-deque-tests ^>= 0.3 - - abstract-par ^>= 0.3.3 - - atomic-primops ^>= 0.8.4 - - base-compat-batteries ^>= 0.13.1 - - base-orphans ^>= 0.9.1 - - bifunctor-classes-compat ^>= 0.1 - - chaselev-deque < 0 - - code-page ^>= 0.2.1 - - constraint-tuples ^>= 0.1.2 - - criterion ^>= 1.6.3.0 - - criterion-measurement ^>= 0.2.1.0 - - data-reify ^>= 0.6.3 - - deriving-compat ^>= 0.6.5 - - dotgen ^>= 0.4.3 - - echo ^>= 0.1.4 - - eliminators ^>= 0.9.3 - - foldable1-classes-compat ^>= 0.1 - - generic-deriving ^>= 1.14.5 - - ghc-bignum-orphans ^>= 0.1.1 - - hashmap ^>= 1.3.3 - - indexed-traversable-instances ^>= 0.1.1.2 - - invariant ^>= 0.6.2 - - keycode ^>= 0.2.2 - - lift-generics ^>= 0.2.1 - - mintty ^>= 0.1.4 - - monad-par ^>= 0.3.6 - - monad-par-extras ^>= 0.3.3 - - mtl-compat ^>= 0.2.2 - - ordered-containers ^>= 0.2.3 - - proxied ^>= 0.3.1 - - rdtsc ^>= 1.3.0.1 - - singleton-nats ^>= 0.4.7 - - singletons-base ^>= 3.2 - - singletons-th ^>= 3.2 - - text-show ^>= 3.10.4 - - text-show-instances ^>= 3.9.7 - - th-abstraction ^>= 0.5.0.0 - - th-compat ^>= 0.1.4 - - thread-local-storage ^>= 0.2 - - type-equality ^>= 1 - - "Kirill Zaborsky @qrilka": - - xlsx ^>= 1.1.1 - - "Matt Parsons @parsonsmatt": - - annotated-exception ^>= 0.2.0.5 - - monad-logger-prefix < 0 - - monad-metrics ^>= 0.2.2.1 - - prairie < 0 - - ekg-cloudwatch < 0 # 0.0.1.6 fails to compile we amazonka 2.0 - - smtp-mail < 0 - - liboath-hs ^>= 0.0.1.2 - - servant-quickcheck < 0 - - esqueleto ^>= 3.5.11.0 - - hedgehog-fakedata < 0 - - persistent-discover ^>= 0.1.0.7 - - persistent-documentation < 0 # 0.1.0.4 https://github.com/lumihq/persistent-documentation/issues/11 - - persistent-typed-db ^>= 0.1.0.7 - - persistent-qq ^>= 2.12.0.6 - - persistent-pagination ^>= 0.1.1.2 - - hspec-hedgehog ^>= 0.1.1.0 - - exception-via ^>= 0.2.0.0 - - record-wrangler < 0 - - lift-type ^>= 0.1.1.1 - - some-dict-of ^>= 0.1.0.2 - - discover-instances ^>= 0.1.0.0 - - "Matthew Pickering @mpickering": - - refact ^>= 0.3.0.2 - - "Andrew Gibiansky @gibiansky": - - ipython-kernel ^>= 0.11.0.0 - - "James Cook @mokus0": - - dependent-map ^>= 0.4.0.0 - - dependent-sum ^>= 0.7.2.0 - - dependent-sum-template ^>= 0.1.1.1 - - dice ^>= 0.1.1 - - hstatsd < 0 - - misfortune ^>= 0.1.2.1 - - "Timo von Holtz @tvh": - - ekg-wai < 0 - - haxl-amazonka < 0 - - hasql-migration ^>= 0.3.0 - - servant-JuicyPixels ^>= 0.3.1.1 - - "Steven Fontanella @stevenfontanella": - - microlens ^>= 0.4.13.1 - - microlens-platform ^>= 0.4.3.4 - - microlens-mtl ^>= 0.2.0.3 - - microlens-th ^>= 0.4.3.14 - - microlens-ghc ^>= 0.4.14.2 - - microlens-contra ^>= 0.1.0.3 - - "Takano Akio tak@anoak.io @takano-akio": - - fast-builder < 0 - - filelock ^>= 0.1.1.7 - - "Brian Lewis brian@lorf.org @bsl": - - bindings-GLFW ^>= 3.3.2.0 - - GLFW-b ^>= 3.3.0.0 - - "Niklas HambĂŒchen mail@nh2.me @nh2": - - conduit-concurrent-map ^>= 0.1.3 - - hidapi ^>= 0.1.8 - - iso8601-time ^>= 0.1.5 - - loop ^>= 0.3.0 - - lz4-frame-conduit ^>= 0.1.0.1 - - netpbm ^>= 1.0.4 - - network-house < 0 # 0.1.0.2 compile failure MonadFail - - reinterpret-cast ^>= 0.1.0 - - shared-memory ^>= 0.2.0.1 - - posix-paths ^>= 0.3.0.0 - # As dependencies of packages above - - attoparsec-binary ^>= 0.2 - - "Michael Walker @barrucadu": - - both < 0 - - concurrency ^>= 1.11.0.3 - - dejafu ^>= 2.4.0.5 - - hunit-dejafu ^>= 2.0.0.6 - - tasty-dejafu ^>= 2.1.0.1 - - irc-ctcp ^>= 0.1.3.1 - - irc-conduit < 0 - - irc-client < 0 - - "Rudy Matela @rudymatela": - - leancheck ^>= 1.0.0 - - leancheck-instances ^>= 0.0.5 - - fitspec ^>= 0.4.10 - - express ^>= 1.0.12 - - speculate ^>= 0.4.14 - - extrapolate ^>= 0.4.6 - - code-conjure ^>= 0.5.6 - - percent-format ^>= 0.0.4 - - tasty-leancheck ^>= 0.0.2 - - hspec-leancheck ^>= 0.0.6 - - test-framework-leancheck ^>= 0.0.4 - - "Trevor Elliott @elliottt": - - irc ^>= 0.6.1.1 - - "Dennis Gosnell @cdepillabout": - - envelope ^>= 0.2.2.0 - - from-sum ^>= 0.2.3.0 - - natural-transformation ^>= 0.4 - - password ^>= 3.0.2.1 - - password-instances ^>= 3.0.0.0 - - password-types ^>= 1.0.0.0 - - pretty-simple ^>= 4.1.2.0 - - print-console-colors ^>= 0.1.0.0 - - read-env-var ^>= 1.0.0.0 - - servant-checked-exceptions ^>= 2.2.0.1 - - servant-checked-exceptions-core ^>= 2.2.0.1 - - servant-rawm ^>= 1.0.0.0 - - servant-static-th ^>= 1.0.0.0 - - termonad ^>= 4.5.0.0 - - world-peace ^>= 1.0.2.0 - - xml-html-qq ^>= 0.1.0.1 - - xml-indexed-cursor ^>= 0.1.1.0 - - "Franklin Chen @FranklinChen": - - Ebnf2ps ^>= 1.0.15 - - "Tobias Bexelius @tobbebex": - - GPipe < 0 - - "Jonas Carpay @jonascarpay": - - apecs ^>= 0.9.5 - - apecs-gloss ^>= 0.2.4 - - apecs-physics ^>= 0.4.6 - - aeson-commit < 0 - - calligraphy ^>= 0.1.6 - - js-chart ^>= 2.9.4.1 - - safe-gen ^>= 1.0.1 - - tasty-focus ^>= 1.0.1 - - "Spencer Janssen @spencerjanssen": - - Xauth ^>= 0.1 - - "Sebastian de Bellefon @Helkafen": - - wai-middleware-metrics ^>= 0.2.4 - - "Gregory Collins @gregorycollins": - - hashtables ^>= 1.3.1 - - io-streams ^>= 1.5.2.2 - - openssl-streams ^>= 1.2.3.0 - - "Andrew Cowie @istathar": - - chronologique ^>= 0.3.1.3 - - http-common ^>= 0.8.3.4 - - http-streams ^>= 0.8.9.9 - - locators ^>= 0.3.0.3 - - core-data ^>= 0.3.9.1 - - core-program ^>= 0.7.0.0 - - core-telemetry ^>= 0.2.9.4 - - core-text ^>= 0.3.8.1 - - "Sean Hunt @ivan-m": - - fgl ^>= 5.8.2.0 - - wl-pprint-text ^>= 1.2.0.2 - - servant-pandoc < 0 - - "Sharif Olorin @olorin": - - quickcheck-text ^>= 0.1.2.1 - - nagios-check ^>= 0.3.2 - - "Peter Simons @peti": - - cabal2spec ^>= 2.7.0 - - cgi ^>= 3001.5.0.1 - - distribution-nixpkgs ^>= 1.7.0.1 - - distribution-opensuse ^>= 1.1.4 - - flexible-defaults ^>= 0.0.3 - - funcmp ^>= 1.9 - - hackage-db ^>= 2.1.3 - - hledger-interest ^>= 1.6.6 - - hopenssl ^>= 2.2.5 - - hsdns ^>= 1.8 - - hsemail ^>= 2.2.1 - - hsyslog ^>= 5.0.2 - - jailbreak-cabal ^>= 1.4 - - lambdabot-core ^>= 5.3.1.2 - - lambdabot-irc-plugins ^>= 5.3.1.2 - - language-nix ^>= 2.2.0 - - logging-facade-syslog ^>= 1 - - MonadPrompt ^>= 1.0.0.5 - - nix-paths ^>= 1.0.1 - - parsec-class ^>= 1.0.0.0 - - prim-uniq ^>= 0.2 - - random-fu ^>= 0.3.0.1 - - random-source < 0 - - rvar ^>= 0.3.0.2 - - SafeSemaphore ^>= 0.10.1 - - streamproc < 0 - - stringsearch ^>= 0.3.6.6 # for cgi - - titlecase ^>= 1.0.1 - - "Mark Fine @markfine": - - postgresql-schema ^>= 0.1.14 - - sbp ^>= 5.0.4 - - "Jinjing Wang @nfjinjing": - - moesocks < 0 - - "Gregory W. Schwartz @GregorySchwartz": - - diversity ^>= 0.8.1.0 - - fasta ^>= 0.10.4.2 - - modify-fasta < 0 - - tree-fun ^>= 0.8.1.0 - - random-tree ^>= 0.6.0.5 - - clumpiness ^>= 0.17.0.2 - - "Simon Marechal @bartavelle": - - compactmap ^>= 0.1.4.3 - - stateWriter ^>= 0.4.0 - - filecache < 0 - - pcre-utils ^>= 0.1.9 - - strict-base-types ^>= 0.8 - - withdependencies ^>= 0.3.0 - - hruby ^>= 0.5.1.0 - - language-puppet < 0 - - tar-conduit ^>= 0.4.0 - - "Mark Karpov @mrkkrp": - - JuicyPixels-extra ^>= 0.6.0 - - cue-sheet ^>= 2.0.2 - - flac ^>= 0.2.1 - - flac-picture ^>= 0.1.2 - - forma ^>= 1.2.0 - - ghc-syntax-highlighter ^>= 0.0.10.0 && <0.0.11.0 # https://github.com/commercialhaskell/stackage/issues/7154 - - hspec-megaparsec ^>= 2.2.1 - - htaglib ^>= 1.2.1 - - html-entity-map ^>= 0.1.0.0 - - identicon ^>= 0.2.2 - - lame ^>= 0.2.2 - - megaparsec ^>= 9.5.0 - - megaparsec-tests ^>= 9.5.0 - - mmark ^>= 0.0.7.6 - - mmark-cli ^>= 0.0.5.1 - - mmark-ext ^>= 0.2.1.5 - - modern-uri ^>= 0.3.6.1 - - ormolu ^>= 0.7.2.0 - - pagination ^>= 0.2.2 - - parser-combinators ^>= 1.3.0 - - parser-combinators-tests ^>= 1.3.0 - - path ^>= 0.9.5 - - path-io ^>= 1.8.1 - - req ^>= 3.13.1 - - req-conduit ^>= 1.0.1 - - stache ^>= 2.3.4 - - tagged-identity ^>= 0.1.4 - - text-metrics ^>= 0.3.2 - - wave ^>= 0.2.1 - - zip ^>= 2.0.0 - - "Emmanuel Touzery @emmanueltouzery": - - app-settings < 0 - - hsexif ^>= 0.6.1.10 - - slack-web < 0 - - "Nickolay Kudasov @fizruk": - - http-api-data ^>= 0.5.1 - - swagger2 ^>= 2.8.7 - - telegram-bot-simple < 0 - - rzk ^>= 0.7.1 - - "Jared Tobin @jtobin": - - mwc-probability ^>= 2.3.1 - - mcmc-types ^>= 1.0.3 - - mighty-metropolis ^>= 2.0.0 - - speedy-slice ^>= 0.3.2 - - hasty-hamiltonian ^>= 1.3.4 - - declarative ^>= 0.5.4 - - sampling ^>= 0.3.5 - - flat-mcmc < 0 - - urbit-hob < 0 - - hnock < 0 - - "Facundo DomĂ­nguez @facundominguez": - - inline-c ^>= 0.9.1.10 - - jvm-batching < 0 - - pthread ^>= 0.2.1 - - "Dave Tapley @dukedave": - - inline-c-cpp ^>= 0.5.0.2 - - "Takahiro Himura @himura": - - lens-regex ^>= 0.1.3 - - twitter-conduit ^>= 0.6.1 - - twitter-types ^>= 0.11.0 - - twitter-types-lens ^>= 0.11.0 - - "Robbin C. @robbinch": - - zim-parser ^>= 0.2.1.0 - - "David Wiltshire @dave77": - # on behalf of Alexey Karakulov @w3rs - - hashable-time < 0 - - "Yuras Shumovich @Yuras": - - pdf-toolbox-content ^>= 0.1.1 - - pdf-toolbox-core ^>= 0.1.1 - - pdf-toolbox-document ^>= 0.1.2 - - io-region ^>= 0.1.1 - - scanner ^>= 0.3.1 - - "Stanislav Chernichkin @schernichkin": - - partial-isomorphisms ^>= 0.2.3.0 - - "Christoph Breitkopf @bokesan": - - IntervalMap ^>= 0.6.2.1 - - "Michele Lacchia @rubik": - - pathwalk ^>= 0.3.1.2 - - "John Galt @centromere": - - cacophony ^>= 0.10.1 - - blake2 ^>= 0.3.0.1 - - nfc ^>= 0.1.1 - - - "Michael Schröder @mcschroeder": - - ctrie ^>= 0.2 - - ttrie ^>= 0.1.2.2 - - "Stefan Kersten @kaoskorobase": - - hsndfile ^>= 0.8.0 - - hsndfile-vector ^>= 0.5.2 - - "yihuang @yihuang": - - tagstream-conduit ^>= 0.5.6 - - "Johannes Hilden @laserpants": - - hashids ^>= 1.1.0.1 - - fuzzyset ^>= 0.3.1 - - sqids ^>= 0.2.0.0 - - "Will Sewell @willsewell": - - benchpress ^>= 0.2.2.23 - - pusher-http-haskell ^>= 2.1.0.17 - - "Yorick Laupa yo.eight@gmail.com @YoEight": - - eventstore < 0 # 1.4.3 https://github.com/commercialhaskell/stackage/issues/7075 - - dotnet-timespan ^>= 0.0.1.0 - - eventsource-api < 0 - - eventsource-geteventstore-store < 0 - - eventsource-store-specs < 0 - - eventsource-stub-store < 0 - - "Sebastian Dröge slomo@coaxion.net @sdroege": - - conduit-iconv < 0 # 0.1.1.3 compile fail MonadFail - - conduit-connection < 0 - - "Andrew Rademacher @AndrewRademacher": - - aeson-casing ^>= 0.2.0.0 - - graylog < 0 # 0.1.0.1 compile fail Couldn't find module Network.BSD - - parsec-numeric ^>= 0.1.0.0 - - mallard < 0 - - gdax < 0 - - "Callum Rogers @CRogers": - - should-not-typecheck ^>= 2.1.0 - - "Mihaly Barasz klao@nilcons.com @klao": - - lens-datetime < 0 - - tz ^>= 0.1.3.6 - - tzdata ^>= 0.2.20230322.0 - - "Timothy Klim @TimothyKlim": - - pkcs10 < 0 - - "David Luposchainsky @quchen": - - pgp-wordlist < 0 # 0.1.0.3 # fails to compile (#7017) https://github.com/quchen/pgp-wordlist/pull/4 - - show-prettyprint < 0 - - "Jeremy Shaw @stepcut": - - boomerang ^>= 1.4.9 - - happstack-hsp < 0 - - happstack-jmacro ^>= 7.0.12.5 - - happstack-server ^>= 7.8.0.2 && <7.9 # https://github.com/commercialhaskell/stackage/issues/7207 - - happstack-server-tls ^>= 7.2.1.3 - - hsx-jmacro < 0 - - ixset < 0 - - reform < 0 - - reform-blaze < 0 - - reform-hamlet < 0 - - reform-happstack < 0 - - reform-hsp < 0 - - userid < 0 - - web-plugins < 0 - - web-routes < 0 # 0.27.15 # fails to compile (#7017) - - web-routes-boomerang < 0 - - web-routes-happstack < 0 - - web-routes-hsp < 0 - - web-routes-th < 0 - - web-routes-wai < 0 - - hsx2hs < 0 - - "Pedro Tacla Yamada @yamadapc": - - ascii-progress ^>= 0.3.3.0 - - drawille ^>= 0.1.3.0 - - file-modules ^>= 0.1.2.4 - - frontmatter ^>= 0.1.0.2 - - read-editor ^>= 0.1.0.2 - - list-prompt < 0 # 0.1.1.0 compile fail https://github.com/yamadapc/list-prompt/issues/3 - - package-description-remote < 0 # 0.2.0.0 compile fail - - projectroot ^>= 0.2.0.1 - - questioner < 0 - - language-dockerfile < 0 # 0.3.6.0 compile fail https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 - - "Pascal Hartig @passy": - - giphy-api < 0 - - optparse-text ^>= 0.1.1.0 - - "rightfold @rightfold": - - open-browser ^>= 0.2.1.0 - - "Denis Redozubov @dredozubov": - - hreader-lens ^>= 0.1.3.0 - - schematic < 0 - - "Yuji Yamamoto @igrep": - - yes-precure5-command ^>= 5.5.3 - - th-strict-compat ^>= 0.1.0.1 - - main-tester ^>= 0.2.0.1 - - skews ^>= 0.1.0.3 - - wss-client ^>= 0.3.0.0 - - network-messagepack-rpc ^>= 0.1.2.0 - - network-messagepack-rpc-websocket ^>= 0.1.1.1 - - unicode-show ^>= 0.1.1.1 - - deriveJsonNoPrefix ^>= 0.1.0.1 - - fakefs ^>= 0.3.0.2 - - fakepull ^>= 0.3.0.2 - - "Hans-Christian Esperer @hce": - - avwx < 0 - - saltine ^>= 0.2.1.0 - - wai-session-postgresql ^>= 0.2.1.3 - - "Haisheng Wu @freizl": - - hoauth2 ^>= 2.10.0 - - "Falko Peters @informatikr": - - scrypt ^>= 0.5.0 - - "Jakub Waszczuk @kawu": - - dawg-ord < 0 - - "Amit Levy @alevy": - - simple ^>= 2.0.0 - - simple-templates ^>= 2.0.0 - - simple-session ^>= 2.0.0 - - postgresql-orm < 0 - - "Sergey Astanin @astanin": - # Stackage server uses Ubuntu 20.04 which ships libzip-?. - # Haskell packages should match major.minor versions of the C library. - - bindings-libzip ^>= 1.0.1 - - LibZip < 0 # 1.0.1 undefined reference to 'zip_archive_set_tempdir' - - "Anthony Cowley @acowley": - - vinyl ^>= 0.14.3 - - Frames ^>= 0.7.4.2 - - hpp ^>= 0.6.5 - - "Takayuki Muranushi @nushio3": - - binary-search ^>= 2.0.0 - - "Jason Shipman @jship": - - context ^>= 0.2.0.3 - - context-http-client ^>= 0.2.0.2 - - context-resource ^>= 0.2.0.2 - - context-wai-middleware ^>= 0.2.0.2 - - monad-logger-aeson ^>= 0.4.1.2 - - overhang ^>= 1.0.0 - - tao ^>= 1.0.0 - - tao-example ^>= 1.0.0 - - "Suhail Shergill @suhailshergill": - - extensible-effects ^>= 5.0.0.1 - - "Justus Adam @JustusAdam": - - marvin < 0 - - marvin-interpolate < 0 - - mustache ^>= 2.4.2 - - exit-codes ^>= 1.0.0 - - "Cindy Wang @CindyLinz": - - NoTrace < 0 - - linked-list-with-iterator < 0 - - "Jean-Philippe Bernardy @jyp": - - polynomials-bernstein ^>= 1.1.2 - - typography-geometry ^>= 1.0.1.0 - - "John MacFarlane @jgm": - - hsb2hs < 0 - - cmark ^>= 0.6.1 - - texmath ^>= 0.12.8.6 - - highlighting-kate < 0 # 0.6.4 compile fail ghc-9.6 - - skylighting ^>= 0.14.1 - - skylighting-core ^>= 0.14.1 - - pandoc-types ^>= 1.23.1 - - zip-archive ^>= 0.4.3 - - doclayout ^>= 0.4.0.1 - - doctemplates ^>= 0.11 - - emojis ^>= 0.1.3 - - pandoc ^>= 3.1.11 - - pandoc-cli ^>= 3.1.11 - - pandoc-server ^>= 0.1.0.4 - - citeproc ^>= 0.8.1 - - commonmark ^>= 0.2.4.1 - - commonmark-extensions ^>= 0.2.5.1 - - commonmark-pandoc ^>= 0.2.2 - - unicode-collation ^>= 0.1.3.5 - - ipynb ^>= 0.2 - - skylighting-format-ansi ^>= 0.1 - - skylighting-format-blaze-html ^>= 0.1.1.1 - - skylighting-format-context ^>= 0.1.0.2 - - skylighting-format-latex ^>= 0.1 - - typst ^>= 0.5 - - typst-symbols ^>= 0.1.5 - - "Karun Ramakrishnan @karun012": - - doctest-discover ^>= 0.2.0.0 - - "Elie Genard @elaye": - - turtle-options < 0 - - "Ozgun Ataman ozgun.ataman@soostone.com @ozataman": - - string-conv ^>= 0.2.0 - - rng-utils ^>= 0.3.1 - - ua-parser ^>= 0.7.7.0 - - hs-GeoIP ^>= 0.3 - - retry ^>= 0.9.3.1 - - katip ^>= 0.8.8.0 - - katip-elasticsearch < 0 # 0.7.0.0 compile fail https://github.com/commercialhaskell/stackage/issues/6341 - - "Sid Kapur sidharthkapur1@gmail.com @sid-kap": - - tuple ^>= 0.3.0.2 - - OneTuple ^>= 0.4.1.1 - - "Aaron Levin @aaronmblevin": - - free-vl ^>= 0.1.4 - - "Kazuo Koga @kkazuo": - - xlsx-tabular < 0 # 0.2.2.1 https://github.com/kkazuo/xlsx-tabular/issues/9 - - "Mikhail Glushenkov @23Skidoo": - # - Cabal # take the one that ships with GHC - - cabal-install ^>= 3.10.2.1 - - pointful < 0 - - "Lennart Kolmodin @kolmodin": - - binary-bits < 0 - - "Alex McLean @yaxu": - - tidal ^>= 1.9.4 - - tidal-link ^>= 1.0.2 - - hosc ^>= 0.20 - - "Kei Hibino @khibino": - - th-data-compat ^>= 0.1.3.0 - - th-reify-compat ^>= 0.0.1.5 - - th-bang-compat ^>= 0.0.1.0 - - th-constraint-compat ^>= 0.0.1.0 - - product-isomorphic ^>= 0.0.3.4 - - persistable-record ^>= 0.6.0.6 - - relational-query ^>= 0.12.3.1 - - relational-query-HDBC ^>= 0.7.2.1 - - persistable-types-HDBC-pg ^>= 0.0.3.5 - - relational-record ^>= 0.2.2.0 - - text-ldap ^>= 0.1.1.14 - - debian-build ^>= 0.10.2.1 - - aeson-generic-compat ^>= 0.0.2.0 - - json-rpc-generic < 0 - - protocol-radius ^>= 0.0.1.1 - - protocol-radius-test ^>= 0.1.0.1 - - "wren romano @wrengr": - - bytestring-lexing ^>= 0.5.0.11 - - bytestring-trie ^>= 0.2.7.2 - - data-or ^>= 1.0.0.7 - - exact-combinatorics ^>= 0.2.0.11 - - logfloat ^>= 0.14.0 - - pointless-fun ^>= 1.1.0.8 - - prelude-safeenum ^>= 0.1.1.3 - - stm-chans ^>= 3.0.0.9 - - unification-fd < 0 - - unix-bytestring ^>= 0.4.0 - - "Fraser Tweedale @frasertweedale": - - concise ^>= 0.1.0.1 - - dyre ^>= 0.9.2 - - jose ^>= 0.11 - - "Yoshikuni Jujo @YoshikuniJujo": - - zot ^>= 0.0.3 - - yjtools ^>= 0.9.18 - - io-machine ^>= 0.2.0.0 - - yjsvg ^>= 0.2.0.1 - - x11-xim ^>= 0.0.9.0 - - X11-xft ^>= 0.3.4 - - Imlib ^>= 0.1.2 - - xturtle < 0 - - gluturtle < 0 - - papillon < 0 - - zasni-gerna < 0 - - exception-hierarchy ^>= 0.1.0.10 - - simplest-sqlite < 0 - - warp-tls-uid < 0 # 0.2.0.6 https://github.com/YoshikuniJujo/warp-tls-uid/issues/1 - - nowdoc ^>= 0.1.1.0 - - typecheck-plugin-nat-simple ^>= 0.1.0.9 - - ranged-list ^>= 0.1.2.1 - - c-enum ^>= 0.1.1.3 - - c-struct ^>= 0.1.3.0 - - union-angle ^>= 0.1.0.1 - - moffy ^>= 0.1.1.0 - - freer-par-monad ^>= 0.1.0.0 - - type-set ^>= 0.1.0.0 - - type-flip ^>= 0.1.0.0 - - extra-data-yj ^>= 0.1.0.0 - - moffy-samples-events ^>= 0.2.2.4 - - moffy-samples ^>= 0.1.0.2 - - moffy-samples-gtk4-run < 0 # 0.1.0.0 requires newer glib https://github.com/YoshikuniJujo/moffy-samples-gtk4-run/issues/1 - - moffy-samples-gtk4 < 0 - - simple-cairo ^>= 0.1.0.6 - - simple-pango ^>= 0.1.0.1 - - cairo-image ^>= 0.1.0.2 - - union-color ^>= 0.1.2.1 - - glib-stopgap ^>= 0.1.0.0 - - "Jan Gerlinger @JanGe": - - irc-dcc < 0 - - "Alexey Raga @AlexeyRaga": - - hw-kafka-client ^>= 5.3.0 - - "John Ky newhoggy@gmail.com @newhoggy": - - aeson-lens < 0 - - antiope-core < 0 # 7.5.3 fails to compile we amazonka 2.0 - - antiope-dynamodb < 0 - - antiope-messages < 0 # 7.5.3 https://github.com/arbor/antiope/issues/112 - - antiope-s3 < 0 - - antiope-sns < 0 # 7.5.3 fails to compile we amazonka 2.0 - - antiope-sqs < 0 # 7.5.3 fails to compile we amazonka 2.0 - - arbor-lru-cache ^>= 0.1.1.1 - - arbor-postgres < 0 - - asif < 0 # 6.0.4 compile fail - https://github.com/arbor/asif/issues/48 - - avro ^>= 0.6.1.2 - - bits-extra < 0 - - hw-balancedparens < 0 - - hw-bits ^>= 0.7.2.2 - - hw-conduit ^>= 0.2.1.1 - - hw-conduit-merges ^>= 0.2.1.0 - - hw-diagnostics ^>= 0.0.1.0 - - hw-dsv < 0 # 0.4.1.1 compile fail - - hw-eliasfano < 0 - - hw-excess < 0 - - hw-fingertree ^>= 0.1.2.1 - - hw-fingertree-strict ^>= 0.1.2.1 - - hw-hedgehog < 0 - - hw-hspec-hedgehog ^>= 0.1.1.1 - - hw-int ^>= 0.0.2.0 - - hw-ip < 0 - - hw-json < 0 - - hw-json-simple-cursor < 0 - - hw-json-standard-cursor < 0 - - hw-mquery < 0 - - hw-packed-vector < 0 - - hw-parser ^>= 0.1.1.0 - - hw-prim ^>= 0.6.3.2 - - hw-rankselect < 0 - - hw-rankselect-base < 0 - - hw-simd < 0 - - hw-streams < 0 # 0.0.1.0 compile fail https://github.com/haskell-works/hw-streams/issues/81 - - hw-succinct < 0 - - hw-xml < 0 - - oops ^>= 0.2.0.1 - - tasty-discover ^>= 5.0.0 - - "George Wilson @gwils": - - hedgehog-fn ^>= 1.0 - - sv < 0 - - sv-cassava < 0 - - sv-core < 0 - - tasty-hedgehog ^>= 1.4.0.2 - - "Ismail Mustafa @ismailmustafa": - - handwriting ^>= 0.1.0.3 - - "Stephen Diehl @sdiehl": - - llvm-hs-pretty < 0 - - protolude ^>= 0.3.3 - - repline ^>= 0.4.2.0 - - picosat < 0 - - aos-signature ^>= 0.1.1 - - bulletproofs < 0 - - pedersen-commitment ^>= 0.2.0 - - merkle-tree ^>= 0.1.1 - - oblivious-transfer ^>= 0.1.0 - - pairing < 0 - - libraft < 0 - - galois-field < 0 - - "Daishi Nakajima @nakaji-dayo": - - api-field-json-th ^>= 0.1.0.2 - - "Patrick Thomson @helium": - - postgresql-transactional < 0 - - "Tom Murphy ": - - gingersnap < 0 # 0.3.1.0 compile fail aeson 2 - - microspec ^>= 0.2.1.3 - - midair ^>= 0.2.0.1 - - nano-erl ^>= 0.1.0.1 - - rando ^>= 0.0.0.4 - - vivid < 0 # 0.5.2.0 # fails to compile (#7017) - - vivid-osc ^>= 0.5.0.0 - - vivid-supercollider ^>= 0.4.1.2 - - "Toshio Ito @debug-ito": - - fold-debounce ^>= 0.2.0.11 - - fold-debounce-conduit < 0 - - stopwatch < 0 - - wikicfp-scraper < 0 - - wild-bind < 0 - - wild-bind-x11 < 0 - - greskell < 0 - - greskell-core < 0 - - greskell-websocket < 0 - - hspec-need-env < 0 - - "Cies Breijs @cies": - - htoml < 0 - - "Martijn Rijkeboer @mrijkeboer": - - protobuf-simple ^>= 0.1.1.1 - - "David Reaver @jdreaver": - - eventful-core < 0 - - eventful-dynamodb < 0 - - eventful-memory < 0 - - eventful-postgresql < 0 - - eventful-sql-common < 0 - - eventful-sqlite < 0 - - eventful-test-helpers < 0 - - stratosphere ^>= 0.60.0 - - sum-type-boilerplate < 0 - - "Iñaki GarcĂ­a Etxebarria @garetxe": - - haskell-gi ^>= 0.26.7 - - haskell-gi-base ^>= 0.26.4 - - gi-atk ^>= 2.0.27 - - gi-cairo ^>= 1.0.29 - - gi-dbusmenu ^>= 0.4.13 - - gi-dbusmenugtk3 ^>= 0.4.14 - - gi-gdk ^>= 3.0.28 && >=3 && <4 # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gdkpixbuf ^>= 2.0.31 - - gi-gdkx11 ^>= 3.0.15 && >=3 && <4 # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gio ^>= 2.0.32 - - gi-glib ^>= 2.0.29 - - gi-gobject ^>= 2.0.30 - - gi-graphene ^>= 1.0.7 - - gi-gsk < 0 - - gi-gtk ^>= 3.0.41 && >=3 && <4 # https://github.com/commercialhaskell/stackage/issues/6317 - - gi-gtk-hs ^>= 0.3.16 - - gi-gmodule ^>= 2.0.5 - - gi-pango ^>= 1.0.29 - - gi-xlib ^>= 2.0.13 - - gi-harfbuzz ^>= 0.0.9 - - gi-gtksource ^>= 3.0.28 && <5.0.0 # https://github.com/commercialhaskell/stackage/issues/7013 - - gi-javascriptcore ^>= 4.0.27 && <6.0.3 # https://github.com/commercialhaskell/stackage/issues/6929 - - gi-vte ^>= 2.91.31 - - gi-webkit2 ^>= 4.0.30 - - gi-freetype2 ^>= 2.0.4 - - gi-soup ^>= 2.4.28 && <3.0.2 # https://github.com/commercialhaskell/stackage/issues/6929 - - "Brandon Simmons @jberryman": - - directory-tree ^>= 0.12.1 - - "Drew Hess @dhess": - - hpio < 0 - - "Richard Eisenberg @goldfirere": - - th-desugar ^>= 1.15 - - singletons ^>= 3.0.2 - - HUnit-approx ^>= 1.1.1.1 - - units-parser ^>= 0.1.1.5 - - "Doug McClean @dmcclean": - - dimensional ^>= 1.5 - - exact-pi ^>= 0.5.0.2 - - numtype-dk ^>= 0.5.0.3 - - "Bjorn Buckwalter @bjornbm": - - leapseconds-announced ^>= 2017.1.0.1 - - "Pavel Ryzhov @paulrzcz": - - hquantlib < 0 - - hquantlib-time < 0 - - HSvm ^>= 0.1.1.3.25 - - "Henri Verroken @hverr": - - bordacount ^>= 0.1.0.0 - - cache ^>= 0.1.3.0 - - haskey < 0 - - haskey-btree < 0 - - haskey-mtl < 0 - - intset-imperative ^>= 0.1.0.0 - - lxd-client < 0 - - lxd-client-config < 0 - - xxhash-ffi ^>= 0.2.0.0 - - zeromq4-patterns ^>= 0.3.1.0 - - "Cliff Harvey @BlackBrane": - - ansigraph < 0 - - microsoft-translator < 0 - - "Tebello Thejane @tebello-thejane": - - bitx-bitcoin < 0 # 0.12.0.0 compile fail - - "Andrew Lelechenko @Bodigrim": - - exp-pairs ^>= 0.2.1.0 - - fast-digits ^>= 0.3.2.0 - - chimera ^>= 0.3.4.0 - - quadratic-irrational ^>= 0.1.1 - - primitive-addr ^>= 0.1.0.2 - - quickcheck-classes ^>= 0.6.5.0 - - quickcheck-classes-base ^>= 0.6.2.0 - - arithmoi ^>= 0.13.0.0 - - bitvec ^>= 1.1.5.0 - - poly ^>= 0.5.1.0 - - extended-reals ^>= 0.2.4.0 - - ChasingBottoms ^>= 1.3.1.12 - - data-interval ^>= 2.1.1 - - vector-rotcev ^>= 0.1.0.2 - - mod ^>= 0.2.0.1 - - tasty-rerun ^>= 1.1.19 - - integer-roots ^>= 1.0.2.0 - - smallcheck ^>= 1.2.1.1 - - quote-quot ^>= 0.2.1.0 - - tasty-bench ^>= 0.3.5 - - tasty-inspection-testing ^>= 0.2 - - text-rope ^>= 0.2 - - data-array-byte ^>= 0.1.0.1 - - text-builder-linear ^>= 0.1.2 - - hie-bios ^>= 0.13.1 - - infinite-list ^>= 0.1 - - regression-simple ^>= 0.2.1 - - tasty-bench-fit ^>= 0.1 - - alex-tools ^>= 0.6.1 - - language-lua ^>= 0.11.0.1 - - snap-server ^>= 1.1.2.1 - - "Ashley Yakeley @AshleyYakeley": - - countable ^>= 1.2 - - witness ^>= 0.6.2 - - open-witness ^>= 0.6 - - type-rig ^>= 0.1 - - monadology ^>= 0.3 - - primitive-serial ^>= 0.1 - - "Victor Denisov @VictorDenisov": - - mongoDB ^>= 2.7.1.2 - - bson ^>= 0.4.0.1 - - "Alexis King @lexi-lambda": - - freer-simple < 0 - - monad-mock < 0 - - test-fixture < 0 - - text-conversions ^>= 0.3.1.1 - - th-to-exp < 0 - - type-assertions < 0 - - "Patrick Chilton @chpatrick": - - webrtc-vad ^>= 0.1.0.3 - - clang-pure < 0 # 0.2.0.6 missing system libraries #3810/closed - - codec < 0 - - "Michal Konecny @michalkonecny": - - hmpfr ^>= 0.4.5 - - collect-errors ^>= 0.1.5.0 - - mixed-types-num ^>= 0.5.12 - - cdar-mBound ^>= 0.1.0.4 - - aern2-mp ^>= 0.2.15.1 - - aern2-real ^>= 0.2.15 - - "Bartosz Nitka @niteria": - - oeis < 0 - - "Gergely Patai @cobbpg": - - elerea ^>= 2.9.0 - - "Christopher Wells @ExcalburZero": - - pixelated-avatar-generator < 0 - - "Dominic Orchard @dorchard": - - array-memoize ^>= 0.6.0 - - codo-notation < 0 # 0.5.2 compile fail MonadFail - - fortran-src < 0 - - "Cheng Shao @TerrorJack": - - binaryen ^>= 0.0.6.0 - - cabal-toolkit < 0 - - direct-rocksdb < 0 - - "Anton Gushcha @ncrashed": - - aeson-injector < 0 - - JuicyPixels-blp < 0 - - "Al Zohali @zohl": - - servant-auth-cookie < 0 - - dictionaries < 0 - - cereal-time < 0 - - "Joachim Fasting @joachifm": - - libmpd < 0 - - "Moritz Kiefer @cocreature": - - lrucaching < 0 - - llvm-hs < 0 - - llvm-hs-pure < 0 - - "Thierry Bourrillon @tbourrillon": - - heatshrink ^>= 0.1.0.0 - - hocilib < 0 - - "Daniel Mendler @minad": - - quickcheck-special ^>= 0.1.0.6 - - writer-cps-mtl < 0 - - writer-cps-transformers ^>= 0.5.6.1 - - writer-cps-morph < 0 # 0.1.0.2 compile fail https://github.com/louispan/writer-cps-morph/issues/2 - - writer-cps-lens < 0 - - writer-cps-full < 0 - - writer-cps-exceptions < 0 - - wl-pprint-annotated ^>= 0.1.0.1 - - wl-pprint-console < 0 - - console-style < 0 - - unlit ^>= 0.4.0.0 - - intro < 0 - - tasty-stats < 0 - - colorful-monoids ^>= 0.2.1.3 - - ihs ^>= 0.1.0.3 - - paripari < 0 - - persist < 0 - - "Taras Serduke @tserduke": - - do-list ^>= 1.0.1 - - "Travis Whitaker ": - - cpuinfo ^>= 0.1.0.2 - - lmdb ^>= 0.2.5 - - rdf < 0 - - data-compat < 0 - - deepseq-instances < 0 - - "Michael Swan @michael-swan": - - pcf-font ^>= 0.2.2.1 - - pcf-font-embed < 0 # 0.1.2.0 compile fail - - "Iago Abal ": - - bv ^>= 0.5 - - "Juan Pedro Villa Isaza @jpvillaisaza": - - licensor < 0 - - "Florian Hofmann fho@f12n.de @fhaust": - - vector-split ^>= 1.0.0.3 - - vector-mmap ^>= 0.0.3 - - "Ondrej Palkovsky @ondrap": - - json-stream ^>= 0.4.5.3 - - "Philipp Balzarek ": - - xml-picklers ^>= 0.3.6 - - "Lennart Spitzner @lspitzner": - - multistate ^>= 0.8.0.4 - - pqueue ^>= 1.5.0.0 - - butcher < 0 - - czipwith < 0 - - data-tree-print < 0 - - brittany < 0 - - "Ryan Mulligan @ryantm": - - HDBC-mysql < 0 - - "Tony Morris @tonymorris": - - validation ^>= 1.1.3 - - "Tony Day @tonyday567": - - chart-svg ^>= 0.5.2.0 - - markup-parse ^>= 0.1.1 - - numhask ^>= 0.11.1.0 - - numhask-array ^>= 0.11.0.1 - - numhask-space ^>= 0.11.1.0 - - perf ^>= 0.12.0.0 - - "Iphigenia Df @iphydf": - - data-msgpack ^>= 0.0.13 - - network-msgpack-rpc < 0 - - "Dino Morelli @dino-": - - epub-metadata ^>= 5.2 - - hsinstall ^>= 2.8 - - tce-conf ^>= 1.3 - - "Jonathan Fischoff @jfischoff": - - clock-extras < 0 - - postgres-options ^>= 0.2.1.0 - - tmp-postgres < 0 # 1.34.1.0 compile failure https://github.com/commercialhaskell/stackage/issues/7140 - - pg-transact ^>= 0.3.2.0 - - port-utils ^>= 0.2.1.0 - - postgresql-libpq-notify ^>= 0.2.0.0 - - hasql-queue < 0 - - "Jonathan Knowles @jonathanknowles": - - bech32 ^>= 1.1.4 - - bech32-th ^>= 1.1.1 - - cardano-coin-selection ^>= 1.0.1 - - quickcheck-groups ^>= 0.0.1.0 - - quickcheck-monoid-subclasses ^>= 0.3.0.0 - - quiet ^>= 0.2 - - roc-id ^>= 0.2.0.0 - - "Mahdi Dibaiee @mdibaiee": - - picedit < 0 - - mathexpr ^>= 0.3.1.0 - - termcolor < 0 - - "XT @xtendo-org": - - rawfilepath ^>= 1.1.0 - - "Konstantin Zudov @zudov": - - html-email-validate ^>= 0.2.0.0 - - "Carl Baatz @cbaatz": - - atom-basic ^>= 0.2.5 - - "Reuben D'Netto ": - - glob-posix ^>= 0.2.0.1 - - "Kadzuya Okamoto @arowM": - - type-level-kv-list ^>= 2.0.2.0 - - heterocephalus ^>= 1.0.5.7 - - bookkeeping < 0 - - ochintin-daicho < 0 - - transaction ^>= 0.1.1.4 - - tonaparser < 0 - - tonalude < 0 - - tonatona < 0 - - tonatona-logger < 0 - - tonatona-servant < 0 - - tonatona-persistent-sqlite < 0 - - tonatona-persistent-postgresql < 0 - - "Marcin Tolysz @tolysz": - - rawstring-qm ^>= 0.2.3.0 - - "Daniel YU ": - - salak < 0 - - salak-yaml < 0 - - salak-toml < 0 - - tensors ^>= 0.1.5 - - menshen < 0 - - crc32c ^>= 0.1.0 - - boots < 0 - - "Tom Nielsen @glutamate": - - plotlyhs ^>= 0.2.3 - - inliterate < 0 - - "Hyunje Jun @noraesae": - - line ^>= 4.0.1 - - "Hannes Saffrich @m0rphism": - - printcess < 0 - - "Alexey Kuleshevich @lehins": - - hip < 0 - - massiv ^>= 1.0.4.0 - - massiv-io ^>= 1.0.0.1 - - massiv-test ^>= 1.0.0.0 - - massiv-serialise ^>= 1.0.0.2 - - massiv-persist < 0 - - scheduler ^>= 2.0.0.1 - - Color ^>= 0.3.3 - - safe-decimal ^>= 0.2.1.0 - - flush-queue ^>= 1.0.0 - - pvar ^>= 1.0.0.0 - - conduit-aeson ^>= 0.1.0.1 - - vector-stream ^>= 0.1.0.0 - - FailT ^>= 0.1.2.0 - - "Hans-Peter Deifel @hpdeifel": - - hledger-iadd ^>= 1.3.19 - - "Roy Levien @orome": - - crypto-enigma < 0 # 0.1.1.6 compile fail https://github.com/orome/crypto-enigma-hs/issues/36 - - "BoldizsĂĄr NĂ©meth @nboldi": - - instance-control < 0 - - references < 0 # 0.3.3.1 compile fail - - classyplate < 0 - - haskell-tools-ast < 0 - - haskell-tools-backend-ghc < 0 - - haskell-tools-prettyprint < 0 - - haskell-tools-refactor < 0 - - haskell-tools-rewrite < 0 - - haskell-tools-demo < 0 - - haskell-tools-cli < 0 - - haskell-tools-daemon < 0 - - haskell-tools-debug < 0 - - "David Fisher @ddfisher": - - socket-activation < 0 - - "aiya000 @aiya000": - - character-cases ^>= 0.1.0.6 - - throwable-exceptions < 0 - - "Mitsutoshi Aoe @maoe": - - influxdb ^>= 1.9.3 - - sensu-run < 0 - - viewprof < 0 - - "Dylan Simon @dylex": - - postgresql-typed ^>= 0.6.2.5 - - invertible ^>= 0.2.0.8 - - ztail < 0 - - zip-stream ^>= 0.2.2.0 - - "Louis Pan @louispan": - - alternators ^>= 1.0.0.0 - - arrow-extras ^>= 0.1.0.1 - - data-diverse ^>= 4.7.1.0 - - data-diverse-lens < 0 # 4.3.0.0 compile fail (lens) - - ghcjs-base-stub < 0 - - glaze < 0 - - glazier < 0 # 1.0.0.0 compile fail (lens) - - glazier-react < 0 - - glazier-react-widget < 0 - - javascript-extras < 0 - - lens-misc ^>= 0.0.2.0 - - l10n < 0 - - pipes-category < 0 - - pipes-fluid ^>= 0.6.0.1 - - pipes-misc < 0 - - stm-extras ^>= 0.1.0.3 - - "SiniĆĄa Biđin @sbidin": [] - - "Aditya Manthramurthy @donatello": - - minio-hs < 0 - - webby < 0 - - "ncaq @ncaq": - - debug-trace-var ^>= 0.2.0 - - haskell-import-graph < 0 - - string-transform ^>= 1.1.1 - - uniq-deep ^>= 1.2.1 - - yesod-form-bootstrap4 ^>= 3.0.1.1 - - yesod-recaptcha2 ^>= 1.0.2.1 - - "Andrei Barbu @abarbu": - - nondeterminism ^>= 1.5 - - csp ^>= 1.4.0 - - matplotlib ^>= 0.7.7 - - "mackeyrms @mackeyrms": - - tsv2csv ^>= 0.1.0.2 - - "Thomas Sutton @thsutton": - - aeson-diff ^>= 1.1.0.13 - - edit-distance-vector ^>= 1.0.0.4 - - "Kyle Van Berendonck @donkeybonks": - - rot13 ^>= 0.2.0.1 - - dvorak ^>= 0.1.0.0 - - "Cuedo Business Solutions @cuedo": - - github-webhooks ^>= 0.17.0 - - "Pavel Yakovlev @zmactep": - - hasbolt < 0 - - uniprot-kb < 0 - - mmtf < 0 # 0.1.3.1 compile fail MonadFail - - "Christopher A. Gorski @cgorski": - - general-games ^>= 1.1.1 - - "Cristian AdriĂĄn Ontivero @contivero": - - hasmin < 0 - - hopfli ^>= 0.2.2.1 - - "Peter TrĆĄko @trskop": - - between ^>= 0.11.0.0 - - connection-pool < 0 # 0.2.2 compile fail https://github.com/trskop/connection-pool/issues/2 - - verbosity ^>= 0.4.0.0 - - "Devon Hollowood @devonhollowood": - - search-algorithms ^>= 0.3.2 - - "Chris Dornan @cdornan": - - sort ^>= 1.0.0.0 - - regex ^>= 1.1.0.2 - - regex-pcre-text < 0 - - regex-with-pcre ^>= 1.1.0.2 - - possibly ^>= 1.0.0.0 - - enum-text ^>= 0.5.3.0 - - rg ^>= 1.4.0.0 - - columnar ^>= 1.0.0.0 - - no-value ^>= 1.0.0.0 - - optparse-enum ^>= 1.0.0.0 - - fmt ^>= 0.6.3.0 - - "Elliot Cameron @3noch": - - ziptastic-client < 0 - - ziptastic-core < 0 - - "Hardy Jones @joneshf": - - katip-rollbar < 0 - - rollbar-hs < 0 - - servant-ruby < 0 - - wai-middleware-rollbar < 0 - - "Andrey Mokhov @snowleopard": - - algebraic-graphs ^>= 0.7 - - "Albert Krewinkel @tarleb": - - hslua ^>= 2.3.0 - - hslua-aeson ^>= 2.3.0.1 - - hslua-classes ^>= 2.3.0 - - hslua-cli ^>= 1.4.1 - - hslua-core ^>= 2.3.1 - - hslua-list ^>= 1.1.1 - - hslua-marshalling ^>= 2.3.0 - - hslua-module-doclayout ^>= 1.1.0 - - hslua-module-path ^>= 1.1.0 - - hslua-module-system ^>= 1.1.0.1 - - hslua-module-text ^>= 1.1.0.1 - - hslua-module-version ^>= 1.1.0 - - hslua-module-zip ^>= 1.1.0 - - hslua-objectorientation ^>= 2.3.0 - - hslua-packaging ^>= 2.3.0 - - hslua-repl ^>= 0.1.1 - - hslua-typing ^>= 0.1.0 - - jira-wiki-markup ^>= 1.5.1 - - lpeg ^>= 1.0.4 - - lua ^>= 2.3.1 - - lua-arbitrary ^>= 1.0.1.1 - - pandoc-lua-engine ^>= 0.2.1.2 - - pandoc-lua-marshal ^>= 0.2.2 - - tasty-hslua ^>= 1.1.0 - - tasty-lua ^>= 1.1.0 - - gridtables ^>= 0.1.0.0 - - "Judah Jacobson @judah": - - proto-lens-protobuf-types < 0 - - proto-lens-protoc < 0 - - proto-lens-runtime ^>= 0.7.0.4 - - proto-lens-setup < 0 - - proto-lens ^>= 0.7.1.3 - - proto-lens-arbitrary < 0 - - proto-lens-optparse < 0 - - tensorflow-test ^>= 0.1.0.0 - - pier-core < 0 - - pier < 0 - - ghc-source-gen < 0 # tests disabled due to QuickCheck < 2.14 - - "Christof Schramm ": - - mnist-idx ^>= 0.1.3.2 - - "Naushadh @naushadh": - - persistent-mysql-haskell - - "Moritz Schulte @mtesseract": - - async-refresh ^>= 0.3.0.0 - - async-refresh-tokens ^>= 0.4.0.0 - - type-level-integers ^>= 0.0.1 - - partial-order ^>= 0.2.0.0 - - async-timer < 0 - - nakadi-client < 0 - - throttle-io-stream < 0 - - conduit-throttle < 0 - - "Simon Hafner @reactormonk": - - uri-bytestring-aeson ^>= 0.1.0.8 - - katip-scalyr-scribe < 0 - - "Sebastian Witte @saep": - - nvim-hs ^>= 2.3.2.3 - - nvim-hs-contrib ^>= 2.0.0.2 - - nvim-hs-ghcid ^>= 2.0.1.0 - - "Sam Protas @SamProtas": - - triplesec < 0 - - composable-associations ^>= 0.1.0.0 - - composable-associations-aeson < 0 - - JuicyPixels-blurhash < 0 - - "Anton Ekblad @valderman": - - selda < 0 - - selda-sqlite < 0 - - selda-postgresql < 0 - - selda-json < 0 - - "Luis Pedro Coelho @luispedro": - - safeio ^>= 0.0.6.0 - - conduit-algorithms < 0 - - conduit-zstd ^>= 0.0.2.0 - - "Alex Biehl @alexbiehl": - - haddock-library ^>= 1.11.0 - - http-client-openssl ^>= 0.3.3 - - "Steven Vandevelde @icidasset": - - shikensu < 0 - - "George Pollard @Porges": - - email-validate ^>= 2.3.2.19 - - "Alexander Ignatyev @aligusnet": - - astro ^>= 0.4.3.0 - - mltool < 0 - - hmatrix-morpheus ^>= 0.1.1.2 - - "Matt Noonan @matt-noonan": - - justified-containers ^>= 0.3.0.0 - - roles ^>= 0.2.1.0 - - lawful ^>= 0.1.0.0 - - gdp ^>= 0.0.3.0 - - "Levent Erkok @LeventErkok": - - sbv ^>= 10.2 - - crackNum ^>= 3.4 - - "JĂĄnos Tapolczai @jtapolczai": - - listsafe ^>= 0.1.0.1 - - "Serokell @serokell": - - importify < 0 - - log-warper < 0 - - o-clock ^>= 1.4.0 - - tasty-hunit-compat ^>= 0.2.0.1 - - universum ^>= 1.8.2 - - with-utf8 ^>= 1.0.2.4 - - uncaught-exception ^>= 0.1.0 - - tztime ^>= 0.1.1.0 - - "Holmusk @arbus": - - elm-street ^>= 0.2.1.1 - - "Noel Kwan @kwannoel": - - servant-docs-simple < 0 - - "Lorenz Moesenlechner @moesenle": - - servant-websockets ^>= 2.0.0 - - "Daniel Campoverde @alx741": - - currencies < 0 - - alerts < 0 - - yesod-alerts < 0 - - graphite ^>= 0.10.0.1 - - "JosĂ© Lorenzo RodrĂ­guez @lorenzo": - - wrecker < 0 - - language-docker ^>= 12.1.0 - - docker-build-cacher < 0 - - mysql-haskell-nem ^>= 0.1.0.0 - - hadolint < 0 - - "Phil Ruffwind @Rufflewind": - - blas-hs ^>= 0.1.1.0 - - "Eitan Chatav @echatav": - - free-categories ^>= 0.2.0.2 - - squeal-postgresql ^>= 0.9.1.3 - - "Sam Quinn @Lazersmoke": - - ghost-buster ^>= 0.1.1.0 - - "typeable.io ": - - dom-parser < 0 # 3.1.0 compile fail - - xml-isogen < 0 # 0.3.0 compile fail - - "Jeremy Huffman @jeremyjh": - - higher-leveldb < 0 - - distributed-process-lifted < 0 - - distributed-process-monad-control < 0 - - "Adam Curtis @kallisti-dev": - - cond ^>= 0.5.1 - - "Naoto Shimazaki @nshimaza": - - thread-hierarchy ^>= 0.3.0.2 - - thread-supervisor ^>= 0.2.0.0 - - bitset-word8 ^>= 0.1.1.2 - - webex-teams-api ^>= 0.2.0.1 - - webex-teams-conduit ^>= 0.2.0.1 - - webex-teams-pipes < 0 - - "Deni Bertovic @denibertovic & James Parker @jprider63": - - docker < 0 - - "Hexirp @Hexirp": - - doctest-driver-gen ^>= 0.3.0.8 - - "VĂĄclav Haisman @wilx": - - hs-bibutils ^>= 6.10.0.0 - - "Christian KjĂŠr Laustsen @tehnix": - - ghc-core ^>= 0.5.6 - - colorize-haskell ^>= 1.0.1 - - "Type Classes @argumatronic @chris-martin": - - ascii ^>= 1.7.0.1 - - ascii-case ^>= 1.0.1.3 - - ascii-caseless ^>= 0.0.0.1 - - ascii-char ^>= 1.0.1.0 - - ascii-group ^>= 1.0.0.16 - - ascii-numbers ^>= 1.2.0.1 - - ascii-predicates ^>= 1.0.1.3 - - ascii-superset ^>= 1.3.0.1 - - ascii-th ^>= 1.2.0.1 - - attoparsec-run ^>= 0.0.2.0 - - aws-cloudfront-signed-cookies ^>= 0.2.0.12 - - d10 < 0 # 1.0.1.3 builds fine with cabal-install, stack issue? - - data-forest ^>= 0.1.0.12 - - hedgehog-optics < 0 - - hex-text ^>= 0.1.0.9 - - integer-types ^>= 0.1.4.0 - - invert ^>= 1.0.0.4 - - loc ^>= 0.2.0.0 - - memfd ^>= 1.0.1.3 - - partial-semigroup ^>= 0.6.0.2 - - path-text-utf8 < 0 - - quaalude ^>= 0.0.0.1 - - stripe-concepts ^>= 1.0.3.3 - - stripe-signature ^>= 1.0.0.16 - - stripe-wreq ^>= 1.0.1.16 - - systemd-socket-activation ^>= 1.1.0.1 - - unfork ^>= 1.0.0.1 - - "Viacheslav Lotsmanov @unclechu": - - place-cursor-at ^>= 1.0.1 - - qm-interpolated-string ^>= 0.3.1.0 - - "Douglas Burke @DougBurke": - - swish ^>= 0.10.7.0 - - hvega ^>= 0.12.0.7 - - ihaskell-hvega ^>= 0.5.0.4 - - "Adam Flott @adamflott": - - milena < 0 - - "Csongor Kiss @kcsongor": - - generic-lens ^>= 2.2.2.0 - - generic-optics ^>= 2.2.1.0 - - generic-lens-core ^>= 2.2.1.0 - - "Bogdan Neterebskii @ozzzzz": - - cast ^>= 0.1.0.2 - - aeson-picker ^>= 0.1.0.6 - - "Warlock @A1-Triard": - - errors-ext ^>= 0.4.2 - - binary-ext < 0 - - "Bob Long @bobjflong": - - yesod-csp < 0 # 0.2.5.0 text 1.2.5.0 exports `elem` - - "Alexander Vershilov @qnikst": - - stm-conduit ^>= 4.0.1 - - co-log-concurrent ^>= 0.5.1.0 - - HaskellNet ^>= 0.6.1.2 - - "Tung Dao @tungd": - - time-locale-vietnamese ^>= 1.0.0.0 - - "Tim McGilchrist @tmcgilchrist": - - riak < 0 - - riak-protobuf ^>= 0.25.0.0 - - airship < 0 - - hedgehog-corpus ^>= 0.2.0 - - "Tom Sydney Kerckhove @NorfairKing": - - appendful ^>= 0.1.0.0 - - appendful-persistent ^>= 0.1.0.1 - - autodocodec ^>= 0.2.2.0 - - autodocodec-openapi3 ^>= 0.2.1.1 - - autodocodec-schema ^>= 0.1.0.3 - - autodocodec-yaml ^>= 0.2.0.3 - - cursor ^>= 0.3.2.0 - - cursor-brick ^>= 0.1.0.1 - - cursor-fuzzy-time ^>= 0.0.0.0 - - cursor-gen ^>= 0.4.0.0 - - fast-myers-diff ^>= 0.0.0 - - fuzzy-time ^>= 0.2.0.3 - - genvalidity ^>= 1.1.0.0 - - genvalidity-aeson ^>= 1.0.0.1 - - genvalidity-appendful ^>= 0.1.0.0 - - genvalidity-bytestring ^>= 1.0.0.1 - - genvalidity-case-insensitive ^>= 0.0.0.1 - - genvalidity-containers ^>= 1.0.0.1 - - genvalidity-criterion ^>= 1.1.0.0 - - genvalidity-hspec ^>= 1.0.0.3 - - genvalidity-hspec-aeson ^>= 1.0.0.0 - - genvalidity-hspec-binary ^>= 1.0.0.0 - - genvalidity-hspec-cereal ^>= 1.0.0.0 - - genvalidity-hspec-hashable ^>= 1.0.0.1 - - genvalidity-hspec-optics ^>= 1.0.0.0 - - genvalidity-hspec-persistent ^>= 1.0.0.0 - - genvalidity-mergeful ^>= 0.3.0.1 - - genvalidity-mergeless ^>= 0.3.0.0 - - genvalidity-network-uri ^>= 0.0.0.0 - - genvalidity-path ^>= 1.0.0.1 - - genvalidity-persistent ^>= 1.0.0.2 - - genvalidity-property ^>= 1.0.0.0 - - genvalidity-scientific ^>= 1.0.0.0 - - genvalidity-sydtest ^>= 1.0.0.0 - - genvalidity-sydtest-aeson ^>= 1.0.0.0 - - genvalidity-sydtest-hashable ^>= 1.0.0.1 - - genvalidity-sydtest-lens ^>= 1.0.0.0 - - genvalidity-sydtest-persistent ^>= 1.0.0.0 - - genvalidity-text ^>= 1.0.0.1 - - genvalidity-time ^>= 1.0.0.1 - - genvalidity-typed-uuid ^>= 0.1.0.1 - - genvalidity-unordered-containers ^>= 1.0.0.1 - - genvalidity-uuid ^>= 1.0.0.1 - - genvalidity-vector ^>= 1.0.0.0 - - mergeful ^>= 0.3.0.0 - - mergeful-persistent ^>= 0.3.0.1 - - mergeless ^>= 0.4.0.0 - - mergeless-persistent ^>= 0.1.0.1 - - pretty-relative-time ^>= 0.3.0.0 - - safe-coloured-text ^>= 0.2.0.1 - - safe-coloured-text-gen ^>= 0.0.0.2 - - safe-coloured-text-layout ^>= 0.0.0.0 - - safe-coloured-text-layout-gen ^>= 0.0.0.0 - - safe-coloured-text-terminfo ^>= 0.1.0.0 - - sydtest ^>= 0.15.1.1 - - sydtest-aeson ^>= 0.1.0.0 - - sydtest-amqp ^>= 0.1.0.0 - - sydtest-autodocodec ^>= 0.0.0.0 - - sydtest-discover ^>= 0.0.0.4 - - sydtest-hedgehog ^>= 0.4.0.0 - - sydtest-hedis ^>= 0.0.0.0 - - sydtest-hspec ^>= 0.4.0.2 - - sydtest-mongo ^>= 0.0.0.0 - - sydtest-persistent ^>= 0.0.0.2 - - sydtest-persistent-postgresql < 0 - - sydtest-persistent-sqlite ^>= 0.2.0.3 - - sydtest-process ^>= 0.0.0.0 - - sydtest-rabbitmq ^>= 0.1.0.0 - - sydtest-servant ^>= 0.2.0.2 - - sydtest-typed-process ^>= 0.0.0.0 - - sydtest-wai ^>= 0.2.0.1 - - sydtest-webdriver ^>= 0.0.0.1 - - sydtest-webdriver-screenshot ^>= 0.0.0.2 - - sydtest-webdriver-yesod ^>= 0.0.0.1 - - sydtest-yesod ^>= 0.3.0.2 - - typed-uuid ^>= 0.2.0.0 - - validity ^>= 0.12.0.2 - - validity-aeson ^>= 0.2.0.5 - - validity-bytestring ^>= 0.4.1.1 - - validity-case-insensitive ^>= 0.0.0.0 - - validity-containers ^>= 0.5.0.4 - - validity-network-uri ^>= 0.0.0.1 - - validity-path ^>= 0.4.0.1 - - validity-persistent ^>= 0.0.0.0 - - validity-primitive ^>= 0.0.0.1 - - validity-scientific ^>= 0.2.0.3 - - validity-text ^>= 0.3.1.3 - - validity-time ^>= 0.5.0.0 - - validity-unordered-containers ^>= 0.2.0.3 - - validity-uuid ^>= 0.1.0.3 - - validity-vector ^>= 0.2.0.3 - - - "Henry Laxen @HenryLaxen": - - bbdb ^>= 0.8 - - "Andrzej Rybczak @arybczak": - - effectful ^>= 2.3.0.0 - - effectful-core ^>= 2.3.0.1 - - effectful-plugin ^>= 1.1.0.2 - - effectful-th ^>= 1.0.0.1 - - "Stevan Andjelkovic @stevana": - - quickcheck-state-machine ^>= 0.8.0 - - "Sebastian Nagel @ch1bo": - - hdevtools < 0 # 0.1.8.0 compile fail - - servant-exceptions ^>= 0.2.1 - - servant-exceptions-server ^>= 0.2.1 - - "Vaibhav Sagar @vaibhavsagar": - - ihaskell ^>= 0.10.4.0 && <0.11.0.0 # https://github.com/commercialhaskell/stackage/issues/7172 - - ghc-parser ^>= 0.2.6.0 - - "Alexis Williams @typedrat": - - stb-image-redux < 0 # deprecated version - - "Alexandre Peyroux @apeyroux": - - HSlippyMap ^>= 3.0.1 - - google-isbn ^>= 1.0.3 - - nuxeo ^>= 0.3.2 - - "Andrey Sverdlichenko @rblaze": - - credential-store ^>= 0.1.2 - - dbus ^>= 1.3.1 - - re2 ^>= 0.3 - - "Bardur Arantsson @BardurArantsson": - - peregrin ^>= 0.4.2 - - pg-harness-client ^>= 0.6.0 - - pg-harness-server < 0 - - tempgres-client ^>= 1.0.0 - - unliftio-pool < 0 - - unliftio-streams ^>= 0.2.0.0 - - "Sebastian Graf @sgraf812": - - pomaps < 0 - - "Alexey Kotlyarov @koterpillar": - - appendmap ^>= 0.1.5 - - serverless-haskell < 0 # 0.12.6 https://github.com/seek-oss/serverless-haskell/issues/188 - - "Guru Devanla @gdevanla": - - pptable ^>= 0.3.0.0 - - cassava-records < 0 # 0.1.0.4 compile fail MonadFail - - pandoc-markdown-ghci-filter < 0 # 0.1.0.0 compile fail https://github.com/gdevanla/pandoc-markdown-ghci-filter/issues/3 - - "Lucas David Traverso @ludat": - - conferer ^>= 1.1.0.0 - - conferer-snap < 0 - - conferer-warp ^>= 1.1.0.1 - - conferer-hspec < 0 - - conferer-aeson ^>= 1.1.0.2 - - "Tim Humphries @thumphries": - - transformers-either ^>= 0.1.4 - - transformers-fix < 0 - - "Dan Firth @locallycompact": - - aeson-with < 0 - - binary-instances ^>= 1.0.4 - - comonad-extras < 0 - - compact ^>= 0.2.0.0 - - composite-aeson < 0 - - composite-aeson-path < 0 - - composite-aeson-refined < 0 - - composite-aeson-throw < 0 - - composite-base ^>= 0.8.2.1 && <0.8.2.2 # https://github.com/commercialhaskell/stackage/issues/7193 - - composite-binary ^>= 0.8.2.2 - - composite-ekg < 0 - - composite-hashable ^>= 0.8.2.2 - - composite-tuple ^>= 0.1.2.0 - - composite-xstep ^>= 0.1.0.0 - - ixset-typed-binary-instance ^>= 0.1.0.2 - - ixset-typed-conversions < 0 - - ixset-typed-hashable-instance ^>= 0.1.0.2 - - lucid-cdn ^>= 0.2.2.0 - - natural-arithmetic ^>= 0.1.4.0 - - pandoc-dhall-decoder ^>= 0.1.0.1 - - pandoc-throw ^>= 0.1.0.0 - - path-binary-instance ^>= 0.1.0.1 - - path-dhall-instance ^>= 0.2.1.0 - - path-extensions ^>= 0.1.1.0 - - path-formatting < 0 - - path-like ^>= 0.2.0.2 - - path-utils ^>= 0.1.1.0 - - polysemy-extra < 0 - - polysemy-fs ^>= 0.1.0.0 - - polysemy-fskvstore < 0 - - polysemy-kvstore-jsonfile < 0 - - polysemy-kvstore < 0 - - polysemy-methodology < 0 - - polysemy-path < 0 - - polysemy-several < 0 - - polysemy-socket < 0 - - polysemy-uncontrolled < 0 - - polysemy-video < 0 - - polysemy-vinyl < 0 - - primitive-offset ^>= 0.2.0.0 - - sdl2-gfx ^>= 0.3.0.0 - - sdl2-image ^>= 2.1.0.0 - - sdl2-mixer ^>= 1.2.0.0 - - shake-plus ^>= 0.3.4.0 - - shake-plus-extended ^>= 0.4.1.0 - - simple-media-timestamp ^>= 0.2.1.0 - - simple-media-timestamp-formatting < 0 - - simple-media-timestamp-attoparsec ^>= 0.1.0.0 - - srt ^>= 0.1.2.0 - - srt-attoparsec < 0 - - srt-dhall < 0 - - srt-formatting < 0 - - tuples ^>= 0.1.0.0 - - unliftio-path ^>= 0.0.2.0 - - variable-media-field < 0 - - variable-media-field-dhall < 0 - - variable-media-field-optics < 0 - - vinyl-loeb ^>= 0.0.1.0 - - within ^>= 0.2.0.1 - - zipper-extra < 0 - - "Domen Kozar @domenkozar": - - elm2nix < 0 # 0.3.0 compile fail - - mixpanel-client < 0 # 0.3.0 aeson 2, https://github.com/commercialhaskell/stackage/issues/6443 - - pretty-sop ^>= 0.2.0.3 - - servant-auth ^>= 0.4.1.0 - - servant-auth-server ^>= 0.4.8.0 - - servant-auth-client ^>= 0.4.1.1 - - servant-auth-swagger ^>= 0.2.10.2 - - servant-auth-docs ^>= 0.2.10.1 - - servant-elm ^>= 0.7.3 - - systemd ^>= 2.3.0 - - "Andre Van Der Merwe @andrevdm": - - bhoogle < 0 - - hyraxAbif ^>= 0.2.4.5 - - postgresql-migration ^>= 0.2.1.7 - - "David Millar-Durrant @DavidM-D": - - indexed-list-literals ^>= 0.2.1.3 - - "Dmitry Dzhus @dzhus": - - csg < 0 - - simple-vec3 ^>= 0.6.0.1 - - static-text ^>= 0.2.0.7 - - th-env ^>= 0.1.1 - - th-nowq ^>= 0.1.0.5 - - "Dan Fithian @dfithian": - - oauthenticated < 0 # 0.3.0.0 compile fail https://github.com/tel/oauthenticated/issues/33 - - datadog ^>= 0.3.0.0 - - interpolator < 0 - - file-path-th ^>= 0.1.0.0 - - "Raghu Kaippully @rkaippully": - - webgear-core < 0 # https://github.com/commercialhaskell/stackage/issues/7168 - - webgear-openapi < 0 # https://github.com/commercialhaskell/stackage/issues/7168 - - webgear-server < 0 # 1.0.5 compile fail https://github.com/haskell-webgear/webgear/issues/16 - - "Alex Washburn @recursion-ninja": - - bv-little ^>= 1.3.2 - - mono-traversable-keys ^>= 0.3.0 - - "Avi Press @aviaviavi": - - curl-runnings < 0 - - cryptocompare ^>= 0.1.2 - - "Jack Kiefer @JackKiefer": - - herms < 0 - - "Sergey Vinokurov @sergv": - - bencoding < 0 # 0.4.5.4 compile fail not ghc-9.6 ready https://github.com/sergv/bencoding/issues/4 - - emacs-module ^>= 0.2.1 - - tasty-ant-xml ^>= 1.1.9 - - prettyprinter-combinators ^>= 0.1.2 - - composition-prelude ^>= 3.0.0.2 - - toml-reader-parse ^>= 0.1.1.1 - - atomic-counter ^>= 0.1.2.1 - - directory-ospath-streaming ^>= 0.1.0.1 - - "Eugene Smolanka @esmolanka": - - sexp-grammar ^>= 2.3.4.2 - - invertible-grammar ^>= 0.1.3.5 - - "Maximilian Tagher @MaxGabriel": - - aeson-iproute ^>= 0.3.0 - - persistent-iproute ^>= 0.2.5 - - "Damian Nadales @capitanbatata": - - hierarchy < 0 - - "Kofi Gumbs @hkgumbs": - - codec-beam ^>= 0.2.0 - - "Chris Parks @cdparks": - - closed ^>= 0.2.0.2 - - "Chris Coffey @ChrisCoffey": - - servant-tracing < 0 - - cuckoo-filter < 0 - - confcrypt < 0 - - "Rick Owens @owensmurray": - - om-elm ^>= 2.0.0.5 - - "ALeX Kazik @alexkazik": - - exomizer ^>= 1.0.0 - - qnap-decrypt < 0 - - qrcode-core ^>= 0.9.9 - - qrcode-juicypixels ^>= 0.8.5 - - "Reed Oei @ReedOei": - - fuzzy-dates ^>= 0.1.1.2 - - "Matthew Farkas-Dyck @strake": - - Fin < 0 - - alg < 0 - - category < 0 - - constraint < 0 - - dual < 0 # 0.1.1.1 compile fail deprecated (https://hackage.haskell.org/package/dual) and not ghc 9.6 ready - - either-both < 0 # 0.1.1.1 compile fail deprecated (https://hackage.haskell.org/package/either-both) and not ghc 9.6 ready - - filtrable ^>= 0.1.6.0 - - foldable1 < 0 - - hs-functors < 0 - - lenz < 0 - - natural-induction ^>= 0.2.0.0 - - peano ^>= 0.1.0.2 - - unconstrained ^>= 0.1.0.2 - - util < 0 # 0.1.17.1 compile fail needs DerivingVia enabled - - "Ben Sima @bensima": - - yesod-text-markdown < 0 - - "Alexander Krupenkin @akru": - - web3 < 0 - - "Georg Rudoy <0xd34df00d@gmail.com> @0xd34df00d": - - binary-generic-combinators ^>= 0.4.4.0 - - can-i-haz ^>= 0.3.1.1 - - enum-subset-generate ^>= 0.1.0.1 - - "Trevis Elser @telser": - - sendfile ^>= 0.7.11.5 - - "Kristen Kozak @grayjay": - - json-rpc-server < 0 - - json-rpc-client < 0 - - "Magnus Therning @magthe": - - hsini ^>= 0.5.2.2 - - "Baojun Wang @wangbj": - - elf ^>= 0.31 - - "Tom Oram @tomphp": - - cfenv ^>= 0.1.0.0 - - "Owen Lynch @olynch": - - natural-sort ^>= 0.1.2 - - "John Biesnecker @biesnecker": - - async-pool ^>= 0.9.2 - - "Zoltan Kelemen @kelemzol": - - fswatch < 0 - - "Matthew Wraith @wraithm": - - prometheus ^>= 2.2.4 - - prometheus-wai-middleware < 0 - - hgrev < 0 - - seqid ^>= 0.6.3 - - seqid-streams ^>= 0.7.2 - - "Daniel Gorin @jcpetruzza": - - barbies ^>= 2.0.5.0 - - data-hash ^>= 0.2.0.1 - - "Eduard Sergeev @EduardSergeev": - - monad-memo ^>= 0.5.4 - - "Wanja Chresta @wchresta": - - matrix-static ^>= 0.3 - - "Jean-Pierre Rupp @xenog": - - json-rpc ^>= 1.0.4 - - rfc1751 ^>= 0.1.3 - - murmur3 ^>= 1.0.5 - - nqe ^>= 0.6.5 - - secp256k1-haskell ^>= 1.1.0 - - rocksdb-haskell ^>= 1.0.1 - - rocksdb-haskell-jprupp ^>= 2.1.6 - - rocksdb-query ^>= 0.4.2 - - haskoin-core ^>= 1.0.2 - - haskoin-node ^>= 1.0.1 - - haskoin-store < 0 - - "asakamirai @asakamirai": - - kazura-queue ^>= 0.1.0.4 - - "Eric Torreborre @etorreborre": - - registry < 0 - - registry-aeson < 0 - - registry-hedgehog < 0 - - registry-hedgehog-aeson < 0 - - registry-options < 0 - - "Ryota Kameoka @ryota-ka": - - duration ^>= 0.2.0.0 - - "Takenobu Tani @takenobu-hs": - - ghci-hexcalc ^>= 0.1.1.0 - - "Nikos Karagianndis @nkarag": - - DBFunctor ^>= 0.1.2.1 - - "Marat Khafizov @xafizoff": - - n2o ^>= 0.11.1 - - n2o-nitro ^>= 0.11.2 - - n2o-protocols < 0 - - n2o-web < 0 - - "David Smith @shmish111": - - bazel-runfiles ^>= 0.12 - - "Rob Rix @robrix": - - fused-effects ^>= 1.1.2.2 - - "Josef Thorne @Grendel-Grendel-Grendel": - - focuslist ^>= 0.1.1.0 - - "Pavan Rikhi @prikhi": - - hs-php-session ^>= 0.0.9.3 - - wordpress-auth < 0 # 1.0.0.1 # fails to compile https://github.com/prikhi/wordpress-auth/issues/1 - - servant-auth-wordpress < 0 - - ca-province-codes ^>= 1.0.0.0 - - mx-state-codes ^>= 1.0.0.0 - - sitemap-gen ^>= 0.1.0.0 - - tasty-wai ^>= 0.1.2.0 - - stack-templatizer ^>= 0.1.1.0 - - immortal-queue ^>= 0.1.0.1 - - wai-middleware-clacks ^>= 0.1.0.1 - - hledger-stockquotes ^>= 0.1.2.1 - - bnb-staking-csvs ^>= 0.2.1.0 - - solana-staking-csvs ^>= 0.1.2.0 - - cointracking-imports ^>= 0.1.0.2 - - binance-exports ^>= 0.1.2.0 - - gemini-exports ^>= 0.1.0.0 - - "David Baynard @dbaynard": - - time-qq < 0 - - ucam-webauth < 0 - - ucam-webauth-types < 0 - - "Erick Gonzalez @codemonkeylabs-de": - - eap ^>= 0.9.0.2 - - failable < 0 - - ttl-hashtables < 0 - - radius ^>= 0.7.1.0 - - structured-cli < 0 - - "Jan Path @janpath": - - smallcheck-series < 0 - - "Taisuke Hikawa <23.prime.37@gmail.com> @23prime": - - oeis2 < 0 # 1.0.7 compile fail https://github.com/commercialhaskell/stackage/issues/6498 - - "David Himmelstrup @lemmih": - - chiphunk < 0 - - reanimate-svg < 0 # https://github.com/reanimate/reanimate-svg/issues/41 - - reanimate < 0 - - earcut < 0 - - vector-circular < 0 - - hgeometry < 0 - - hgeometry-combinatorial < 0 - - approximate-equality ^>= 1.1.0.2 # required by hgeometry-combinatorial - - type-level-natural-number ^>= 2.0 # required by approximate-equality - - "Vitaly Bragilevsky @bravit": - - Chart ^>= 1.9.5 - - Chart-diagrams ^>= 1.9.5.1 - - "Juri ChomĂ© @2mol": - - msgpack ^>= 1.0.1.0 - - msgpack-rpc < 0 - - msgpack-idl < 0 - - msgpack-aeson < 0 # 0.1.0.0 compile fail https://github.com/commercialhaskell/stackage/issues/7135 - - int-cast ^>= 0.2.0.0 - - "Akihito Kirisaki @kirisaki": - - caster < 0 - - "Felix Paulusma @Vlix": - - safe-json ^>= 1.2.0.0 - - "Olle Fredriksson @ollef": - - rope-utf16-splay ^>= 0.4.0.0 - - "Venkateswara Rao Mandela @vmandela": - - pandoc-csv2table < 0 - - "Elben Shira @elben": - - pencil < 0 - - "Ivan Malison @IvanMalison": - - ConfigFile < 0 - - dbus-hslogger ^>= 0.1.0.1 - - gi-cairo-connector < 0 - - gi-cairo-render ^>= 0.1.2 - - gtk-sni-tray < 0 - - gtk-strut ^>= 0.1.3.2 - - rate-limit ^>= 1.4.3 - - status-notifier-item ^>= 0.3.1.0 - - taffybar < 0 - - time-units ^>= 1.0.0 - - xml-helpers ^>= 1.0.0 - - xdg-desktop-entry < 0 - - "ARATA Mizuki @minoki": - - unboxing-vector ^>= 0.2.0.0 - - "Brandon Chinn @brandonchinn178": - - aeson-schemas ^>= 1.4.1.0 - - fourmolu ^>= 0.14.0.0 - - github-rest ^>= 1.1.4 - - graphql-client ^>= 1.2.2 - - hpc-lcov ^>= 1.1.1 - - http-api-data-qq ^>= 0.1.0.0 - - persistent-mtl < 0 - - tasty-autocollect ^>= 0.4.1 - - th-test-utils ^>= 1.2.1 - - toml-reader ^>= 0.2.1.0 - - "Akshay Mankar @akshaymankar": - - jsonpath ^>= 0.3.0.0 - - "James Brock @jamesdbrock": - - replace-megaparsec ^>= 1.5.0.1 - - replace-attoparsec ^>= 1.5.0.0 - - "Robbie McMichael @robbiemcmichael": - - http-client-overrides ^>= 0.1.1.0 - - "Ian Graves @igraves": - - monad-resumption ^>= 0.1.4.0 - - "Marius Ghita @mhitza": - - minimal-configuration ^>= 0.1.4 - - "Davit Nalchevanidze @nalchevanidze": - - morpheus-graphql < 0 - - morpheus-graphql-core ^>= 0.27.3 - - morpheus-graphql-client ^>= 0.27.3 - - morpheus-graphql-subscriptions ^>= 0.27.3 - - morpheus-graphql-app ^>= 0.27.3 - - morpheus-graphql-code-gen < 0 - - morpheus-graphql-tests ^>= 0.27.3 - - morpheus-graphql-code-gen-utils ^>= 0.27.3 - - morpheus-graphql-server ^>= 0.27.3 - - "Satoshi Egi @egisatoshi": - - backtracking ^>= 0.1.0 - - egison < 0 - - mini-egison < 0 - - sweet-egison < 0 - - egison-pattern-src ^>= 0.2.1.2 - - egison-pattern-src-th-mode < 0 - - "Travis Cardwell @TravisCardwell": - - bm ^>= 0.2.0.0 - - horizontal-rule ^>= 0.6.0.0 - - literatex ^>= 0.3.0.0 - - phatsort ^>= 0.6.0.0 - - queue-sheet < 0 - - redact ^>= 0.5.0.0 - - ttc ^>= 1.4.0.0 - - "Jasper Woudenberg @jwoudenberg": - - bugsnag-hs ^>= 0.2.0.12 - - junit-xml ^>= 0.1.0.3 - - wai-feature-flags ^>= 0.1.0.7 - - tasty-test-reporter < 0 - - pretty-diff < 0 - - "Eric Conlon @ejconlon": - - blanks ^>= 0.5.0 - - climb < 0 - - linenoise < 0 - - little-rio ^>= 2.0.1 - - little-logger ^>= 1.0.2 - # Maintainership with @23Skidoo - - ekg < 0 - - ekg-core ^>= 0.1.1.7 - - ekg-json < 0 - - ekg-statsd < 0 - - "Jorah Gao @gqk007": - - aeson-default < 0 - - vformat ^>= 0.14.1.0 - - vformat-time ^>= 0.1.0.0 - - vformat-aeson < 0 - - hkd-default ^>= 1.1.0.0 - - "Shintaro Sakata @chemirea": - - utf8-conversions < 0 - - "Alessandro Marrella @amarrella": - - kubernetes-webhook-haskell < 0 - - "8c6794b6 <8c6794b6@gmail.com> @8c6794b6": - - hpc-codecov ^>= 0.5.0.0 - - miniterion ^>= 0.1.1.0 - - "Hiromi Ishii @konn": - - equational-reasoning ^>= 0.7.0.1 - - ghc-typelits-presburger ^>= 0.7.2.0 - - singletons-presburger ^>= 0.7.2.0 - - type-natural ^>= 1.3.0.0 - - subcategories ^>= 0.2.0.1 - - sized ^>= 1.1.0.0 - - "Frank Doepper @woffs": - - amqp-utils ^>= 0.6.4.0 - - magic ^>= 1.1 - - "Ziyang Liu @zliu41": - - apply-refact ^>= 0.13.0.0 - - hadoop-streaming < 0 - - indexed-containers ^>= 0.1.0.2 - - math-extras ^>= 0.1.1.0 - - min-max-pqueue ^>= 0.1.0.2 - - multi-containers ^>= 0.2 - - "Vaclav Svejcar @vaclavsvejcar": - - headroom < 0 # 0.4.3.0 compile fail - - vcs-ignore ^>= 0.0.2.0 - - "Adrian Sieber @ad-si": - - ulid ^>= 0.3.2.0 - - "Rickey Visinski @rickeyski": - - slack-api < 0 - - "Dobromir Nikolov @dnikolovv": - - it-has < 0 - - "Gabriele Sales @gbrsales": - - cabal-appimage ^>= 0.4.0.2 - - "Dominik Schrempf @dschrempf": - - circular ^>= 0.4.0.3 - - covariance ^>= 0.2.0.1 - - dirichlet ^>= 0.1.0.7 - - elynx ^>= 0.7.2.2 - - elynx-markov ^>= 0.7.2.2 - - elynx-nexus ^>= 0.7.2.2 - - elynx-seq ^>= 0.7.2.2 - - elynx-tools ^>= 0.7.2.2 - - elynx-tree ^>= 0.7.2.2 - - glasso ^>= 0.1.0 - - mcmc ^>= 0.8.2.0 - - pava ^>= 0.1.1.4 - - slynx ^>= 0.7.2.2 - - tlynx ^>= 0.7.2.2 - - "Eric Rochester @erochest": - - text-regex-replace ^>= 0.1.1.5 - - "Masahiro Honma @hiratara": - - string-random ^>= 0.1.4.3 - - "Michael B. Gale @mbg": - - c14n ^>= 0.1.0.3 - - katip-logstash ^>= 0.1.0.2 - - logstash ^>= 0.1.0.4 - - monad-logger-logstash ^>= 0.2.0.2 - - moss ^>= 0.2.0.1 - - network-wait ^>= 0.2.0.0 - - servant-rate-limit ^>= 0.2.0.0 - - time-units-types ^>= 0.2.0.1 - - wai-rate-limit ^>= 0.3.0.0 - - wai-rate-limit-redis ^>= 0.2.0.1 - - wai-saml2 ^>= 0.5 - - "Jun Narumi @narumij": - - matrix-as-xyz ^>= 0.1.2.2 - - hall-symbols ^>= 0.1.0.6 - - symmetry-operations-symbols ^>= 0.0.2.1 - - "Hideaki Kawai @kayhide": - - wakame ^>= 0.1.0.0 - - "Michael Williams @mlcfp": - - zenacy-html ^>= 2.1.0 - - zenacy-unicode ^>= 1.0.2 - - "Maxim Koltsov @maksbotan": - - openapi3 ^>= 3.2.4 - - servant-openapi3 ^>= 2.0.1.6 - - "Song Zhang @HaskellZhangSong": - - derive-topdown ^>= 0.0.3.0 - - "NoRedInk ": - - nri-env-parser < 0 - - nri-http < 0 - - nri-kafka < 0 - - nri-observability < 0 - - nri-prelude < 0 - - nri-postgresql < 0 - - nri-redis < 0 - - nri-test-encoding < 0 - - "Peter Lebbing @DigitalBrains1": - - prettyprinter-interp ^>= 0.2.0.0 - - "Behrang Norouzinia @behrang": - - jalaali ^>= 1.0.0.0 - - "Alexander Batischev @Minoru": - - hakyll-convert ^>= 0.3.0.4 - - "Edward Nerd @nerded1337": - - zydiskell < 0 - - "Alejandro Peralta Bazas @aleperaltabazas": - - hocon < 0 - - "Joshua Booth @jnbooth": - - bitwise-enum ^>= 1.0.1.2 - - "Shlomo Shuck @sjshuck": - - pcre2 ^>= 2.2.1 - - "Emil Axelsson <78emil@gmail.com> @emax": - - tree-view ^>= 0.5.1 - - "Samuel GĂ©lineau @gelisam": - - haskell-awk < 0 - - hint ^>= 0.9.0.8 - - recursion-schemes ^>= 5.2.2.5 - - "Kyriakos Papachrysanthou @3kyro": - - keep-alive ^>= 0.2.1.0 - - "Brooklyn Zelenka @expede": - - rescue < 0 - - "Artem Pelenitsyn @ulysses4ever": - - alex-meta ^>= 0.3.0.13 - - happy-meta ^>= 0.2.1.0 - - BNFC-meta ^>= 0.6.1 - - vector-hashtables ^>= 0.1.1.4 - - "Tomasz Maciosowski @t4ccer": - - wai-session-redis ^>= 0.1.0.5 - - "Rory Tyler Hayford @ngua": - - ipa < 0 - - "Andreas Herrmann @aherrmann": - - capability < 0 # https://github.com/commercialhaskell/stackage/issues/7146 - - "Dustin Sallings @dustin": - - net-mqtt ^>= 0.8.6.0 - - net-mqtt-lens ^>= 0.1.1.0 - - "David A Roberts @davidar": - - streamt < 0 - - "Martin Sosic @Martinsos": - - strong-path < 0 - - "Arnaud Spiwack @aspiwack": - - linear-base ^>= 0.4.0 - - linear-generics ^>= 0.2.2 - - "Ollie Charles @ocharles": - - reactive-banana ^>= 1.3.2.0 - - rel8 < 0 - - logging-effect ^>= 1.4.0 - - "Grzegorz Milka @gregorias": - - trimdent ^>= 0.1.0.0 - - "xmonad ": - - X11 ^>= 1.10.3 - - xmonad ^>= 0.17.2 - - xmonad-contrib < 0 - - "Marcellus Siegburg @marcellussiegburg": - - call-alloy ^>= 0.4.0.3 - - call-plantuml ^>= 0.0.1.3 - - hgal ^>= 2.0.0.3 - - "Rickard Andersson @GoNZooo": - - reddit-scrape ^>= 0.0.1 - - "James Cranch @jcranch": - - agreeing ^>= 0.2.2.0 - - mappings ^>= 0.3.0.0 - - partialord ^>= 0.0.2 - - tophat ^>= 1.0.7.0 - - "Jan Synacek @jsynacek": - - hpqtypes ^>= 1.11.1.2 - - hpqtypes-extras ^>= 1.16.4.4 - - fields-json ^>= 0.4.0.0 - - log-base ^>= 0.12.0.1 - - unjson ^>= 0.15.4 - - "Daan Leijen @daanx": - - isocline ^>= 1.0.9 - - "Chase @TotallyNotChase": - - valida ^>= 1.1.0 - - valida-base ^>= 0.2.0 - - "Andrew Miller @A1kmm": - - polysemy-webserver ^>= 0.2.1.2 - - "Simon Shine @sshine": - - evm-opcodes ^>= 0.1.2 - - "Francesco Ariis @ffaf1": - - ansi-terminal-game ^>= 1.9.2.0 - - lentil ^>= 1.5.6.0 - - linebreak ^>= 1.1.0.4 - - timers-tick ^>= 0.5.0.4 - - unidecode ^>= 0.1.0.4 - - "Chris Smith ": - - HMock ^>= 0.5.1.2 - - explainable-predicates ^>= 0.1.2.4 - - "Tim Emiola @adetokunbo": - - benri-hspec ^>= 0.1.0.1 - - attoparsec-framer ^>= 0.1.0.1 - - hspec-tmp-proc ^>= 0.5.2.0 - - keyed-vals ^>= 0.2.2.0 - - keyed-vals-hspec-tests ^>= 0.2.2.0 - - keyed-vals-mem ^>= 0.2.2.0 - - keyed-vals-redis ^>= 0.2.2.0 - - redis-glob ^>= 0.1.0.6 - - tmp-proc ^>= 0.5.3.0 - - tmp-proc-postgres ^>= 0.5.3.1 - - tmp-proc-redis ^>= 0.5.3.1 - - tmp-proc-rabbitmq ^>= 0.5.3.1 - - wai-middleware-delegate ^>= 0.1.4.0 - - "Francisco Vallarino @fjvallarino": - - monomer ^>= 1.6.0.0 - - nanovg ^>= 0.8.1.0 - - "Ghais Issa <0x47@0x49.dev> @ghais": - - LetsBeRational ^>= 1.0.0.0 - - "Edward Yang @qwbarch": - - captcha-core < 0 - - captcha-2captcha < 0 - - captcha-capmonster < 0 - - data-default-extra < 0 - - data-default-instances-base ^>= 0.1.0.1 - - data-default-instances-bytestring ^>= 0.0.1 - - data-default-instances-case-insensitive ^>= 0.0.1 - - data-default-instances-new-base < 0 - - data-default-instances-text < 0 - - data-default-instances-unordered-containers ^>= 0.0.1 - - data-default-instances-vector ^>= 0.0.1 - - optics-operators ^>= 0.1.0.1 - - "David Spies @davidspies": - - fastmemo < 0 - - "comp @1Computer1": - - errata ^>= 0.4.0.1 - - reorder-expression < 0 - - "konsumlamm @konsumlamm": - - rrb-vector ^>= 0.2.1.0 - - "Co-Star Astrology Society @costarastrology @halawaykeller": - - Plural ^>= 0.0.2 - - bytebuild ^>= 0.3.14.0 - - byteslice ^>= 0.2.12.0 - - contiguous ^>= 0.6.4.0 - - fb ^>= 2.1.1.1 - - ip ^>= 1.7.7 - - pwstore-fast ^>= 2.4.4 - - rex ^>= 0.6.2 - - run-st ^>= 0.1.3.2 - - text-regex-replace ^>= 0.1.1.5 - - word-compat ^>= 0.0.6 - - zigzag ^>= 0.0.1.0 - - "Markus Schirp @mbj": - - stratosphere ^>= 0.60.0 - - "Clemens Schmid @nevrome": - - currycarbon ^>= 0.3.0.1 - - "Benjamin Orchard @raehik": - - flatparse ^>= 0.5.0.1 - - strongweak < 0 - - mason ^>= 0.2.6 - - fortran-src-extras < 0 - - "David Terei @dterei": - - memcache ^>= 0.3.0.1 - - "Teo Camarasu @TeofilC": - - bank-holidays-england ^>= 0.2.0.9 - - statistics-linreg ^>= 0.3 - - trie-simple ^>= 0.4.2 - - PSQueue ^>= 1.2.0 - - matchable ^>= 0.1.2.1 # dep of trie-simple - - "Fabricio Olivetti de Franca @folivetti": - - hegg ^>= 0.5.0.0 # dep of pandoc-symreg - - pandoc-symreg < 0 - - srtree ^>= 1.0.0.5 - - "Eugen Wissner @belka-ew": - - graphql ^>= 1.2.0.1 - - "Mike Pilgrem @mpilgrem": - - aeson-warning-parser ^>= 0.1.1 - - ansi-terminal ^>= 1.0 - - ansi-terminal-types ^>= 0.11.5 - - companion ^>= 0.1.0 - - stack ^>= 2.13.1 && (<9.9.9 || >9.9.9) - - static-bytes ^>= 0.1.0 - - "Torsten Schmits @tek": - - exon ^>= 1.6.1.0 - - incipit-base ^>= 0.5.1.0 - - incipit-core ^>= 0.5.1.0 - - polysemy ^>= 1.9.1.3 - - polysemy-plugin ^>= 0.4.5.1 - - polysemy-zoo < 0 - - "Michael Dressel @mdrslmr": - - MultipletCombiner ^>= 0.0.7 - - "Kazu Yamamoto @kazu-yamamoto": - - crypton ^>= 0.34 - - crypton-connection ^>= 0.3.1 - - crypton-x509 ^>= 1.7.6 - - crypton-x509-store ^>= 1.6.9 - - crypton-x509-system ^>= 1.6.7 - - crypton-x509-validation ^>= 1.6.12 - - http2 ^>= 5.0.0 - - network-control ^>= 0.0.2 - - "Patrick Nielsen @patrickmn": - - aeson-yaml ^>= 1.1.0.1 - - "Eric Mertens @glguy": - - toml-parser ^>= 1.3.1.1 - - "Andreas LĂ€ndle @alaendle": - - co-log ^>= 0.6.0.2 - - co-log-core ^>= 0.3.2.1 - - co-log-polysemy ^>= 0.0.1.4 - - "Alexander Esgen @amesgen": - - ghc-hs-meta ^>= 0.1.3.0 - - "Ian Davidson @bontaq": - - purview ^>= 0.2.0.2 - - "Logan McGrath @keywordsalad": - - hakyllbars ^>= 1.0.1.0 - - "David SĂĄnchez @DavSanchez": - - richenv ^>= 0.1.0.1 - - "Zac Slade @krakrjak": - - fits-parse ^>= 0.3.6 - - "Grandfathered dependencies": - - BiobaseNewick ^>= 0.0.0.2 - - Boolean ^>= 0.2.4 - - BoundedChan ^>= 1.0.3.0 - - Chart-cairo ^>= 1.9.4.1 - - Decimal ^>= 0.5.2 - - Diff ^>= 0.4.1 - - FloatingHex ^>= 0.5 - - GenericPretty ^>= 1.2.2 - - Glob ^>= 0.10.2 - - HDBC ^>= 2.4.0.4 - - HDBC-session ^>= 0.1.2.1 - - HTTP ^>= 4000.4.1 - - HasBigDecimal ^>= 0.2.0.0 - - HsOpenSSL ^>= 0.11.7.6 - - IfElse ^>= 0.85 - - Interpolation ^>= 0.3.0 - - JuicyPixels-scale-dct ^>= 0.1.2 - - MemoTrie ^>= 0.6.11 - - NoHoed ^>= 0.1.1 - - NumInstances ^>= 1.4 - - Only ^>= 0.1 - - ParsecTools ^>= 0.0.2.0 - - QuickCheck ^>= 2.14.3 - - RSA ^>= 2.4.1 - - Stream ^>= 0.4.7.2 - - TypeCompose < 0 - - Yampa ^>= 0.14.6 - - accelerate-io-bmp < 0 - - accelerate-io-bytestring < 0 - - accelerate-io-repa < 0 - - accelerate-io-vector < 0 - - aeson-extra ^>= 0.5.1.3 - - aeson-optics ^>= 1.2.1 - - alsa-mixer ^>= 0.3.0.1 - - animalcase < 0 - - appar ^>= 0.1.8 - - arrows ^>= 0.4.4.2 - - asn1-encoding ^>= 0.9.6 - - asn1-parse ^>= 0.9.5 - - asn1-types ^>= 0.3.4 - - assoc ^>= 1.1 - - attoparsec ^>= 0.14.4 - - attoparsec-aeson ^>= 2.1.0.0 - - auto-update ^>= 0.1.6 - - aws ^>= 0.24.1 - - aws-lambda-haskell-runtime-wai < 0 - - base-noprelude < 0 - - base64-bytestring ^>= 1.2.1.0 - - base64-bytestring-type ^>= 1.0.1 - - base64-string ^>= 0.2 - - bimap ^>= 0.5.0 - - bin ^>= 0.1.3 # req'd by boring - - binary-orphans ^>= 1.0.4.1 - - binary-parser ^>= 0.5.7.5 - - binary-tagged ^>= 0.3.1 - - bindings-DSL ^>= 1.0.25 - - bindings-uname ^>= 0.1 - - bitarray ^>= 0.0.1.1 - - blank-canvas ^>= 0.7.4 - - blaze-svg ^>= 0.3.7 - - blaze-textual ^>= 0.2.3.1 - - bloomfilter ^>= 2.0.1.2 - - boring ^>= 0.2.1 - - box ^>= 0.9.2.1 - - box-csv < 0 - - brick ^>= 2.1.1 - - broadcast-chan ^>= 0.2.1.2 - - buffer-builder ^>= 0.2.4.8 - - byte-order ^>= 0.1.3.0 - - byteable ^>= 0.1.1 - - bytehash ^>= 0.1.1.0 - - bytesmith ^>= 0.3.10.0 - - bytestring-builder ^>= 0.10.8.2.0 - - bzlib ^>= 0.5.1.0 - - ca-province-codes ^>= 1.0.0.0 - - cabal-install-solver ^>= 3.10.2.1 - - call-stack ^>= 0.4.0 - - casing ^>= 0.1.4.1 - - cassava-megaparsec ^>= 2.0.4 - - cborg ^>= 0.2.10.0 - - cereal ^>= 0.5.8.3 - - cereal-text ^>= 0.1.0.2 - - cereal-vector ^>= 0.2.0.1 - - chunked-data ^>= 0.3.1 - - cipher-aes128 < 0 # 0.7.0.6 compile fail - - cipher-blowfish < 0 # 0.0.3 compile fail - - cipher-camellia ^>= 0.0.2 - - cipher-des < 0 - - classy-prelude ^>= 1.5.0.3 - - classy-prelude-conduit ^>= 1.5.0 - - clientsession ^>= 0.9.2.0 - - cmark-gfm ^>= 0.2.6 - - colour ^>= 2.3.6 - - colourista ^>= 0.1.0.2 - - commutative-semigroups ^>= 0.1.0.1 - - concurrent-extra ^>= 0.7.0.12 - - conduit ^>= 1.3.5 - - config-ini ^>= 0.2.7.0 - - configurator ^>= 0.3.0.0 - - constraints-extras ^>= 0.4.0.0 - - contravariant-extras ^>= 0.3.5.4 - - control-monad-free ^>= 0.6.2 - - control-monad-omega ^>= 0.3.2 - - convertible ^>= 1.1.1.1 - - cookie ^>= 0.4.6 - - cpphs ^>= 1.20.9.1 - - crypt-sha512 ^>= 0 - - crypto-api ^>= 0.13.3 - - crypto-api-tests ^>= 0.3 - - crypto-cipher-tests ^>= 0.0.11 - - crypto-cipher-types ^>= 0.0.9 - - crypto-numbers < 0 - - crypto-pubkey < 0 - - crypto-pubkey-openssh < 0 # 0.2.7 compile fail - - crypto-random < 0 # 0.0.9 compile fail https://github.com/vincenthz/hs-crypto-random/issues/15 - - cryptohash-cryptoapi ^>= 0.1.4 - - cryptostore ^>= 0.3.0.1 - - css-text ^>= 0.1.3.0 - - csv ^>= 0.1.2 - - cubicbezier ^>= 0.6.0.7 - - data-binary-ieee754 ^>= 0.4.4 - - data-bword ^>= 0.1.0.2 - - data-checked ^>= 0.3 - - data-clist ^>= 0.2 - - data-default ^>= 0.7.1.1 - - data-default-class ^>= 0.1.2.0 - - data-default-instances-containers ^>= 0.0.1 - - data-default-instances-dlist ^>= 0.0.1 - - data-default-instances-old-locale ^>= 0.0.1 - - data-dword ^>= 0.3.2.1 - - data-endian ^>= 0.1.1 - - data-inttrie ^>= 0.1.4 - - data-lens-light ^>= 0.1.2.4 - - data-memocombinators ^>= 0.5.1 - - data-msgpack-types ^>= 0.0.3 - - data-serializer ^>= 0.3.5 - - data-textual ^>= 0.3.0.3 - - dec ^>= 0.0.5 - - deepseq-generics ^>= 0.2.0.0 - - dense-linear-algebra ^>= 0.1.0.0 - - dictionary-sharing ^>= 0.1.0.0 - - direct-sqlite ^>= 2.3.28 - - discount ^>= 0.1.1 - - distributed-process < 0 - - distributed-static ^>= 0.3.9 - - dlist ^>= 1.0 - - dlist-instances ^>= 0.1.1.1 - - dlist-nonempty ^>= 0.1.3 - - double-conversion ^>= 2.0.4.2 - - dual-tree ^>= 0.2.3.1 - - easy-file ^>= 0.2.5 - - easytest < 0 - - ed25519 ^>= 0.0.5.0 - - edit-distance ^>= 0.2.2.1 - - elliptic-curve < 0 - - elm-bridge ^>= 0.8.2 - - enclosed-exceptions ^>= 1.0.3 - - entropy ^>= 0.4.1.10 - - erf ^>= 2.0.0.0 - - errorcall-eq-instance ^>= 0.3.0 - - errors ^>= 2.3.0 - - expiring-cache-map ^>= 0.0.6.1 - - extensible ^>= 0.9 - - extensible-exceptions ^>= 0.1.1.4 - - fail ^>= 4.9.0.0 - - fast-logger ^>= 3.2.2 - - fast-math ^>= 1.0.2 - - fdo-notify ^>= 0.3.1 - - fib < 0 - - file-embed ^>= 0.0.15.0 - - file-embed-lzma ^>= 0.0.1 - - filemanip ^>= 0.3.6.3 - - fin ^>= 0.3 - - fingertree ^>= 0.1.5.0 - - fmlist ^>= 0.9.4 - - formatn ^>= 0.3.0.1 - - friendly-time ^>= 0.4.1 - - functor-classes-compat ^>= 2.0.0.2 - - functor-combinators < 0 # 0.4.1.2 compile fail https://github.com/mstksg/functor-combinators/issues/7 - - fuzzcheck ^>= 0.1.1 - - generic-arbitrary ^>= 1.0.1 - - generically ^>= 0.1.1 - - generics-sop-lens ^>= 0.2.0.1 - - ghc-byteorder ^>= 4.11.0.0.10 - - ghc-compact ^>= 0.1.0.0 - - ghc-events ^>= 0.19.0.1 - - ghc-paths ^>= 0.1.0.12 - - ghc-prof < 0 - - ghcjs-dom-jsaddle < 0 - - git-lfs ^>= 1.2.1 - - gitlib ^>= 3.1.3 - - gitlib-libgit2 < 0 # 3.1.2.1 compile fail - - groom ^>= 0.1.2.1 - - groups ^>= 0.5.3 - - gtk ^>= 0.15.8 - - haha ^>= 0.3.1.1 - - hamlet ^>= 1.2.0 - - harp < 0 - - hashable ^>= 1.4.3.0 - - haskell-gi-overloading ^>= 1.0 - - haskell-src-exts ^>= 1.23.1 - - haskell-src-exts-simple ^>= 1.23.0.0 - - haskell-tools-builtin-refactorings < 0 - - haskoin-store-data ^>= 1.2.2 - - hasql-dynamic-statements ^>= 0.3.1.2 - - hasql-implicits ^>= 0.1.1 - - haxl < 0 - - heap ^>= 1.0.4 - - here ^>= 1.2.14 - - hex ^>= 0.2.0 - - hjsonpointer < 0 - - hjsonschema < 0 - - hlibgit2 ^>= 0.18.0.16 - - hmatrix ^>= 0.20.2 - - hmatrix-gsl ^>= 0.19.0.1 - - hmatrix-special ^>= 0.19.0.0 - - hostname ^>= 1.0 - - hourglass ^>= 0.2.12 - - hsc2hs ^>= 0.68.10 - - hscolour ^>= 1.25 - - hse-cpp ^>= 0.2 - - hslogger ^>= 1.3.1.0 - - hsp < 0 # 0.10.0 ghc-9.6 - - hspec-attoparsec ^>= 0.1.0.2 - - hspec-contrib ^>= 0.5.2 - - hspec-expectations ^>= 0.8.4 - - hspec-expectations-lifted ^>= 0.10.0 - - hspec-meta ^>= 2.11.7 - - hspec-smallcheck ^>= 0.5.3 - - html ^>= 1.0.1.2 - - html-entities ^>= 1.1.4.6 - - http-client-restricted ^>= 0.1.0 - - http-client-tls ^>= 0.3.6.3 - - http-date ^>= 0.0.11 - - http-reverse-proxy ^>= 0.6.0.2 - - http-types ^>= 0.12.4 - - httpd-shed ^>= 0.4.1.1 - - hw-json-simd < 0 - - hw-string-parse ^>= 0.0.0.5 - - hxt ^>= 9.3.1.22 - - hxt-charproperties ^>= 9.5.0.0 - - hxt-http ^>= 9.1.5.2 - - hxt-regex-xmlschema ^>= 9.2.0.7 - - hxt-unicode ^>= 9.0.2.4 - - iconv ^>= 0.4.1.3 - - ieee754 ^>= 0.8.0 - - incremental ^>= 0.3.1 - - indexed ^>= 0.1.3 - - infer-license ^>= 0.2.0 - - insert-ordered-containers ^>= 0.2.5.3 - - inspection-testing ^>= 0.5.0.2 - - integer-conversion ^>= 0.1.0.1 - - integer-logarithms ^>= 1.0.3.1 - - interpolatedstring-perl6 ^>= 1.0.2 - - io-streams-haproxy ^>= 1.0.1.0 - - iproute ^>= 1.7.12 - - ixset-typed ^>= 0.5.1.0 - - jsaddle-dom < 0 - - json ^>= 0.11 - - json-alt < 0 - - jsonrpc-tinyclient < 0 - - kansas-comet ^>= 0.4.2 - - kleene ^>= 0.1 - - knob ^>= 0.2.2 - - language-haskell-extract < 0 - - largeword ^>= 1.2.5 - - lattices ^>= 2.2 - - lazy-csv ^>= 0.5.1 - - lazysmallcheck ^>= 0.6 - - leb128-cereal ^>= 1.2 - - libBF ^>= 0.6.7 - - libyaml ^>= 0.1.2 - - lifted-base ^>= 0.2.3.12 - - loch-th ^>= 0.2.2 - - lockfree-queue ^>= 0.2.4 - - log-base ^>= 0.12.0.1 - - logging-facade ^>= 0.3.1 - - lrucache ^>= 1.2.0.1 - - lukko ^>= 0.1.1.3 - - lz4 ^>= 0.2.3.1 - - lzma ^>= 0.0.1.0 - - lzma-clib ^>= 5.2.2 - - managed ^>= 1.0.10 - - markov-chain-usage-model ^>= 0.0.0 - - math-functions ^>= 0.3.4.3 - - membership ^>= 0.0.1 - - memcache ^>= 0.3.0.1 - - memory-hexstring < 0 - - mersenne-random ^>= 1.0.0.1 - - mersenne-random-pure64 ^>= 0.2.2.0 - - mfsolve ^>= 0.3.2.2 - - microstache ^>= 1.0.2.3 - - minisat-solver ^>= 0.1 - - missing-foreign ^>= 0.1.1 - - mmap ^>= 0.5.9 - - mmorph ^>= 1.2.0 - - mockery ^>= 0.3.5 - - monad-control ^>= 1.0.3.1 - - monad-extras ^>= 0.6.0 - - monad-interleave ^>= 0.2.0.1 - - monad-logger ^>= 0.3.40 - - monad-loops ^>= 0.4.3 - - monad-time ^>= 0.4.0.0 - - monadloc < 0 # 0.7.1 compile fail https://github.com/pepeiborra/monadloc/issues/4 - - monads-tf ^>= 0.3.0.1 - - mono-traversable-instances ^>= 0.1.1.0 - - mono-traversable-keys ^>= 0.3.0 - - mstate < 0 - - multimap ^>= 1.2.1 - - multiset ^>= 0.3.4.3 - - mwc-random ^>= 0.15.0.2 - - names-th ^>= 0.3.0.1 - - nanospec ^>= 0.2.2 - - nettle ^>= 0.3.0 - - network ^>= 3.1.4.0 - - network-bsd ^>= 2.8.1.0 - - network-byte-order ^>= 0.1.7 - - network-info ^>= 0.2.1 - - network-ip ^>= 0.3.0.3 - - network-multicast ^>= 0.3.2 - - network-run ^>= 0.2.6 - - network-transport ^>= 0.5.6 - - network-uri ^>= 2.6.4.2 && (<2.7.0.0 || >2.7.0.0) # 2.7.0.0 was deprecated, don't remove bound until >2.7.0.0 is released. - - next-ref < 0 - - nicify-lib ^>= 1.0.1 - - normaldistribution ^>= 1.1.0.3 - - nothunks ^>= 0.1.5 - - numhask-prelude < 0 - - old-locale ^>= 1.0.0.7 - - old-time ^>= 1.1.0.4 - - operational ^>= 0.2.4.2 - - optional-args ^>= 1.0.2 - - options ^>= 1.2.1.2 - - optparse-applicative ^>= 0.18.1.0 - - optparse-simple ^>= 0.1.1.4 - - parallel ^>= 3.2.2.0 - - parallel-io ^>= 0.3.5 - - path-pieces ^>= 0.2.1 - - pcg-random ^>= 0.1.4.0 - - peggy < 0 - - pipes-bytestring ^>= 2.1.7 - - pipes-group ^>= 1.0.12 - - placeholders ^>= 0.1 - - poll ^>= 0.0.0.2 - - portable-lines ^>= 0.1 - - posix-pty ^>= 0.2.2 - - postgresql-libpq ^>= 0.10.0.0 - - postgresql-simple ^>= 0.7.0.0 - - postgresql-simple-url ^>= 0.2.1.0 - - pretty-hex ^>= 1.1 - - pretty-show ^>= 1.10 - - prettyprinter-convert-ansi-wl-pprint < 0 # 1.1.2 # fails to compile (#7017) - - primes ^>= 0.2.1.0 - - primitive ^>= 0.8.0.0 && <0.9 # https://github.com/commercialhaskell/stackage/issues/7138 - - primitive-unaligned ^>= 0.1.1.2 - - process-extras ^>= 0.7.4 - - project-template ^>= 0.2.1.0 - - protobuf ^>= 0.2.1.3 && (<0.2.1.4 || >0.2.1.4) # deprecated version - - ptr ^>= 0.16.8.5 - - pureMD5 ^>= 2.1.4 - - quickcheck-instances ^>= 0.3.30 - - quickcheck-io ^>= 0.2.0 - - quickcheck-simple ^>= 0.1.1.1 - - quickcheck-unicode ^>= 1.0.1.0 - - quicklz ^>= 1.5.0.11 - - ral ^>= 0.2.1 # req'd by boring - - random ^>= 1.2.1.1 - - random-shuffle ^>= 0.0.4 - - range-set-list ^>= 0.1.3.1 - - rank1dynamic ^>= 0.4.1 - - ratio-int ^>= 0.1.2 - - raw-strings-qq ^>= 1.1 - - readable ^>= 0.3.1 - - readline < 0 # 1.0.3.0 setup fail - - recv ^>= 0.1.0 - - refinery < 0 # 0.4.0.0 # fails to compile (#7017) - - regex-applicative-text < 0 - - regex-tdfa-text < 0 - - relapse ^>= 1.0.0.1 - - relational-schemas ^>= 0.1.8.1 - - resource-pool ^>= 0.4.0.0 - - resourcet ^>= 1.3.0 - - rest-rewrite ^>= 0.4.2 - - rfc5051 ^>= 0.2 - - rio ^>= 0.1.22.0 - - rio-orphans ^>= 0.1.2.0 - - row-types ^>= 1.0.1.2 - - run-haskell-module ^>= 0.0.2 - - safe-exceptions-checked < 0 - - safecopy ^>= 0.10.4.2 - - sandi ^>= 0.5 - - scale < 0 - - scientific ^>= 0.3.7.0 - - securemem ^>= 0.1.10 - - selective ^>= 0.7 - - semialign ^>= 1.3 - - serialise ^>= 0.2.6.1 - - servant-client-core ^>= 0.20 - - servant-multipart-client ^>= 0.12.2 - - servant-swagger-ui ^>= 0.3.5.5.0.0 - - servant-swagger-ui-core ^>= 0.3.5 - - servant-swagger-ui-redoc ^>= 0.3.4.1.22.3 - - servant-yaml < 0 - - setenv ^>= 0.1.1.3 - - shakespeare ^>= 2.1.0.1 - - shakespeare-text ^>= 1.1.0 - - shell-escape ^>= 0.2.0 - - simple-reflect ^>= 0.3.3 - - simple-sendfile ^>= 0.2.32 - - singleton-bool ^>= 0.1.7 - - size-based ^>= 0.1.3.2 - - skein ^>= 1.0.9.4 - - snap-core ^>= 1.0.5.1 - - snappy < 0 - - some ^>= 1.0.6 - - spdx < 0 - - special-values ^>= 0.1.0.0 - - splice ^>= 0.6.1.1 - - split ^>= 0.2.4 - - splitmix ^>= 0.1.0.5 - - sql-words ^>= 0.1.6.5 - - stateref ^>= 0.3 - - static-canvas ^>= 0.2.0.3 - - statistics ^>= 0.16.2.1 - - step-function ^>= 0.2.0.1 - - stm-delay ^>= 0.1.1.1 - - storable-complex ^>= 0.2.3.0 - - streaming-cassava < 0 - - streaming-wai ^>= 0.1.1 - - strict ^>= 0.5 - - strict-lens ^>= 0.4.0.3 - - strict-list ^>= 0.1.7.4 - - string-qq ^>= 0.0.5 - - string-variants < 0 - - stringable ^>= 0.1.3 - - stringbuilder ^>= 0.5.1 - - structured ^>= 0.1.1 - - sundown ^>= 0.6 - - syb ^>= 0.7.2.4 - - system-fileio ^>= 0.3.16.4 - - system-filepath ^>= 0.4.14 - - tabular ^>= 0.2.2.8 - - tar ^>= 0.5.1.1 && <0.6 # https://github.com/commercialhaskell/stackage/issues/7202 - - tasty-lua ^>= 1.1.0 - - tasty-th ^>= 0.1.7 - - tdigest ^>= 0.3 - - telegram-bot-api < 0 - - template ^>= 0.2.0.10 - - template-haskell-compat-v0208 ^>= 0.1.9.3 - - temporary ^>= 1.3 - - temporary-rc ^>= 1.2.0.3 - - temporary-resourcet ^>= 0.1.0.1 - - test-framework-hunit ^>= 0.3.0.2 - - test-framework-quickcheck2 ^>= 0.3.0.5 - - test-framework-smallcheck ^>= 0.2 - - test-framework-th < 0 - - testing-feat ^>= 1.1.1.1 - - testing-type-modifiers ^>= 0.1.0.1 - - text-binary ^>= 0.2.1.1 - - text-iso8601 ^>= 0.1 - - text-latin1 ^>= 0.3.1 - - text-postgresql ^>= 0.0.3.1 - - text-printer ^>= 0.5.0.2 - - text-short ^>= 0.1.5 - - text-zipper ^>= 0.13 - - tf-random ^>= 0.5 - - th-extras ^>= 0.0.0.7 - - th-lift-instances ^>= 0.1.20 - - th-utilities ^>= 0.2.5.0 - - these ^>= 1.2 - - these-lens ^>= 1.0.1.3 - - these-optics ^>= 1.0.1.2 - - threads ^>= 0.5.1.8 - - threads-extras ^>= 0.1.0.3 - - thyme ^>= 0.4 - - time-locale-compat ^>= 0.1.1.5 - - time-parsers ^>= 0.2 - - timeit ^>= 2.0 - - tls-session-manager ^>= 0.0.4 - - token-bucket ^>= 0.1.0.1 - - tonatona < 0 - - torrent ^>= 10000.1.3 - - transformers-base ^>= 0.4.6 - - tree-diff ^>= 0.3.0.1 - - trivial-constraint ^>= 0.7.0.0 - - true-name < 0 - - tuple-th ^>= 0.2.5 - - type-fun ^>= 0.1.3 - - type-hint ^>= 0.1 - - uglymemo ^>= 0.1.0.1 - - unbounded-delays ^>= 0.1.1.1 - - unfoldable < 0 - - unicode-collation ^>= 0.1.3.5 - - universe ^>= 1.2.2 - - universe-base ^>= 1.1.3.1 - - universe-dependent-sum ^>= 1.3 - - universe-instances-base < 0 - - universe-instances-extended ^>= 1.1.3 - - universe-instances-trans < 0 - - universe-reverse-instances ^>= 1.1.1 - - universe-some ^>= 1.2.1 - - unix-time ^>= 0.4.11 - - url ^>= 2.1.3 - - utf8-light ^>= 0.4.4.0 - - utf8-string ^>= 1.0.2 - - uuid-types ^>= 1.0.5.1 - - validationt < 0 # 0.3.0 # fails to compile (#7017) - - vault ^>= 0.3.1.5 - - vec ^>= 0.5 - - vector ^>= 0.13.1.0 - - vector-algorithms ^>= 0.9.0.1 - - vector-space ^>= 0.16 - - vector-th-unbox ^>= 0.2.2 - - verset ^>= 0.0.1.8 - - vty ^>= 6.1 - - vty-crossplatform ^>= 0.4.0.0 - - vty-unix ^>= 0.2.0.0 - - wai ^>= 3.2.4 - - wai-app-static ^>= 3.1.8 - - wai-conduit ^>= 3.0.0.4 - - wai-eventsource ^>= 3.0.0 - - wai-handler-launch ^>= 3.0.3.1 - - wai-logger ^>= 2.4.0 - - wai-session ^>= 0.3.3 - - warp ^>= 3.3.31 - - wcwidth ^>= 0.0.2 - - web3-bignum < 0 - - web3-crypto < 0 - - web3-ethereum < 0 - - web3-polkadot < 0 - - web3-provider < 0 - - web3-solidity < 0 - - with-location ^>= 0.1.0 - - wizards ^>= 1.0.3 - - word-wrap ^>= 0.5 - - word8 ^>= 0.1.3 - - x509 ^>= 1.7.7 - - x509-store ^>= 1.6.9 - - x509-system ^>= 1.6.7 - - x509-validation ^>= 1.6.12 - - xml ^>= 1.3.14 - - xml-conduit ^>= 1.9.1.3 - - xml-conduit-writer < 0 # 0.1.1.4 # fails to compile (#7017) - - xml-hamlet ^>= 0.5.0.2 - - xml-types ^>= 0.3.8 - - xss-sanitize ^>= 0.3.7.2 - - yeshql-core ^>= 4.2.0.0 - - yeshql-hdbc < 0 - - yesod-core ^>= 1.6.25.1 - - yesod-form ^>= 1.7.6 - - yesod-persistent ^>= 1.6.0.8 - - zlib ^>= 0.6.3.0 - - zlib-bindings ^>= 0.1.1.5 - - # If you stop maintaining a package (either just on stackage, or - # completely), you can move it here. It will be disabled if it - # starts causing problems. - # - # See #1056/closed - # - # When disabling one of these packages, move it to "Removed packages". - "Abandoned packages": - - cheapskate-highlight < 0 - - cheapskate-lucid < 0 - - cmark-lucid ^>= 0.1.0.0 - - cmark-highlight < 0 - - Spock-lucid < 0 - - charsetdetect-ae ^>= 1.1.0.4 - - text-all < 0 - - Earley ^>= 0.13.0.1 - - bower-json < 0 - - boxes ^>= 0.1.5 - - charsetdetect-ae ^>= 1.1.0.4 # #6326/closed - - coercible-utils < 0 # #6271 - - compiler-warnings ^>= 0.1.0 # #6326/closed - - curl ^>= 1.3.8 - - docopt < 0 # #6326/closed - - dynamic-state ^>= 0.3.1 # #6326/closed - - first-class-patterns < 0 # #5965/closed - - ghc-trace-events ^>= 0.1.2.7 # #6326/closed - - hashing ^>= 0.1.1.0 # #6271 - - hnix-store-core ^>= 0.7.0.0 # #6271 - - ilist ^>= 0.4.0.1 # #5965/closed - - io-storage ^>= 0.3 # #6326/closed - - monadlist ^>= 0.0.2 # #6271 - - non-empty-sequence ^>= 0.2.0.4 - - numeric-limits ^>= 0.1.0.0 # #6326/closed - - oo-prototypes ^>= 0.1.0.0 # #6326/closed - - opentelemetry ^>= 0.8.0 # #6326/closed - - opentelemetry-extra ^>= 0.8.0 # #6326/closed - - opentelemetry-lightstep ^>= 0.8.0 # #6326/closed - - opentelemetry-wai ^>= 0.8.0 # #6326/closed - - path ^>= 0.9.5 # #6271 - - pattern-arrows < 0 - - planb-token-introspection < 0 # #6326/closed - - pointedlist ^>= 0.6.1 # #6326/closed - - relude ^>= 1.2.1.0 # #5965/closed - - shellmet ^>= 0.0.4.1 # #5965/closed - - slist ^>= 0.2.1.0 # #5965/closed - - syb-with-class < 0 - - type-errors-pretty < 0 # #5965/closed - - unordered-intmap < 0 # #6326/closed - - word-trie ^>= 0.3.0 # #6326/closed - - xdg-basedir ^>= 0.2.2 # #6326/closed - - yi-rope ^>= 0.11 # #6326/closed - - # Packages without maintainers that cause issues, - # this is to prevent us from including them by accident. They can - # be removed from this list if they are fixed. - "Unmaintained packages with compilation failures": [] - - # If you want to make sure a package is removed from stackage, - # place it here with a `< 0` constraint and send a pull - # request. This will tell us if other packages would be - # affected. Packages will be kept in this list indefinitely so - # that new packages depending on it will be flagged as well. - "Removed packages": - - 2captcha < 0 # 0.1.0.0 deprecated - - Unique < 0 # 0.4.7.9 removed - - cli < 0 # 0.2.0 removed - - fingertree-psqueue < 0 # 0.3 compile fail - - hastache < 0 # 0.6.1 bounds - - heart-core < 0 # 0.3.2 compile fail, deprecated - - hnix < 0 # 0.17.0 #6271/closed - - json-builder < 0 # 0.3 bounds - - lens-labels < 0 # 0.3.0.1 bounds, deprecated #4358/closed - - membrain < 0 # 0.0.0.2 bounds #5965/closed - - preprocessor-tools < 0 # 2.0.2 - - present < 0 # 4.1.0 compile fail #6271 - - prim-array < 0 # 0.2.2 bounds - - proto-lens-combinators < 0 # 0.4.0.1 deprecated https://github.com/commercialhaskell/stackage/pull/4358 - - shortcut-links < 0 # 0.5.1.1 #5965/closed - - tinytemplate < 0 # 0.1.2.0 compile fail - - tomland < 0 # 1.3.3.2 #5965/closed - - type-combinators < 0 # 0.2.4.3 compile fail https://github.com/kylcarte/type-combinators/issues/8 - - typerep-map < 0 # 0.6.0.0 internal library #5965/closed - - universe-instances-base < 0 # 1.1 deprecated - - universe-instances-trans < 0 # 1.1 deprecated - - validation-selective < 0 # 0.2.0.0 #5965/closed - - wai-route < 0 # 1.0.0 compile fail - - xxhash < 0 # 0.0.2 compile fail - - # Section for packages that have been mass-disabled due to - # compilation failures, e.g. after we upgrade GHC. Every package - # should have a `< 0` constraint. - # - # These constraints can (should?) be moved under the maintainers - # name, but please add a "compile fail" comment to them there so - # it's clear that they must be built if we want to confirm that - # they are working. - "Compilation failures": - - BiobaseBlast < 0 # 0.3.3.0 compile fail aeson 2.0 - - Fin < 0 # 0.2.9.0 `@' not in scope - - HDBC-mysql < 0 # 0.7.1.0 - - Taxonomy < 0 # 2.2.0 compile fail aeson 2.0 - - Workflow < 0 # 0.8.3 - - accuerr < 0 # 0.2.0.2 - - aeson-lens < 0 # 0.5.0.0 - - aeson-with < 0 # 0.1.2.0 compile fail aeson 2.0 - - auto < 0 # 0.4.3.1 - - binary-ext < 0 # 2.0.4 - - bins < 0 # 0.1.2.0 - - bitcoin-script < 0 # 0.11.1 - - boolean-like < 0 # 0.1.1.0 - - cabal-toolkit < 0 # 0.0.7 - - capataz < 0 # 0.2.1.0 - - chaselev-deque < 0 # 0.5.0.5 - - cipher-des < 0 # 0.0.6 - - coercible-utils < 0 # 0.1.0 - - composable-associations-aeson < 0 # 0.1.0.1 compile fail aeson 2.0 - - courier < 0 # 0.1.1.5 - - crypto-numbers < 0 # 0.2.7 - - cuckoo-filter < 0 # 0.2.0.2 benchmarks are an exe - - data-default-instances-new-base < 0 # 0.0.2 - - descriptive < 0 # 0.9.5 compile fail aeson 2.0 - - djinn-ghc < 0 # 0.0.2.3 - - drinkery < 0 # 0.4 - - elm-export-persistent < 0 # 1.0.0 compile fail aeson 2.0 - - etc < 0 # 0.4.1.0 compile fail aeson 2.0 - - etcd < 0 # 1.0.5 - - eve < 0 # 0.1.9.0 - - eventsource-api < 0 # 1.5.1 compile fail aeson 2.0 - - eventsource-store-specs < 0 # 1.2.1 - - farmhash < 0 # 0.1.0.5 - - ftp-client-conduit < 0 # 0.5.0.5 - - ghcjs-base-stub < 0 # 0.3.0.2 compile fail aeson 2.0 - - giphy-api < 0 # 0.7.0.0 https://github.com/passy/giphy-api/pull/19 - - gluturtle < 0 # 0.0.58.1 - - groundhog < 0 # 0.12.0 - - haskell-awk < 0 # 1.2.0.1 - - haskell-import-graph < 0 # 1.0.4 - - haskell-spacegoo < 0 # 0.2.0.1 - - hbeanstalk < 0 # 0.2.4 - - hexstring < 0 # 0.11.1 - - highjson < 0 # 0.5.0.0 compile fail aeson 2.0 - - hs-functors < 0 # 0.1.7.1 - - hschema < 0 # 0.0.1.1 - - hsebaysdk < 0 # 0.4.1.0 compile fail aeson 2.0 - - hstatsd < 0 # 0.1 - - interpolator < 0 # 1.1.0.2 - - io-choice < 0 # 0.0.7 - - json-rpc-generic < 0 # 0.2.1.6 compile fail aeson 2.0 - - katydid < 0 # 0.4.0.2 MonadFail - - kawhi < 0 # 0.3.0 compile fail aeson 2.0 - - lens-typelevel < 0 # 0.1.1.0 - - llvm-hs < 0 # 9.0.1 llvm-config - - llvm-hs-pretty < 0 # 0.9.0.0 - - machines-binary < 0 # 7.0.0.0 - - machines-io < 0 # 7.0.0.0 - - marvin-interpolate < 0 # 1.1.2 - - mltool < 0 # 0.2.0.1 - - moesocks < 0 # 1.0.1.0 - - monad-recorder < 0 # 0.1.1 - - monad-unlift < 0 # 0.2.0 - - murmur < 0 # 0.0.0.2 - - n2o-protocols < 0 # 0.11.2 - - nri-prelude < 0 # 0.6.0.6 compile fail aeson 2.0 - - odbc < 0 # 0.2.6 odbc - - pdfinfo < 0 # 1.5.4 - - pencil < 0 # 1.0.1 - - pipes-aeson < 0 # 0.4.1.8 - - pipes-network < 0 # 0.6.5 - - pkcs10 < 0 # 0.2.0.0 - - planb-token-introspection < 0 # 0.1.4.0 - - postgresql-orm < 0 # 0.5.1 - - postgresql-transactional < 0 # 1.1.1 - - protocol-buffers < 0 # 2.4.17 - - pushbullet-types < 0 # 0.4.1.0 compile fail aeson 2.0 - - raaz < 0 # 0.3.8 multiple libraries - - record-wrangler < 0 # 0.1.1.0 - - regex-compat-tdfa < 0 # 0.95.1.4 - - rescue < 0 # 0.4.2.1 - - rigel-viz < 0 # 0.2.0.0 compile fail aeson 2.0 - - rose-trees < 0 # 0.0.4.5 compilation seems to hang? - - servant-cli < 0 # 0.1.0.2 compile fail aeson 2.0 - - servant-github-webhook < 0 # 0.4.2.0 compile fail aeson 2.0 - - servant-tracing < 0 # 0.2.0.0 compile fail aeson 2.0 - - sessiontypes < 0 # 0.1.2 - - simplistic-generics < 0 # 2.0.0 - - slack-api < 0 # 0.12 - - snappy < 0 # 0.2.0.2 - - stm-stats < 0 # 0.2.0.0 - - sum-type-boilerplate < 0 # 0.1.1 - - swagger < 0 # 0.3.0 compile fail aeson 2.0 - - template-toolkit < 0 # 0.1.1.0 compile fail aeson 2.0 - - text-region < 0 # 0.3.1.0 - - throttle-io-stream < 0 # 0.2.0.1 - - throwable-exceptions < 0 # 0.1.0.9 - - time-qq < 0 # 0.0.1.0 - - timemap < 0 # 0.0.7 https://github.com/athanclark/timemap/issues/1 - - tintin < 0 # 1.10.1 - - tinylog < 0 # 0.15.0 - - turtle-options < 0 # 0.1.0.4 - - type-assertions < 0 # 0.1.0.0 - - uncertain < 0 # 0.3.1.0 - - unordered-intmap < 0 # 0.1.1 - - users-persistent < 0 # 0.5.0.2 - - wai-predicates < 0 # 1.0.0 - - webex-teams-pipes < 0 # 0.2.0.1 - - websockets-rpc < 0 # 0.7.0 - - word24 < 0 # 2.0.1 - - xls < 0 # 0.1.3 gcc failed - - xml-conduit-parse < 0 # 0.3.1.2 - - xml-to-json < 0 # 2.0.1 compile fail aeson 2.0 - - xturtle < 0 # 0.2.0.0 xft - - yeshql-hdbc < 0 # 4.2.0.0 - - - # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. - # - # This section is meant for libraries and executables that have - # been disabled due to bounds issues, there is a separate section - # for compilation failures as we need to build those packages to - # verify if they have been fixeq. - "Library and exe bounds failures": - - BiobaseENA < 0 # tried BiobaseENA-0.0.0.2, but its *library* requires the disabled package: BiobaseTypes - - BiobaseFasta < 0 # tried BiobaseFasta-0.4.0.1, but its *library* requires the disabled package: BiobaseTypes - - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* requires network < =2.8.0.0 and the snapshot contains network-3.1.4.0 - - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* requires the disabled package: Taxonomy - - BiobaseTypes < 0 # tried BiobaseTypes-0.2.1.0, but its *library* requires the disabled package: PrimitiveArray - - BiobaseXNA < 0 # tried BiobaseXNA-0.11.1.1, but its *library* requires the disabled package: PrimitiveArray - - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* requires network ==2.8.0.0 and the snapshot contains network-3.1.4.0 - - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* requires the disabled package: BiobaseBlast - - ConfigFile < 0 # tried ConfigFile-1.1.4, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: Taxonomy - - FPretty < 0 # tried FPretty-1.1, but its *library* requires base >=4.5 && < 4.11 and the snapshot contains base-4.18.1.0 - - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires hashtables >=1.2 && < 1.3 and the snapshot contains hashtables-1.3.1 - - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires linear >=1.18 && < 1.21 and the snapshot contains linear-1.22 - - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - Genbank < 0 # tried Genbank-1.0.3, but its *library* requires the disabled package: biocore - - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.3.4.4, but its *library* requires the disabled package: connection - - Hoed < 0 # tried Hoed-0.5.1, but its *library* requires the disabled package: regex-tdfa-text - - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *executable* requires fast-logger >=2.4.8 && < 3.1 and the snapshot contains fast-logger-3.2.2 - - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *executable* requires optparse-applicative >=0.12.1.0 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 - - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *executable* requires wai-logger >=2.2.7 && < 2.4 and the snapshot contains wai-logger-2.4.0 - - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *library* requires aeson ==2.0.* and the snapshot contains aeson-2.1.2.1 - - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - IPv6DB < 0 # tried IPv6DB-0.3.3, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires attoparsec >=0.12 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires text-show >=3.7 && < 3.9 and the snapshot contains text-show-3.10.4 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *executable* requires optparse-applicative >=0.14.3 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: TCache - - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: Workflow - - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: monadloc - - MapWith < 0 # tried MapWith-0.2.0.0, but its *library* requires base >=4.9.1 && < 4.15 and the snapshot contains base-4.18.1.0 - - NanoID < 0 # tried NanoID-3.4.0, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - Network-NineP < 0 # tried Network-NineP-0.4.7.3, but its *library* requires the disabled package: mstate - - NoTrace < 0 # tried NoTrace-0.3.0.4, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires BiobaseFasta ==0.3.0.* and the snapshot contains BiobaseFasta-0.4.0.1 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires BiobaseHTTP ==1.1.0 and the snapshot contains BiobaseHTTP-1.2.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires BiobaseTypes ==0.2.0.* and the snapshot contains BiobaseTypes-0.2.1.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires aeson < =1.4.2.0 and the snapshot contains aeson-2.1.2.1 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires network < =2.8.0.0 and the snapshot contains network-3.1.4.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: BiobaseBlast - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: Taxonomy - - Spintax < 0 # tried Spintax-0.3.6, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - Spintax < 0 # tried Spintax-0.3.6, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core - - Spock-api-server < 0 # tried Spock-api-server-0.14.0.0, but its *library* requires the disabled package: Spock-core - - Spock-lucid < 0 # tried Spock-lucid-0.4.0.1, but its *library* requires the disabled package: Spock - - Spock-worker < 0 # tried Spock-worker-0.3.1.0, but its *library* requires the disabled package: Spock - - Strafunski-StrategyLib < 0 # tried Strafunski-StrategyLib-5.0.1.0, but its *library* requires base >4.4 && < 4.14 and the snapshot contains base-4.18.1.0 - - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 - - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* requires lens >=4.16 && < 4.20 and the snapshot contains lens-5.2.3 - - TypeCompose < 0 # tried TypeCompose-0.9.14, but its *library* requires base >=4.9 && < 4.16 and the snapshot contains base-4.18.1.0 - - accelerate < 0 # tried accelerate-1.3.0.0, but its *library* requires base >=4.12 && < 4.15 and the snapshot contains base-4.18.1.0 - - accelerate-arithmetic < 0 # tried accelerate-arithmetic-1.0.0.1, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 - - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate - - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm - - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native - - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx - - accelerate-bignum < 0 # tried accelerate-bignum-0.3.0.0, but its *library* requires the disabled package: llvm-hs-pure - - accelerate-blas < 0 # tried accelerate-blas-0.3.0.0, but its *library* requires the disabled package: cublas - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: accelerate-fft - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: lens-accelerate - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: linear-accelerate - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: repa - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *executable* requires the disabled package: repa-io - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *library* requires the disabled package: accelerate - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-native - - accelerate-examples < 0 # tried accelerate-examples-1.3.0.0, but its *library* requires the disabled package: accelerate-llvm-ptx - - accelerate-fft < 0 # tried accelerate-fft-1.3.0.0, but its *library* requires the disabled package: cufft - - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 - - accelerate-fftw < 0 # tried accelerate-fftw-1.0.0.1, but its *library* requires accelerate-io >=1.0 && < 1.1 and the snapshot contains accelerate-io-1.3.0.0 - - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 - - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 - - accelerate-fourier < 0 # tried accelerate-fourier-1.0.0.5, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - accelerate-io < 0 # tried accelerate-io-1.3.0.0, but its *library* requires the disabled package: accelerate - - accelerate-io-bmp < 0 # tried accelerate-io-bmp-0.1.0.0, but its *library* requires the disabled package: accelerate - - accelerate-io-bytestring < 0 # tried accelerate-io-bytestring-0.1.0.0, but its *library* requires the disabled package: accelerate - - accelerate-io-repa < 0 # tried accelerate-io-repa-0.1.0.0, but its *library* requires the disabled package: accelerate - - accelerate-io-repa < 0 # tried accelerate-io-repa-0.1.0.0, but its *library* requires the disabled package: repa - - accelerate-io-vector < 0 # tried accelerate-io-vector-0.1.0.0, but its *library* requires the disabled package: accelerate - - accelerate-llvm < 0 # tried accelerate-llvm-1.3.0.0, but its *library* requires the disabled package: llvm-hs - - accelerate-llvm-native < 0 # tried accelerate-llvm-native-1.3.0.0, but its *library* requires libffi >=0.1 && < 0.2 and the snapshot contains libffi-0.2.1 - - accelerate-llvm-native < 0 # tried accelerate-llvm-native-1.3.0.0, but its *library* requires the disabled package: llvm-hs - - accelerate-llvm-ptx < 0 # tried accelerate-llvm-ptx-1.3.0.0, but its *library* requires the disabled package: llvm-hs - - accelerate-utility < 0 # tried accelerate-utility-1.0.0.1, but its *library* requires accelerate >=1.0 && < 1.2 and the snapshot contains accelerate-1.3.0.0 - - aeson-better-errors < 0 # tried aeson-better-errors-0.9.1.1, but its *library* requires aeson >=0.7 && < 1.6 || >=2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - aeson-better-errors < 0 # tried aeson-better-errors-0.9.1.1, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - aeson-commit < 0 # tried aeson-commit-1.6.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - aeson-default < 0 # tried aeson-default-0.9.1.0, but its *library* requires aeson >=1.2 && < 2 and the snapshot contains aeson-2.1.2.1 - - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires base >=4.7 && < 4.17 and the snapshot contains base-4.18.1.0 - - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires lens >=4.13 && < 5.2 and the snapshot contains lens-5.2.3 - - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires servant-docs >=0.7 && < 0.13 and the snapshot contains servant-docs-0.13 - - airship < 0 # tried airship-0.9.5, but its *library* requires mime-types >=0.1.0 && < 0.1.1 and the snapshot contains mime-types-0.1.2.0 - - airship < 0 # tried airship-0.9.5, but its *library* requires unix >=2.7 && < 2.8 and the snapshot contains unix-2.8.1.0 - - al < 0 # tried al-0.1.4.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - alerts < 0 # tried alerts-0.1.2.0, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.0.2 - - alg < 0 # tried alg-0.2.13.1, but its *library* requires base >=4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - alg < 0 # tried alg-0.2.13.1, but its *library* requires the disabled package: dual - - alg < 0 # tried alg-0.2.13.1, but its *library* requires the disabled package: util - - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* requires ansi-terminal >=0.6 && < 0.9 and the snapshot contains ansi-terminal-1.0 - - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* requires base >=4.6 && < 4.13 and the snapshot contains base-4.18.1.0 - - antiope-dynamodb < 0 # tried antiope-dynamodb-7.5.3, but its *library* requires the disabled package: antiope-core - - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: antiope-core - - antiope-s3 < 0 # tried antiope-s3-7.5.3, but its *library* requires the disabled package: antiope-messages - - app-settings < 0 # tried app-settings-0.2.0.12, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires lens >=4.16 && < 5 and the snapshot contains lens-5.2.3 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires optparse-applicative >=0.14 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires postgresql-simple >=0.5 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - arbtt < 0 # tried arbtt-0.12.0.3, but its *executable* requires the disabled package: bytestring-progress - - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires haskell-src-exts >=1.22.0 && < 1.23 and the snapshot contains haskell-src-exts-1.23.1 - - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires template-haskell >=2.14.0 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires transformers >=0.5.6 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - asciidiagram < 0 # tried asciidiagram-1.3.3.3, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - asciidiagram < 0 # tried asciidiagram-1.3.3.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - async-timer < 0 # tried async-timer-0.2.0.0, but its *library* requires unliftio-core >=0.1.1.0 && < 0.2 and the snapshot contains unliftio-core-0.2.1.0 - - aur < 0 # tried aur-7.0.7, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - aura < 0 # tried aura-3.2.9, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - aura < 0 # tried aura-3.2.9, but its *library* requires aeson ^>=2.0 and the snapshot contains aeson-2.1.2.1 - - aura < 0 # tried aura-3.2.9, but its *library* requires algebraic-graphs >=0.1 && < 0.7 and the snapshot contains algebraic-graphs-0.7 - - aura < 0 # tried aura-3.2.9, but its *library* requires time >=1.8 && < 1.12 and the snapshot contains time-1.12.2 - - aura < 0 # tried aura-3.2.9, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.0 - - aura < 0 # tried aura-3.2.9, but its *library* requires unix ^>=2.7.2.2 and the snapshot contains unix-2.8.1.0 - - aura < 0 # tried aura-3.2.9, but its *library* requires versions ^>=5 and the snapshot contains versions-6.0.3 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires MonadRandom >=0.4.2.3 && < 0.6 and the snapshot contains MonadRandom-0.6 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires aeson >=1.1.2.1 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires attoparsec >=0.13.1.0 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires base >=4.9.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires cryptonite >=0.21 && < 0.29 and the snapshot contains cryptonite-0.30 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires memory >=0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires resource-pool >=0.2.3.2 && < 0.3 and the snapshot contains resource-pool-0.4.0.0 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires template-haskell >=2.11.0.0 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires time >=1.6.0.1 && < 1.10 and the snapshot contains time-1.12.2 - - avers < 0 # tried avers-0.0.17.1, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - avers-api < 0 # tried avers-api-0.1.0, but its *library* requires the disabled package: avers - - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: avers - - avwx < 0 # tried avwx-0.3.0.3, but its *library* requires lens >=4.1 && < 5 and the snapshot contains lens-5.2.3 - - avwx < 0 # tried avwx-0.3.0.3, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - aws-lambda-haskell-runtime < 0 # tried aws-lambda-haskell-runtime-4.1.2, but its *library* requires the disabled package: safe-exceptions-checked - - aws-lambda-haskell-runtime-wai < 0 # tried aws-lambda-haskell-runtime-wai-2.0.2, but its *library* requires the disabled package: aws-lambda-haskell-runtime - - axel < 0 # tried axel-0.0.12, but its *library* requires base >=4.12 && < 4.13 and the snapshot contains base-4.18.1.0 - - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient - - b9 < 0 # tried b9-3.2.3, but its *library* requires aeson ==1.4.* and the snapshot contains aeson-2.1.2.1 - - b9 < 0 # tried b9-3.2.3, but its *library* requires hspec ==2.7.* and the snapshot contains hspec-2.11.7 - - b9 < 0 # tried b9-3.2.3, but its *library* requires lens ==4.* and the snapshot contains lens-5.2.3 - - b9 < 0 # tried b9-3.2.3, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - base-noprelude < 0 # tried base-noprelude-4.13.0.0, but its *library* requires base ==4.13.0.0 and the snapshot contains base-4.18.1.0 - - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires base16 ^>=0.3 and the snapshot contains base16-1.0 - - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.11.5.2 - - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires lens >=4 && < 5.1 and the snapshot contains lens-5.2.3 - - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires base32 ^>=0.2 and the snapshot contains base32-0.4 - - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.11.5.2 - - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.2.3 - - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires base >=4.14 && < 4.17 and the snapshot contains base-4.18.1.0 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.11.5.2 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.2.3 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - beam-migrate < 0 # tried beam-migrate-0.5.2.1, but its *library* requires pqueue >=1.3 && < 1.5 and the snapshot contains pqueue-1.5.0.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires aeson >=0.11 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires beam-core >=0.8 && < 0.9 and the snapshot contains beam-core-0.10.1.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires free >=4.12 && < 5.2 and the snapshot contains free-5.2 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires hashable >=1.1 && < 1.3 and the snapshot contains hashable-1.4.3.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires mysql >=0.1 && < 0.2 and the snapshot contains mysql-0.2.1 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* requires time >=1.6 && < 1.10 and the snapshot contains time-1.12.2 - - beam-postgres < 0 # tried beam-postgres-0.5.3.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - beam-postgres < 0 # tried beam-postgres-0.5.3.1, but its *library* requires postgresql-libpq >=0.8 && < 0.10 and the snapshot contains postgresql-libpq-0.10.0.0 - - beam-postgres < 0 # tried beam-postgres-0.5.3.1, but its *library* requires postgresql-simple >=0.5 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 - - beam-sqlite < 0 # tried beam-sqlite-0.5.3.0, but its *library* requires the disabled package: beam-migrate - - bench < 0 # tried bench-1.0.12, but its *executable* requires optparse-applicative >=0.14.0.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - bench-show < 0 # tried bench-show-0.3.2, but its *executable* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 - - bench-show < 0 # tried bench-show-0.3.2, but its *executable* requires optparse-applicative >=0.14.2 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - bench-show < 0 # tried bench-show-0.3.2, but its *library* requires ansi-wl-pprint >=0.6 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - bench-show < 0 # tried bench-show-0.3.2, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - bhoogle < 0 # tried bhoogle-0.1.4.2, but its *executable* requires the disabled package: hoogle - - binary-bits < 0 # tried binary-bits-0.5, but its *library* requires base >=4 && < 4.13 and the snapshot contains base-4.18.1.0 - - binary-parsers < 0 # tried binary-parsers-0.2.4.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - bioace < 0 # tried bioace-0.0.1, but its *library* requires the disabled package: biocore - - bioalign < 0 # tried bioalign-0.0.5, but its *library* requires the disabled package: biocore - - biocore < 0 # tried biocore-0.3.1, but its *library* requires base >=3 && < 4.11 and the snapshot contains base-4.18.1.0 - - biofasta < 0 # tried biofasta-0.0.3, but its *library* requires the disabled package: biocore - - biofastq < 0 # tried biofastq-0.1, but its *library* requires the disabled package: biocore - - biopsl < 0 # tried biopsl-0.4, but its *library* requires the disabled package: biocore - - bitcoin-api < 0 # tried bitcoin-api-0.12.1, but its *library* requires the disabled package: bitcoin-script - - bitcoin-api < 0 # tried bitcoin-api-0.12.1, but its *library* requires the disabled package: hexstring - - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-api - - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-block - - bitcoin-api-extra < 0 # tried bitcoin-api-extra-0.9.1, but its *library* requires the disabled package: bitcoin-tx - - bitcoin-block < 0 # tried bitcoin-block-0.13.1, but its *library* requires the disabled package: hexstring - - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: bitcoin-script - - bitcoin-tx < 0 # tried bitcoin-tx-0.13.1, but its *library* requires the disabled package: hexstring - - bitcoin-types < 0 # tried bitcoin-types-0.9.2, but its *library* requires the disabled package: hexstring - - bits-extra < 0 # tried bits-extra-0.0.2.3, but its *library* requires ghc-prim >=0.5 && < 0.10 and the snapshot contains ghc-prim-0.10.0 - - blastxml < 0 # tried blastxml-0.3.2, but its *library* requires the disabled package: biocore - - bookkeeping < 0 # tried bookkeeping-0.4.0.1, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* requires base >=4.6 && < 4.14 and the snapshot contains base-4.18.1.0 - - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* requires cond >=0.4.1 && < 0.5 and the snapshot contains cond-0.5.1 - - boots < 0 # tried boots-0.2.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - both < 0 # tried both-0.1.1.2, but its *library* requires the disabled package: zero - - bower-json < 0 # tried bower-json-1.1.0.0, but its *library* requires the disabled package: aeson-better-errors - - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires box ^>=0.8 and the snapshot contains box-0.9.2.1 - - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires time ^>=1.9 and the snapshot contains time-1.12.2 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires aeson ^>=2.0.1 and the snapshot contains aeson-2.1.2.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires base ^>=4.15.0 and the snapshot contains base-4.18.1.0 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires bytestring ^>=0.10.12 and the snapshot contains bytestring-0.11.5.2 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc ^>=9.0.1 and the snapshot contains ghc-9.6.3 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-boot ^>=9.0.1 and the snapshot contains ghc-boot-9.6.3 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-boot-th ^>=9.0.1 and the snapshot contains ghc-boot-th-9.6.3 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-exactprint ^>=0.6.4 and the snapshot contains ghc-exactprint-1.7.0.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires mtl ^>=2.2.2 and the snapshot contains mtl-2.3.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires semigroups ^>=0.19.2 and the snapshot contains semigroups-0.20 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires strict ^>=0.4.0 and the snapshot contains strict-0.5 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires text ^>=1.2.5 and the snapshot contains text-2.0.2 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires transformers ^>=0.5.6 and the snapshot contains transformers-0.6.1.0 - - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: regex-tdfa-text - - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: elliptic-curve - - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: galois-field - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires bifunctors < 5.6 and the snapshot contains bifunctors-5.6.1 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires free < 5.2 and the snapshot contains free-5.2 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 - - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires aeson >=1.5.5.1 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 - - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires wuss >=1.1.18 && < 1.2 and the snapshot contains wuss-2.0.1.5 - - bytestring-progress < 0 # tried bytestring-progress-1.4, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - cabal-flatpak < 0 # tried cabal-flatpak-0.1.0.4, but its *executable* requires optparse-applicative >=0.11 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires aeson >=1.5.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires lens >=4.19.2 && < 5.1 and the snapshot contains lens-5.2.3 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires lens-aeson >=1.1.3 && < 1.2 and the snapshot contains lens-aeson-1.2.3 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 - - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires aeson >=1.5.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires lens >=4.19.2 && < 5.1 and the snapshot contains lens-5.2.3 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires lens-aeson >=1.1.3 && < 1.2 and the snapshot contains lens-aeson-1.2.3 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 - - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 - - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires aeson >=1.5.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires bytestring >=0.10.12.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires lens >=4.19.2 && < 5.1 and the snapshot contains lens-5.2.3 - - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires o-clock >=1.2.1 && < 1.3 and the snapshot contains o-clock-1.4.0 - - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* requires text >=1.2.4.1 && < 1.3 and the snapshot contains text-2.0.2 - - caster < 0 # tried caster-0.0.3.0, but its *library* requires the disabled package: fast-builder - - category < 0 # tried category-0.2.5.0, but its *library* requires base >=4.10 && < 4.15 and the snapshot contains base-4.18.1.0 - - category < 0 # tried category-0.2.5.0, but its *library* requires the disabled package: dual - - category < 0 # tried category-0.2.5.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - cayley-client < 0 # tried cayley-client-0.4.19.2, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - cayley-client < 0 # tried cayley-client-0.4.19.2, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - cayley-client < 0 # tried cayley-client-0.4.19.2, but its *library* requires transformers >=0.4.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - cereal-time < 0 # tried cereal-time-0.1.0.0, but its *library* requires time >=1.5 && < 1.8.1 and the snapshot contains time-1.12.2 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires aeson >=1.0.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires aeson-casing >=0.1.0.5 && < 0.2 and the snapshot contains aeson-casing-0.2.0.0 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires connection >=0.2.7 && < 0.3 and the snapshot contains connection-0.3.1 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires http-api-data >=0.3.5 && < 0.3.9 and the snapshot contains http-api-data-0.5.1 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires http-client >=0.5.5.0 && < 0.6 and the snapshot contains http-client-0.7.15 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires req >=1.0.0 && < 1.3.0 and the snapshot contains req-3.13.1 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires text >=0.9 && < 1.3 and the snapshot contains text-2.0.2 - - cheapskate-highlight < 0 # tried cheapskate-highlight-0.1.0.0, but its *library* requires the disabled package: highlighting-kate - - cheapskate-lucid < 0 # tried cheapskate-lucid-0.1.0.0, but its *library* requires the disabled package: cheapskate - - chiphunk < 0 # tried chiphunk-0.1.4.0, but its *library* requires hashable >=1.2.6.0 && < 1.4 and the snapshot contains hashable-1.4.3.0 - - clang-compilation-database < 0 # tried clang-compilation-database-0.1.0.1, but its *library* requires base >=4.8 && < 4.12 and the snapshot contains base-4.18.1.0 - - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* requires base >=4.10 && < 4.13 and the snapshot contains base-4.18.1.0 - - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* requires template-haskell >=2.12 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - cleff-plugin < 0 # tried cleff-plugin-0.1.0.0, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 - - cleff-plugin < 0 # tried cleff-plugin-0.1.0.0, but its *library* requires ghc >=8.6 && < 9.3 and the snapshot contains ghc-9.6.3 - - climb < 0 # tried climb-0.4.1, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* requires clock >=0.4.6 && < 0.8.0 and the snapshot contains clock-0.8.4 - - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* requires cmark ==0.5.* and the snapshot contains cmark-0.6.1 - - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* requires the disabled package: highlighting-kate - - codec < 0 # tried codec-0.2.1, but its *library* requires the disabled package: binary-bits - - colour-accelerate < 0 # tried colour-accelerate-0.4.0.0, but its *library* requires the disabled package: accelerate - - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.0.1 - - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires aeson >=1.1.2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires mmorph >=1.0.9 && < 1.2 and the snapshot contains mmorph-1.2.0 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires template-haskell >=2.11.1.0 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires time >=1.6.0.1 && < 1.12 and the snapshot contains time-1.12.2 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires vector >=0.12.0.1 && < 0.13 and the snapshot contains vector-0.13.1.0 - - composite-aeson-path < 0 # tried composite-aeson-path-0.8.2.2, but its *library* requires path >=0.6 && < 0.9 and the snapshot contains path-0.9.5 - - composite-aeson-refined < 0 # tried composite-aeson-refined-0.8.2.2, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - composite-aeson-refined < 0 # tried composite-aeson-refined-0.8.2.2, but its *library* requires refined >=0.1.2.1 && < 0.7 and the snapshot contains refined-0.8.1 - - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: aeson-better-errors - - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: composite-aeson - - composite-ekg < 0 # tried composite-ekg-0.8.2.2, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - compressed < 0 # tried compressed-3.11, but its *library* requires containers >=0.3 && < 0.6 and the snapshot contains containers-0.6.7 - - compressed < 0 # tried compressed-3.11, but its *library* requires hashable >=1.1.2.1 && < 1.3 and the snapshot contains hashable-1.4.3.0 - - compressed < 0 # tried compressed-3.11, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.0.1 - - conduit-algorithms < 0 # tried conduit-algorithms-0.0.13.0, but its *library* requires the disabled package: lzma-conduit - - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 - - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - conduit-throttle < 0 # tried conduit-throttle-0.3.1.0, but its *library* requires the disabled package: throttle-io-stream - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires amazonka >=1.6 && < 1.7 and the snapshot contains amazonka-2.0 - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires amazonka-kms >=1.6 && < 1.7 and the snapshot contains amazonka-kms-2.0 - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* requires the disabled package: crypto-pubkey-openssh - - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* requires hspec-core >=2.0.0 && < 2.8.0 and the snapshot contains hspec-core-2.11.7 - - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* requires conferer >=1.0.0.0 && < 1.1.0.0 and the snapshot contains conferer-1.1.0.0 - - connection < 0 # tried connection-0.3.1, but its *library* requires tls >=1.4 && < 1.7 and the snapshot contains tls-1.8.0 - - console-style < 0 # tried console-style-0.0.2.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - constraint < 0 # tried constraint-0.1.4.0, but its *library* requires the disabled package: category - - construct < 0 # tried construct-0.3.1.1, but its *library* requires rank2classes >=1 && < 1.5 and the snapshot contains rank2classes-1.5.3 - - containers-unicode-symbols < 0 # tried containers-unicode-symbols-0.3.1.3, but its *library* requires containers >=0.5 && < 0.6.5 and the snapshot contains containers-0.6.7 - - cprng-aes < 0 # tried cprng-aes-0.6.1, but its *library* requires the disabled package: crypto-random - - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-numbers - - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-random - - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-blowfish - - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-des - - csg < 0 # tried csg-0.1.0.6, but its *executable* requires turtle < 1.6 and the snapshot contains turtle-1.6.2 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires QuickCheck < 2.13 and the snapshot contains QuickCheck-2.14.3 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires attoparsec < 0.14 and the snapshot contains attoparsec-0.14.4 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires simple-vec3 ==0.4.* and the snapshot contains simple-vec3-0.6.0.1 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires strict < 0.4 and the snapshot contains strict-0.5 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 - - csv-conduit < 0 # tried csv-conduit-0.7.3.0, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - curl-runnings < 0 # tried curl-runnings-0.17.0, but its *library* requires the disabled package: connection - - curl-runnings < 0 # tried curl-runnings-0.17.0, but its *library* requires the disabled package: dhall-json - - currencies < 0 # tried currencies-0.2.0.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - cusolver < 0 # tried cusolver-0.3.0.0, but its *library* requires the disabled package: cublas - - cusolver < 0 # tried cusolver-0.3.0.0, but its *library* requires the disabled package: cusparse - - czipwith < 0 # tried czipwith-1.0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 - - czipwith < 0 # tried czipwith-1.0.1.4, but its *library* requires template-haskell >=2.9 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires Cabal >=2.4 && < 3.7 and the snapshot contains Cabal-3.10.1.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires attoparsec >=0.13.0.1 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires base >=4.10 && < 4.16 and the snapshot contains base-4.18.1.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires bytestring >=0.10.6 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires constraints >=0.11 && < 0.13 and the snapshot contains constraints-0.13.4 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires cryptonite >=0.24 && < 0.30 and the snapshot contains cryptonite-0.30 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires fgl >=5.5.2.3 && < 5.8 and the snapshot contains fgl-5.8.2.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires hashable >=1.2.3.3 && < 1.4 and the snapshot contains hashable-1.4.3.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires http-types >=0.12.1 && < 0.12.4 and the snapshot contains http-types-0.12.4 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires memory >=0.14 && < 0.17 and the snapshot contains memory-0.18.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires regex-tdfa >=1.3.1.0 && < 1.3.2 and the snapshot contains regex-tdfa-1.3.2.2 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires text >=1.2.1.3 && < 1.3 and the snapshot contains text-2.0.2 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires time >=1.5.0.1 && < 1.10 and the snapshot contains time-1.12.2 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires unix >=2.7.1.0 && < 2.8 and the snapshot contains unix-2.8.1.0 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires unix-compat >=0.5 && < 0.6 and the snapshot contains unix-compat-0.7.1 - - darcs < 0 # tried darcs-2.16.5, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - data-accessor-template < 0 # tried data-accessor-template-0.2.1.16, but its *library* requires template-haskell >=2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - data-compat < 0 # tried data-compat-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.18 and the snapshot contains base-4.18.1.0 - - data-default-extra < 0 # tried data-default-extra-0.1.0, but its *library* requires the disabled package: data-default-instances-new-base - - data-default-instances-text < 0 # tried data-default-instances-text-0.0.1, but its *library* requires text >=0.2 && < 2 and the snapshot contains text-2.0.2 - - data-tree-print < 0 # tried data-tree-print-0.1.0.2, but its *library* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 - - datasets < 0 # tried datasets-0.4.0, but its *library* requires the disabled package: streaming-cassava - - dawg-ord < 0 # tried dawg-ord-0.5.1.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - dawg-ord < 0 # tried dawg-ord-0.5.1.2, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - dawg-ord < 0 # tried dawg-ord-0.5.1.2, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - decidable < 0 # tried decidable-0.3.1.0, but its *library* requires singletons-base < 3.2 and the snapshot contains singletons-base-3.2 - - deepseq-instances < 0 # tried deepseq-instances-0.1.0.1, but its *library* requires base >=4.13.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires optparse-applicative >=0.14.0.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires lens >=4.16.1 && < 5.2 and the snapshot contains lens-5.2.3 - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires lsp >=1.2.0.0 && < 1.5 and the snapshot contains lsp-2.3.0.0 - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.3, but its *library* requires transformers >=0.5.5.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - dhall-nix < 0 # tried dhall-nix-1.1.26, but its *executable* requires optparse-generic >=1.1.1 && < 1.5 and the snapshot contains optparse-generic-1.5.2 - - dhall-nix < 0 # tried dhall-nix-1.1.26, but its *library* requires the disabled package: hnix - - dhall-yaml < 0 # tried dhall-yaml-1.2.12, but its *library* requires optparse-applicative >=0.14.0.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires aeson >=1.4.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires base >=4.12.0.0 && < 4.15.0.0 and the snapshot contains base-4.18.1.0 - - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* requires criterion >=0.6.2.1 && < 1.4 and the snapshot contains criterion-1.6.3.0 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires attoparsec >=0.10.4.0 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires base >=4.8.2 && < 4.11 and the snapshot contains base-4.18.1.0 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires containers >=0.5.6.2 && < 0.6 and the snapshot contains containers-0.6.7 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires exceptions >=0.8.3 && < 0.9 and the snapshot contains exceptions-0.10.7 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires time >=1.5.0.1 && < 1.9 and the snapshot contains time-1.12.2 - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires Cabal >=2.0 && < 2.2 and the snapshot contains Cabal-3.10.1.0 - - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires the disabled package: cabal-toolkit - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires hashable >=1.2.0.5 && < 1.3 and the snapshot contains hashable-1.4.3.0 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires stm >=2.4 && < 2.5 and the snapshot contains stm-2.5.1.0 - - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - distributed-process-monad-control < 0 # tried distributed-process-monad-control-0.5.1.3, but its *library* requires the disabled package: distributed-process - - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires random ==1.1.* and the snapshot contains random-1.2.1.1 - - docker < 0 # tried docker-0.7.0.1, but its *library* requires text >=1.0.0 && < 2.0.0 and the snapshot contains text-2.0.2 - - docker < 0 # tried docker-0.7.0.1, but its *library* requires tls >=1.3.7 && < 1.7.0 and the snapshot contains tls-1.8.0 - - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* requires language-docker >=6.0.4 && < 7.0 and the snapshot contains language-docker-12.1.0 - - docopt < 0 # tried docopt-0.7.0.7, but its *library* requires containers >=0.6.2 && < 0.6.6 and the snapshot contains containers-0.6.7 - - earcut < 0 # tried earcut-0.1.0.4, but its *library* requires base >=4.5 && < 4.15 and the snapshot contains base-4.18.1.0 - - easytest < 0 # tried easytest-0.3, but its *library* requires hedgehog >=0.6 && < =0.6.1 and the snapshot contains hedgehog-1.4 - - edit < 0 # tried edit-1.0.1.0, but its *library* requires QuickCheck >=2.10 && < 2.13 and the snapshot contains QuickCheck-2.14.3 - - edit < 0 # tried edit-1.0.1.0, but its *library* requires base >=4.9 && < 4.12 and the snapshot contains base-4.18.1.0 - - edit < 0 # tried edit-1.0.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - effect-handlers < 0 # tried effect-handlers-0.1.0.8, but its *library* requires free >=4.9 && < 5 and the snapshot contains free-5.2 - - egison < 0 # tried egison-4.1.3, but its *library* requires text >=0.2 && < 1.3 and the snapshot contains text-2.0.2 - - egison < 0 # tried egison-4.1.3, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - egison < 0 # tried egison-4.1.3, but its *library* requires vector ==0.12.* and the snapshot contains vector-0.13.1.0 - - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* requires mtl ^>=2.2.1 and the snapshot contains mtl-2.3.1 - - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* requires template-haskell >=2.2.0 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.1.2, but its *library* requires text >=0.1.0 && < 1.3 and the snapshot contains text-2.0.2 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires aeson >=0.4 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires base >=4.5 && < 4.15 and the snapshot contains base-4.18.1.0 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - - ekg < 0 # tried ekg-0.4.0.15, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 - - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* requires aeson >=0.4 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* requires base >=4.5 && < 4.15 and the snapshot contains base-4.18.1.0 - - ekg-json < 0 # tried ekg-json-0.1.0.6, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 - - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires base >=4.6 && < 4.15 and the snapshot contains base-4.18.1.0 - - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 - - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - - ekg-wai < 0 # tried ekg-wai-0.1.1.0, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - - elliptic-curve < 0 # tried elliptic-curve-0.3.0, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.3 - - emd < 0 # tried emd-0.2.0.0, but its *library* requires the disabled package: conduino - - essence-of-live-coding-gloss < 0 # tried essence-of-live-coding-gloss-0.2.7, but its *library* requires the disabled package: essence-of-live-coding - - essence-of-live-coding-pulse < 0 # tried essence-of-live-coding-pulse-0.2.7, but its *library* requires the disabled package: essence-of-live-coding - - essence-of-live-coding-quickcheck < 0 # tried essence-of-live-coding-quickcheck-0.2.7, but its *library* requires the disabled package: essence-of-live-coding - - essence-of-live-coding-warp < 0 # tried essence-of-live-coding-warp-0.2.7, but its *library* requires the disabled package: essence-of-live-coding - - euler-tour-tree < 0 # tried euler-tour-tree-0.1.1.0, but its *library* requires the disabled package: Unique - - event < 0 # tried event-0.1.4, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 - - event < 0 # tried event-0.1.4, but its *library* requires semigroups >=0.16 && < 0.19 and the snapshot contains semigroups-0.20 - - event < 0 # tried event-0.1.4, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - eventful-core < 0 # tried eventful-core-0.2.0, but its *library* requires the disabled package: sum-type-boilerplate - - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: eventful-core - - eventful-memory < 0 # tried eventful-memory-0.2.0, but its *library* requires the disabled package: eventful-core - - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-core - - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-sql-common - - eventful-sql-common < 0 # tried eventful-sql-common-0.2.0, but its *library* requires persistent-template < 2.7 and the snapshot contains persistent-template-2.12.0.0 - - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-core - - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-sql-common - - eventful-test-helpers < 0 # tried eventful-test-helpers-0.2.0, but its *library* requires the disabled package: eventful-core - - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-api - - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-store-specs - - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventstore - - eventsource-stub-store < 0 # tried eventsource-stub-store-1.1.1, but its *library* requires the disabled package: eventsource-api - - failable < 0 # tried failable-1.2.4.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - failable < 0 # tried failable-1.2.4.0, but its *library* requires transformers >=0.4.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - fast-builder < 0 # tried fast-builder-0.1.3.0, but its *library* requires base >=4.8 && < 4.16 and the snapshot contains base-4.18.1.0 - - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 - - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude - - filecache < 0 # tried filecache-0.4.1, but its *library* requires fsnotify ==0.3.* and the snapshot contains fsnotify-0.4.1.0 - - filecache < 0 # tried filecache-0.4.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - first-class-patterns < 0 # tried first-class-patterns-0.3.2.5, but its *library* requires transformers >=0.1.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - fold-debounce-conduit < 0 # tried fold-debounce-conduit-0.2.0.7, but its *library* requires base >=4.9.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - fold-debounce-conduit < 0 # tried fold-debounce-conduit-0.2.0.7, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - foldable1 < 0 # tried foldable1-0.1.0.0, but its *library* requires the disabled package: util - - foldable1 < 0 # tried foldable1-0.1.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - fortran-src < 0 # tried fortran-src-0.15.1, but its *library* requires singletons-base >=3.0 && < 3.2 and the snapshot contains singletons-base-3.2 - - fortran-src < 0 # tried fortran-src-0.15.1, but its *library* requires singletons-th >=3.0 && < 3.2 and the snapshot contains singletons-th-3.2 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - freer-simple < 0 # tried freer-simple-1.2.1.2, but its *library* requires template-haskell >=2.11 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 - - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* requires haskeline >=0.7 && < 0.8 and the snapshot contains haskeline-0.8.2.1 - - ftp-client < 0 # tried ftp-client-0.5.1.4, but its *library* requires the disabled package: connection - - functor-products < 0 # tried functor-products-0.1.2.0, but its *library* requires singletons-base < 3.2 and the snapshot contains singletons-base-3.2 - - functor-products < 0 # tried functor-products-0.1.2.0, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires MonadRandom >=0.5.1 && < 0.6 and the snapshot contains MonadRandom-0.6 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires mod >=0.1.0 && < 0.2 and the snapshot contains mod-0.2.0.1 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires poly >=0.3.2 && < 0.5 and the snapshot contains poly-0.5.1.0 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.3 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires vector >=0.12.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - gdax < 0 # tried gdax-0.6.0.0, but its *library* requires the disabled package: regex-tdfa-text - - generic-aeson < 0 # tried generic-aeson-0.2.0.14, but its *library* requires base >=4.4 && < 4.17 and the snapshot contains base-4.18.1.0 - - generic-aeson < 0 # tried generic-aeson-0.2.0.14, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* requires base >=4.5 && < 4.14 and the snapshot contains base-4.18.1.0 - - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* requires generic-deriving >=1.6 && < 1.14 and the snapshot contains generic-deriving-1.14.5 - - geniplate-mirror < 0 # tried geniplate-mirror-0.7.9, but its *library* requires template-haskell < 2.20 and the snapshot contains template-haskell-2.20.0.0 - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires dhall >=1.30.0 && < 1.34 and the snapshot contains dhall-1.42.1 - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires ghc >=8.8.2 && < 8.11 and the snapshot contains ghc-9.6.3 - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires text >=1.2.3.2 && < 1.3 and the snapshot contains text-2.0.2 - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* requires text-icu >=0.7.0 && < 0.8 and the snapshot contains text-icu-0.8.0.4 - - ghc-prof < 0 # tried ghc-prof-1.4.1.12, but its *library* requires base >=4.6 && < 4.18 and the snapshot contains base-4.18.1.0 - - ghc-source-gen < 0 # tried ghc-source-gen-0.4.3.0, but its *library* requires ghc >=8.4 && < 9.3 and the snapshot contains ghc-9.6.3 - - ghc-syb-utils < 0 # tried ghc-syb-utils-0.3.0.0, but its *library* requires ghc >=7.10 && < 8.6 and the snapshot contains ghc-9.6.3 - - ghcjs-dom < 0 # tried ghcjs-dom-0.9.5.0, but its *library* requires text >=0.11.0.6 && < 1.3 and the snapshot contains text-2.0.2 - - ghcjs-dom < 0 # tried ghcjs-dom-0.9.5.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - ghcjs-dom-jsaddle < 0 # tried ghcjs-dom-jsaddle-0.9.5.0, but its *library* requires the disabled package: jsaddle-dom - - gi-cairo-connector < 0 # tried gi-cairo-connector-0.1.1, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - gi-gsk < 0 # tried gi-gsk-4.0.7, but its *library* requires gi-gdk ==4.0.* and the snapshot contains gi-gdk-3.0.28 - - github-webhook-handler < 0 # tried github-webhook-handler-0.0.8, but its *library* requires base >=4 && < 4.11 and the snapshot contains base-4.18.1.0 - - github-webhook-handler-snap < 0 # tried github-webhook-handler-snap-0.0.7, but its *library* requires base >=4 && < 4.11 and the snapshot contains base-4.18.1.0 - - gitlab-haskell < 0 # tried gitlab-haskell-1.0.0.3, but its *library* requires the disabled package: connection - - glaze < 0 # tried glaze-0.3.0.1, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens - - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: ghcjs-base-stub - - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: glazier - - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens - - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: ghcjs-base-stub - - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: glazier - - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate - - gloss-accelerate < 0 # tried gloss-accelerate-2.1.0.0, but its *library* requires the disabled package: linear-accelerate - - gloss-examples < 0 # tried gloss-examples-1.13.0.4, but its *executable* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - gloss-raster < 0 # tried gloss-raster-1.13.1.2, but its *library* requires the disabled package: repa - - gloss-raster-accelerate < 0 # tried gloss-raster-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate - - gogol < 0 # tried gogol-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-adexchange-buyer < 0 # tried gogol-adexchange-buyer-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-adexchange-seller < 0 # tried gogol-adexchange-seller-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-admin-datatransfer < 0 # tried gogol-admin-datatransfer-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-admin-directory < 0 # tried gogol-admin-directory-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-admin-emailmigration < 0 # tried gogol-admin-emailmigration-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-admin-reports < 0 # tried gogol-admin-reports-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-adsense < 0 # tried gogol-adsense-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-adsense-host < 0 # tried gogol-adsense-host-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-affiliates < 0 # tried gogol-affiliates-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-analytics < 0 # tried gogol-analytics-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-android-enterprise < 0 # tried gogol-android-enterprise-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-android-publisher < 0 # tried gogol-android-publisher-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-appengine < 0 # tried gogol-appengine-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-apps-activity < 0 # tried gogol-apps-activity-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-apps-calendar < 0 # tried gogol-apps-calendar-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-apps-licensing < 0 # tried gogol-apps-licensing-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-apps-reseller < 0 # tried gogol-apps-reseller-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-apps-tasks < 0 # tried gogol-apps-tasks-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-appstate < 0 # tried gogol-appstate-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-autoscaler < 0 # tried gogol-autoscaler-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-bigquery < 0 # tried gogol-bigquery-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-billing < 0 # tried gogol-billing-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-blogger < 0 # tried gogol-blogger-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-books < 0 # tried gogol-books-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-civicinfo < 0 # tried gogol-civicinfo-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-classroom < 0 # tried gogol-classroom-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-cloudmonitoring < 0 # tried gogol-cloudmonitoring-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-cloudtrace < 0 # tried gogol-cloudtrace-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-compute < 0 # tried gogol-compute-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-container < 0 # tried gogol-container-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-customsearch < 0 # tried gogol-customsearch-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-dataflow < 0 # tried gogol-dataflow-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-dataproc < 0 # tried gogol-dataproc-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-datastore < 0 # tried gogol-datastore-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-debugger < 0 # tried gogol-debugger-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-deploymentmanager < 0 # tried gogol-deploymentmanager-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-dfareporting < 0 # tried gogol-dfareporting-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-discovery < 0 # tried gogol-discovery-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-dns < 0 # tried gogol-dns-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-doubleclick-bids < 0 # tried gogol-doubleclick-bids-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-doubleclick-search < 0 # tried gogol-doubleclick-search-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-drive < 0 # tried gogol-drive-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-firebase-rules < 0 # tried gogol-firebase-rules-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-fitness < 0 # tried gogol-fitness-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-fonts < 0 # tried gogol-fonts-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-freebasesearch < 0 # tried gogol-freebasesearch-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-fusiontables < 0 # tried gogol-fusiontables-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-games < 0 # tried gogol-games-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-games-configuration < 0 # tried gogol-games-configuration-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-games-management < 0 # tried gogol-games-management-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-genomics < 0 # tried gogol-genomics-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-gmail < 0 # tried gogol-gmail-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-groups-migration < 0 # tried gogol-groups-migration-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-groups-settings < 0 # tried gogol-groups-settings-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-identity-toolkit < 0 # tried gogol-identity-toolkit-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-kgsearch < 0 # tried gogol-kgsearch-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-latencytest < 0 # tried gogol-latencytest-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-logging < 0 # tried gogol-logging-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-maps-coordinate < 0 # tried gogol-maps-coordinate-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-maps-engine < 0 # tried gogol-maps-engine-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-mirror < 0 # tried gogol-mirror-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-monitoring < 0 # tried gogol-monitoring-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-oauth2 < 0 # tried gogol-oauth2-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-pagespeed < 0 # tried gogol-pagespeed-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-partners < 0 # tried gogol-partners-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-people < 0 # tried gogol-people-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-play-moviespartner < 0 # tried gogol-play-moviespartner-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-plus < 0 # tried gogol-plus-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-plus-domains < 0 # tried gogol-plus-domains-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-prediction < 0 # tried gogol-prediction-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-proximitybeacon < 0 # tried gogol-proximitybeacon-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-pubsub < 0 # tried gogol-pubsub-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-qpxexpress < 0 # tried gogol-qpxexpress-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-replicapool < 0 # tried gogol-replicapool-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-replicapool-updater < 0 # tried gogol-replicapool-updater-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-resourcemanager < 0 # tried gogol-resourcemanager-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-resourceviews < 0 # tried gogol-resourceviews-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-script < 0 # tried gogol-script-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-sheets < 0 # tried gogol-sheets-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-shopping-content < 0 # tried gogol-shopping-content-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-siteverification < 0 # tried gogol-siteverification-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-spectrum < 0 # tried gogol-spectrum-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-sqladmin < 0 # tried gogol-sqladmin-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-storage < 0 # tried gogol-storage-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-storage-transfer < 0 # tried gogol-storage-transfer-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-tagmanager < 0 # tried gogol-tagmanager-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-taskqueue < 0 # tried gogol-taskqueue-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-translate < 0 # tried gogol-translate-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-urlshortener < 0 # tried gogol-urlshortener-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-useraccounts < 0 # tried gogol-useraccounts-0.3.0, but its *library* requires the disabled package: gogol-core - - gogol-vision < 0 # tried gogol-vision-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-webmaster-tools < 0 # tried gogol-webmaster-tools-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-youtube < 0 # tried gogol-youtube-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-youtube-analytics < 0 # tried gogol-youtube-analytics-0.5.0, but its *library* requires the disabled package: gogol-core - - gogol-youtube-reporting < 0 # tried gogol-youtube-reporting-0.5.0, but its *library* requires the disabled package: gogol-core - - google-cloud < 0 # tried google-cloud-0.0.4, but its *library* requires base >=4.4 && < 4.11 and the snapshot contains base-4.18.1.0 - - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* requires base64-bytestring >=1.0.0 && < 1.2.0.1 and the snapshot contains base64-bytestring-1.2.1.0 - - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* requires bytestring >=0.10.6 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires http-api-data >=0.2 && < 0.4 and the snapshot contains http-api-data-0.5.1 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires http-client >=0.4 && < 0.6 and the snapshot contains http-client-0.7.15 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - gothic < 0 # tried gothic-0.1.8.1, but its *library* requires vector >=0.12.0.1 && < 0.13 and the snapshot contains vector-0.13.1.0 - - greskell < 0 # tried greskell-2.0.3.0, but its *library* requires base >=4.9.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - greskell < 0 # tried greskell-2.0.3.0, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - greskell < 0 # tried greskell-2.0.3.0, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - greskell-core < 0 # tried greskell-core-1.0.0.1, but its *library* requires base >=4.9.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - greskell-core < 0 # tried greskell-core-1.0.0.1, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - greskell-websocket < 0 # tried greskell-websocket-1.0.0.1, but its *library* requires base >=4.9.1.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - greskell-websocket < 0 # tried greskell-websocket-1.0.0.1, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires groundhog-th >=0.8 && < 0.12 and the snapshot contains groundhog-th-0.12 - - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* requires the disabled package: groundhog - - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* requires mysql >=0.1.1.3 && < 0.2 and the snapshot contains mysql-0.2.1 - - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* requires the disabled package: groundhog - - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* requires transformers >=0.2.1 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires postgresql-simple >=0.3 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 - - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires the disabled package: groundhog - - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires transformers >=0.2.1 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - groundhog-postgresql < 0 # tried groundhog-postgresql-0.12, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - groundhog-sqlite < 0 # tried groundhog-sqlite-0.12.0, but its *library* requires the disabled package: groundhog - - groundhog-th < 0 # tried groundhog-th-0.12, but its *library* requires aeson >=0.7 && < 2 and the snapshot contains aeson-2.1.2.1 - - groundhog-th < 0 # tried groundhog-th-0.12, but its *library* requires the disabled package: groundhog - - grouped-list < 0 # tried grouped-list-0.2.3.0, but its *library* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 - - gtk-sni-tray < 0 # tried gtk-sni-tray-0.1.8.1, but its *library* requires the disabled package: gi-cairo-connector - - hOpenPGP < 0 # tried hOpenPGP-2.9.8, but its *library* requires the disabled package: incremental-parser - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires http-client ==0.5.* and the snapshot contains http-client-0.7.15 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires servant >=0.9 && < 0.13 and the snapshot contains servant-0.20.1 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires servant-client >=0.9 && < 0.13 and the snapshot contains servant-client-0.20 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - hadolint < 0 # tried hadolint-2.12.0, but its *library* requires language-docker >=11.0.0 && < 12 and the snapshot contains language-docker-12.1.0 - - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires text >=1.2.2.0 && < 1.3 and the snapshot contains text-2.0.2 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *executable* requires optparse-applicative >=0.11 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires ansi-terminal >=0.9 && < 0.12 and the snapshot contains ansi-terminal-1.0 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires path >=0.5 && < 0.9 and the snapshot contains path-0.9.5 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires path-io >=1.2 && < 1.7 and the snapshot contains path-io-1.8.1 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires time >=1.5 && < 1.11 and the snapshot contains time-1.12.2 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - happstack-hsp < 0 # tried happstack-hsp-7.3.7.7, but its *library* requires the disabled package: hsp - - harp < 0 # tried harp-0.4.3.6, but its *library* requires base < 4.18 and the snapshot contains base-4.18.1.0 - - hasbolt < 0 # tried hasbolt-0.1.6.3, but its *library* requires the disabled package: connection - - hashable-time < 0 # tried hashable-time-0.3, but its *library* requires base >=4.7 && < 4.16 and the snapshot contains base-4.18.1.0 - - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires aeson >=0.8.0.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires bytestring >=0.10.4.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-names < 0 # tried haskell-names-0.9.9, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - haskell-tools-ast < 0 # tried haskell-tools-ast-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires ghc-boot-th >=8.4 && < 8.7 and the snapshot contains ghc-boot-th-9.6.3 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires Cabal >=2.0 && < 2.5 and the snapshot contains Cabal-3.10.1.0 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-builtin-refactorings < 0 # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* requires Glob >=0.9 && < 0.10 and the snapshot contains Glob-0.10.2 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires strict >=0.3 && < 0.4 and the snapshot contains strict-0.5 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires Cabal >=2.0 && < 2.5 and the snapshot contains Cabal-3.10.1.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires Diff >=0.3 && < 0.4 and the snapshot contains Diff-0.4.1 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires network >=2.6 && < 2.9 and the snapshot contains network-3.1.4.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires strict >=0.3 && < 0.4 and the snapshot contains strict-0.5 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - haskell-tools-debug < 0 # tried haskell-tools-debug-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires warp >=3.2 && < 3.3 and the snapshot contains warp-3.3.31 - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires Cabal >=2.0 && < 2.5 and the snapshot contains Cabal-3.10.1.0 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires template-haskell >=2.13 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires the disabled package: references - - haskell-tools-refactor < 0 # tried haskell-tools-refactor-1.1.1.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires ghc >=8.4 && < 8.7 and the snapshot contains ghc-9.6.3 - - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires the disabled package: references - - haskey < 0 # tried haskey-0.3.1.0, but its *library* requires stm-containers >=0.2 && < 1 || >=1.1 && < 1.2 and the snapshot contains stm-containers-1.2.0.3 - - haskey-btree < 0 # tried haskey-btree-0.3.0.1, but its *library* requires text >=1.2.1 && < 2 and the snapshot contains text-2.0.2 - - haskey-mtl < 0 # tried haskey-mtl-0.3.1.0, but its *library* requires monad-control >=1.0.1.0 && < 1.0.2.4 and the snapshot contains monad-control-1.0.3.1 - - haskoin-store < 0 # tried haskoin-store-1.2.3, but its *library* requires the disabled package: statsd-rupp - - hasmin < 0 # tried hasmin-1.0.3, but its *executable* requires bytestring >=0.10.2.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hasmin < 0 # tried hasmin-1.0.3, but its *executable* requires optparse-applicative >=0.11 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 - - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires attoparsec >=0.12 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - hasql-queue < 0 # tried hasql-queue-1.2.0.2, but its *executable* requires the disabled package: tmp-postgres - - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires aeson >=0.6 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 - - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires text >=1.2.1.0 && < 1.3 and the snapshot contains text-2.0.2 - - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires time >=1.4 && < 1.10 and the snapshot contains time-1.12.2 - - haxl < 0 # tried haxl-2.4.0.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: haxl - - hedgehog-fakedata < 0 # tried hedgehog-fakedata-0.0.1.5, but its *library* requires hedgehog >=0.1 && < 1.3 and the snapshot contains hedgehog-1.4 - - hedgehog-optics < 0 # tried hedgehog-optics-1.0.0.3, but its *library* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires ansi-terminal >=0.7.0 && < =0.8.1 and the snapshot contains ansi-terminal-1.0 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires brick >=0.19 && < =0.39 and the snapshot contains brick-2.1.1 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires optparse-applicative >=0.14 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires semigroups >=0.18.3 && < 0.19 and the snapshot contains semigroups-0.20 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires vty >=5.15 && < =5.23 and the snapshot contains vty-6.1 - - hgeometry < 0 # tried hgeometry-0.14, but its *library* requires the disabled package: vector-circular - - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.14, but its *library* requires the disabled package: vector-circular - - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires aeson >=0.8 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires base >=4.7 && < 4.15 and the snapshot contains base-4.18.1.0 - - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hgrev < 0 # tried hgrev-0.2.6, but its *library* requires template-haskell >=2.10 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - hid < 0 # tried hid-0.2.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hid < 0 # tried hid-0.2.2, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - hidden-char < 0 # tried hidden-char-0.1.0.2, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 - - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* requires base >=4.7 && < 4.12 and the snapshot contains base-4.18.1.0 - - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.0 - - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* requires transformers-compat >=0.3 && < 0.7 and the snapshot contains transformers-compat-0.7.2 - - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires resourcet >=1.2.3 && < =1.3 and the snapshot contains resourcet-1.3.0 - - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: highjson - - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: highjson - - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: repa - - hit < 0 # tried hit-0.7.0, but its *executable* requires the disabled package: git - - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires aeson >=0.7 && < 1.4 and the snapshot contains aeson-2.1.2.1 - - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 - - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - hjsonpointer < 0 # tried hjsonpointer-1.5.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires QuickCheck >=2.8 && < 2.11 and the snapshot contains QuickCheck-2.14.3 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires aeson >=0.11 && < 1.4 and the snapshot contains aeson-2.1.2.1 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires hjsonpointer >=1.1 && < 1.4 and the snapshot contains hjsonpointer-1.5.0 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires http-client >=0.4.30 && < 0.6 and the snapshot contains http-client-0.7.15 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires http-types >=0.8 && < 0.10 and the snapshot contains http-types-0.12.4 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires profunctors >=5.0 && < 5.3 and the snapshot contains profunctors-5.6.2 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires protolude >=0.1.10 && < 0.3 and the snapshot contains protolude-0.3.3 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 - - hjsonschema < 0 # tried hjsonschema-1.10.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - hledger-ui < 0 # tried hledger-ui-1.32.1, but its *library* requires brick >=1.5 && < 2 and the snapshot contains brick-2.1.1 - - hledger-ui < 0 # tried hledger-ui-1.32.1, but its *library* requires vty >=5.15 && < 6 and the snapshot contains vty-6.1 - - hmatrix-repa < 0 # tried hmatrix-repa-0.1.2.2, but its *library* requires the disabled package: repa - - hnock < 0 # tried hnock-0.4.0, but its *library* requires text >=1.2.3.0 && < 1.3 and the snapshot contains text-2.0.2 - - hocilib < 0 # tried hocilib-0.2.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires MissingH < =1.4.3.0 and the snapshot contains MissingH-1.6.0.1 - - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires parsec < =3.1.14.0 and the snapshot contains parsec-3.1.16.1 - - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires split < =0.2.3.4 and the snapshot contains split-0.2.4 - - holy-project < 0 # tried holy-project-0.2.0.1, but its *library* requires the disabled package: hastache - - hoogle < 0 # tried hoogle-5.0.18.3, but its *library* requires the disabled package: connection - - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.8, but its *executable* requires the disabled package: hOpenPGP - - hpack-dhall < 0 # tried hpack-dhall-0.5.7, but its *library* requires hpack ==0.35.* and the snapshot contains hpack-0.36.0 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires aeson >=0.7.1 && < 1.3 and the snapshot contains aeson-2.1.2.1 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.6.7 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires retry >=0.5 && < 0.8 and the snapshot contains retry-0.9.3.1 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* requires transformers >=0.4.1 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - hpio < 0 # tried hpio-0.9.0.7, but its *executable* requires optparse-applicative >=0.11.0 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires QuickCheck >=2.7.6 && < 2.13 and the snapshot contains QuickCheck-2.14.3 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires mtl >=2.1.3 && < 2.3 and the snapshot contains mtl-2.3.1 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires protolude ==0.2.* and the snapshot contains protolude-0.3.3 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.0.2 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires unix >=2.7.0 && < 2.8 and the snapshot contains unix-2.8.1.0 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires unix-bytestring >=0.3.7 && < 0.4 and the snapshot contains unix-bytestring-0.4.0 - - hprotoc < 0 # tried hprotoc-2.4.17, but its *library* requires the disabled package: protocol-buffers - - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires statistics >=0.15.0.0 && < 0.16.0.0 and the snapshot contains statistics-0.16.2.1 - - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires time >=1.9.0.0 && < 1.10.0.0 and the snapshot contains time-1.12.2 - - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires vector >=0.11.0.0 && < 0.13.0.0 and the snapshot contains vector-0.13.1.0 - - hquantlib < 0 # tried hquantlib-0.0.5.1, but its *library* requires vector-algorithms >=0.8.0.0 && < 0.9.0.0 and the snapshot contains vector-algorithms-0.9.0.1 - - hquantlib-time < 0 # tried hquantlib-time-0.0.5.2, but its *library* requires time >=1.4.0.0 && < 1.12.0.0 and the snapshot contains time-1.12.2 - - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires Cabal >=1.24.0.0 && < 3.7 and the snapshot contains Cabal-3.10.1.0 - - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires base >=4.9.0.0 && < 4.16 and the snapshot contains base-4.18.1.0 - - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires ghc >=8.0.2 && < 9.1 and the snapshot contains ghc-9.6.3 - - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - hs-tags < 0 # tried hs-tags-0.1.5.3, but its *executable* requires strict >=0.3.2 && < 0.5 and the snapshot contains strict-0.5 - - hsb2hs < 0 # tried hsb2hs-0.3.1, but its *executable* requires the disabled package: preprocessor-tools - - hschema-aeson < 0 # tried hschema-aeson-0.0.1.1, but its *library* requires the disabled package: hschema - - hschema-prettyprinter < 0 # tried hschema-prettyprinter-0.0.1.1, but its *library* requires the disabled package: hschema - - hschema-quickcheck < 0 # tried hschema-quickcheck-0.0.1.1, but its *library* requires the disabled package: hschema - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires aeson >=1.2.4.0 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires attoparsec >=0.13.1.0 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires fsnotify >=0.2.1 && < 0.4 and the snapshot contains fsnotify-0.4.1.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires ghc-boot >=8.0.1 && < 8.11 and the snapshot contains ghc-boot-9.6.3 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires ghc-lib-parser ==8.10.* and the snapshot contains ghc-lib-parser-9.6.3.20231121 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires hlint >=3.0.0 && < 3.3.0 and the snapshot contains hlint-3.6.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires http-client >=0.5 && < 0.7 and the snapshot contains http-client-0.7.15 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires lens >=4.14 && < 4.20 and the snapshot contains lens-5.2.3 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires mmorph >=1.0.9 && < 1.2 and the snapshot contains mmorph-1.2.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires optparse-applicative >=0.12.1.0 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires template-haskell >=2.11.0 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires text >=1.2.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires the disabled package: text-region - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires time >=1.6.0.1 && < 1.10 and the snapshot contains time-1.12.2 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires unix >=2.7.2.0 && < 2.8 and the snapshot contains unix-2.8.1.0 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - hspec-need-env < 0 # tried hspec-need-env-0.1.0.10, but its *library* requires base >=4.6.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - hspec-need-env < 0 # tried hspec-need-env-0.1.0.10, but its *library* requires hspec-core >=2.2.4 && < 2.11 and the snapshot contains hspec-core-2.11.7 - - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* requires base >=4.13.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* requires hspec-core ==2.7.* and the snapshot contains hspec-core-2.11.7 - - hsx-jmacro < 0 # tried hsx-jmacro-7.3.8.2, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - hsx-jmacro < 0 # tried hsx-jmacro-7.3.8.2, but its *library* requires the disabled package: hsp - - hsx2hs < 0 # tried hsx2hs-0.14.1.11, but its *library* requires template-haskell >=2.7 && < 2.20 and the snapshot contains template-haskell-2.20.0.0 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires text < 1.3 and the snapshot contains text-2.0.2 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires unix < 2.8 and the snapshot contains unix-2.8.1.0 - - htoml < 0 # tried htoml-1.0.0.3, but its *library* requires aeson >=0.8 && < 2 and the snapshot contains aeson-2.1.2.1 - - htoml < 0 # tried htoml-1.0.0.3, but its *library* requires text >=1.0 && < 2 and the snapshot contains text-2.0.2 - - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.3, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires resourcet >=1.2.2 && < 1.3 and the snapshot contains resourcet-1.3.0 - - hw-excess < 0 # tried hw-excess-0.2.3.0, but its *library* requires the disabled package: hw-rankselect-base - - hw-hedgehog < 0 # tried hw-hedgehog-0.1.1.1, but its *library* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-ip < 0 # tried hw-ip-2.4.2.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-json < 0 # tried hw-json-1.3.2.4, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-json < 0 # tried hw-json-1.3.2.4, but its *library* requires aeson >=2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - hw-json < 0 # tried hw-json-1.3.2.4, but its *library* requires ansi-wl-pprint >=0.6.8.2 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - hw-json-simd < 0 # tried hw-json-simd-0.1.1.2, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-mquery < 0 # tried hw-mquery-0.2.1.1, but its *library* requires ansi-wl-pprint >=0.6.8 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-rankselect < 0 # tried hw-rankselect-0.13.4.1, but its *executable* requires optparse-applicative >=0.11 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-rankselect-base < 0 # tried hw-rankselect-base-0.3.4.1, but its *library* requires the disabled package: bits-extra - - hw-simd < 0 # tried hw-simd-0.1.2.2, but its *library* requires the disabled package: bits-extra - - hw-simd < 0 # tried hw-simd-0.1.2.2, but its *library* requires the disabled package: hw-rankselect - - hw-succinct < 0 # tried hw-succinct-0.1.0.1, but its *library* requires the disabled package: hw-balancedparens - - hw-succinct < 0 # tried hw-succinct-0.1.0.1, but its *library* requires the disabled package: hw-rankselect - - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *executable* requires optparse-applicative >=0.15.1.0 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires ansi-wl-pprint >=0.6.9 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires ghc-prim >=0.5 && < 0.10 and the snapshot contains ghc-prim-0.10.0 - - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires resourcet >=1.2.2 && < 1.3 and the snapshot contains resourcet-1.3.0 - - hw-xml < 0 # tried hw-xml-0.5.1.1, but its *library* requires text >=1.2.3.2 && < 2 and the snapshot contains text-2.0.2 - - idris < 0 # tried idris-1.3.4, but its *library* requires Cabal >=2.4 && < =3.4 and the snapshot contains Cabal-3.10.1.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires aeson >=0.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - idris < 0 # tried idris-1.3.4, but its *library* requires ansi-terminal < 0.12 and the snapshot contains ansi-terminal-1.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires ansi-wl-pprint < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - idris < 0 # tried idris-1.3.4, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 - - idris < 0 # tried idris-1.3.4, but its *library* requires fsnotify >=0.2 && < 0.4 and the snapshot contains fsnotify-0.4.1.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires libffi < 0.2 and the snapshot contains libffi-0.2.1 - - idris < 0 # tried idris-1.3.4, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - idris < 0 # tried idris-1.3.4, but its *library* requires network >=2.7 && < 3.1.2 and the snapshot contains network-3.1.4.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires optparse-applicative >=0.13 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires text >=1.2.1.0 && < 1.4 and the snapshot contains text-2.0.2 - - idris < 0 # tried idris-1.3.4, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires unix < 2.8 and the snapshot contains unix-2.8.1.0 - - idris < 0 # tried idris-1.3.4, but its *library* requires vector < 0.13 and the snapshot contains vector-0.13.1.0 - - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: haskell-names - - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: log-warper - - incremental-parser < 0 # tried incremental-parser-0.5.0.5, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - indentation-core < 0 # tried indentation-core-0.0.0.2, but its *library* requires base >=4.6 && < 4.13 and the snapshot contains base-4.18.1.0 - - indentation-parsec < 0 # tried indentation-parsec-0.0.0.2, but its *library* requires base >=4.6 && < 4.13 and the snapshot contains base-4.18.1.0 - - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires ghc >=8.10.1 && < =8.11 and the snapshot contains ghc-9.6.3 - - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires the disabled package: jni - - inliterate < 0 # tried inliterate-0.1.0, but its *library* requires the disabled package: cheapskate - - instance-control < 0 # tried instance-control-0.1.2.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - instance-control < 0 # tried instance-control-0.1.2.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* requires template-haskell >=2.14.0.0 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - intro < 0 # tried intro-0.9.0.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - intro < 0 # tried intro-0.9.0.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - intro < 0 # tried intro-0.9.0.0, but its *library* requires text >=0.7 && < 1.3 and the snapshot contains text-2.0.2 - - intro < 0 # tried intro-0.9.0.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires template-haskell >=2.14 && < 2.18 and the snapshot contains template-haskell-2.20.0.0 - - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires unicode-transforms ^>=0.3.7 and the snapshot contains unicode-transforms-0.4.0.1 - - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires network-conduit-tls >=1.1 && < 1.4 and the snapshot contains network-conduit-tls-1.4.0 - - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 - - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-1.8.0 - - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires network-conduit-tls >=1.1 && < 1.4 and the snapshot contains network-conduit-tls-1.4.0 - - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-1.8.0 - - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires attoparsec >=0.13.0.1 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires network >=2.6.2.1 && < 2.8 and the snapshot contains network-3.1.4.0 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires path >=0.5.7 && < 0.7 and the snapshot contains path-0.9.5 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - it-has < 0 # tried it-has-0.2.0.0, but its *library* requires generic-lens >=2.0.0.0 && < =2.0.0.0 and the snapshot contains generic-lens-2.2.2.0 - - iterable < 0 # tried iterable-3.0, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - ixset < 0 # tried ixset-1.1.1.2, but its *library* requires the disabled package: syb-with-class - - ixset-typed-conversions < 0 # tried ixset-typed-conversions-0.1.2.0, but its *library* requires the disabled package: zipper-extra - - javascript-extras < 0 # tried javascript-extras-0.5.0.0, but its *library* requires the disabled package: ghcjs-base-stub - - jmacro-rpc-happstack < 0 # tried jmacro-rpc-happstack-0.3.2, but its *library* requires the disabled package: jmacro-rpc - - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: jmacro-rpc - - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires Cabal >=2.4 && < 3.7 and the snapshot contains Cabal-3.10.1.0 - - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires base >=4.5 && < 4.17 and the snapshot contains base-4.18.1.0 - - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires base-compat >=0.9.0 && < 0.12 and the snapshot contains base-compat-0.13.1 - - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires lens >=4.12.3 && < 4.20 and the snapshot contains lens-5.2.3 - - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires text >=0.11.0.6 && < 1.3 and the snapshot contains text-2.0.2 - - jsaddle-dom < 0 # tried jsaddle-dom-0.9.5.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - json-alt < 0 # tried json-alt-1.0.0, but its *library* requires aeson >=1.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *executable* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires aeson >=1.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires lens >=4.1 && < 4.20 and the snapshot contains lens-5.2.3 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires smallcheck >=1.0 && < 1.2 and the snapshot contains smallcheck-1.2.1.1 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires text >=1.1 && < 1.4 and the snapshot contains text-2.0.2 - - json-autotype < 0 # tried json-autotype-3.1.2, but its *library* requires vector >=0.9 && < 0.13 and the snapshot contains vector-0.13.1.0 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires aeson >=0.7 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires base >=4.3.1 && < 4.13 and the snapshot contains base-4.18.1.0 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires text >=0.11.2 && < 1.3 and the snapshot contains text-2.0.2 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - json-rpc-client < 0 # tried json-rpc-client-0.2.5.0, but its *library* requires vector-algorithms >=0.5.4 && < 0.9 and the snapshot contains vector-algorithms-0.9.0.1 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires aeson >=0.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires base >=4.3 && < 4.15 and the snapshot contains base-4.18.1.0 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* requires vector >=0.7.1 && < 0.13 and the snapshot contains vector-0.13.1.0 - - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires http-client >0.5 && < 0.7 and the snapshot contains http-client-0.7.15 - - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - jsonrpc-tinyclient < 0 # tried jsonrpc-tinyclient-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: jni - - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: jni - - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: jni - - kanji < 0 # tried kanji-3.5.0, but its *library* requires aeson ^>=2.0 and the snapshot contains aeson-2.1.2.1 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires aeson >=1.2 && < 1.3 and the snapshot contains aeson-2.1.2.1 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires async >=2.1 && < 2.2 and the snapshot contains async-2.2.5 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires katip >=0.5 && < 0.6 and the snapshot contains katip-0.8.8.0 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires rollbar-hs >=0.2 && < 0.3 and the snapshot contains rollbar-hs-0.3.1.0 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* requires time >=1.8 && < 1.9 and the snapshot contains time-1.12.2 - - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* requires aeson >=1.0 && < 1.4 and the snapshot contains aeson-2.1.2.1 - - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* requires katip >=0.5 && < 0.6 and the snapshot contains katip-0.8.8.0 - - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - koofr-client < 0 # tried koofr-client-1.0.0.3, but its *library* requires aeson >=0.8 && < 2 and the snapshot contains aeson-2.1.2.1 - - kraken < 0 # tried kraken-0.1.0, but its *library* requires base >=4.5 && < 4.14 and the snapshot contains base-4.18.1.0 - - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* requires aeson >=1.4.6 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 - - l10n < 0 # tried l10n-0.1.0.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.0.2 - - language-bash < 0 # tried language-bash-0.9.2, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - language-haskell-extract < 0 # tried language-haskell-extract-0.2.4, but its *library* requires template-haskell < 2.16 and the snapshot contains template-haskell-2.20.0.0 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires servant >=0.9 && < 0.20 and the snapshot contains servant-0.20.1 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires servant-client >=0.9 && < 0.20 and the snapshot contains servant-client-0.20 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires unix >=2.7 && < 2.8 and the snapshot contains unix-2.8.1.0 - - language-thrift < 0 # tried language-thrift-0.12.0.1, but its *library* requires ansi-wl-pprint ==0.6.* and the snapshot contains ansi-wl-pprint-1.0.2 - - large-hashable < 0 # tried large-hashable-0.1.0.4, but its *library* requires template-haskell < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - lens-accelerate < 0 # tried lens-accelerate-0.3.0.0, but its *library* requires lens ==4.* and the snapshot contains lens-5.2.3 - - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* requires lens >=3 && < 5 and the snapshot contains lens-5.2.3 - - lens-family-th < 0 # tried lens-family-th-0.5.2.1, but its *library* requires template-haskell >=2.11 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - lens-process < 0 # tried lens-process-0.4.0.0, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.2.3 - - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires lens-family ==1.2.* and the snapshot contains lens-family-2.1.2 - - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires lens-family-core ==1.2.* and the snapshot contains lens-family-core-2.1.2 - - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - lenz < 0 # tried lenz-0.4.2.0, but its *library* requires the disabled package: hs-functors - - lenz < 0 # tried lenz-0.4.2.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - libgraph < 0 # tried libgraph-1.14, but its *library* requires the disabled package: union-find - - libinfluxdb < 0 # tried libinfluxdb-0.0.4, but its *library* requires base >=4.8 && < 4.11 and the snapshot contains base-4.18.1.0 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires base >=4.13.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires bytestring ^>=0.10.10.0 and the snapshot contains bytestring-0.11.5.2 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires exceptions ==0.10.4 and the snapshot contains exceptions-0.10.7 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires monad-time ==0.3.* and the snapshot contains monad-time-0.4.0.0 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires text >=1.2.3.2 && < 1.2.5 and the snapshot contains text-2.0.2 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires time >=1.9 && < 1.10 and the snapshot contains time-1.12.2 - - libjwt-typed < 0 # tried libjwt-typed-0.2, but its *library* requires transformers ^>=0.5.6.2 and the snapshot contains transformers-0.6.1.0 - - libmpd < 0 # tried libmpd-0.10.0.0, but its *library* requires text >=0.11 && < 2 and the snapshot contains text-2.0.2 - - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: ekg - - licensor < 0 # tried licensor-0.5.0, but its *library* requires Cabal >=3.0.1 && < 3.3 and the snapshot contains Cabal-3.10.1.0 - - licensor < 0 # tried licensor-0.5.0, but its *library* requires base >=4.13.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - linear-accelerate < 0 # tried linear-accelerate-0.7.0.0, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - - linenoise < 0 # tried linenoise-0.3.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - linked-list-with-iterator < 0 # tried linked-list-with-iterator-0.1.1.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires megaparsec >=7.0.0 && < 9 and the snapshot contains megaparsec-9.4.1 - - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires rest-rewrite >=0.1.1 && < 0.2 and the snapshot contains rest-rewrite-0.4.2 - - list-witnesses < 0 # tried list-witnesses-0.1.4.0, but its *library* requires the disabled package: decidable - - list-witnesses < 0 # tried list-witnesses-0.1.4.0, but its *library* requires the disabled package: functor-products - - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* requires bytestring >=0.10 && < 0.11.3 and the snapshot contains bytestring-0.11.5.2 - - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires aeson ^>=1.4 and the snapshot contains aeson-2.1.2.1 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires ansi-terminal >=0.7 && < 1.0 and the snapshot contains ansi-terminal-1.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires mmorph ^>=1.1 and the snapshot contains mmorph-1.2.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires mtl ^>=2.2.1 and the snapshot contains mtl-2.3.1 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires o-clock ^>=1.1 and the snapshot contains o-clock-1.4.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires text ^>=1.2.2.0 and the snapshot contains text-2.0.2 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires transformers ^>=0.5.2 and the snapshot contains transformers-0.6.1.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires universum ^>=1.6.0 and the snapshot contains universum-1.8.2 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* requires vector ^>=0.12 and the snapshot contains vector-0.13.1.0 - - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* requires ghc >=8.6 && < 8.9 and the snapshot contains ghc-9.6.3 - - lrucaching < 0 # tried lrucaching-0.3.3, but its *library* requires base-compat >=0.9 && < 0.13 and the snapshot contains base-compat-0.13.1 - - lrucaching < 0 # tried lrucaching-0.3.3, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires aeson >=1.0.2.1 && < 2 and the snapshot contains aeson-2.1.2.1 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires network >=2.6.3.2 && < 3 and the snapshot contains network-3.1.4.0 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires servant >=0.11 && < 0.14 and the snapshot contains servant-0.20.1 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires servant-client >=0.11 && < 0.14 and the snapshot contains servant-client-0.20 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* requires text >=1.2.2.2 && < 2 and the snapshot contains text-2.0.2 - - lxd-client-config < 0 # tried lxd-client-config-0.1.0.1, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - lzma-conduit < 0 # tried lzma-conduit-1.2.3, but its *library* requires resourcet >=1.1.0 && < 1.3 and the snapshot contains resourcet-1.3.0 - - lzma-conduit < 0 # tried lzma-conduit-1.2.3, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires the disabled package: machines-io - - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-wai - - mail-pool < 0 # tried mail-pool-2.2.3, but its *library* requires the disabled package: HaskellNet-SSL - - makefile < 0 # tried makefile-1.1.0.0, but its *library* requires attoparsec >=0.12 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - makefile < 0 # tried makefile-1.1.0.0, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 - - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires megaparsec >=6 && < 7 and the snapshot contains megaparsec-9.4.1 - - marvin < 0 # tried marvin-0.2.5, but its *library* requires aeson >=0.11 && < 1.3 and the snapshot contains aeson-2.1.2.1 - - marvin < 0 # tried marvin-0.2.5, but its *library* requires http-client >=0.4 && < 0.6 and the snapshot contains http-client-0.7.15 - - marvin < 0 # tried marvin-0.2.5, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - - marvin < 0 # tried marvin-0.2.5, but its *library* requires text-icu >=0.6 && < 0.8 and the snapshot contains text-icu-0.8.0.4 - - marvin < 0 # tried marvin-0.2.5, but its *library* requires the disabled package: marvin-interpolate - - massiv-persist < 0 # tried massiv-persist-1.0.0.3, but its *library* requires the disabled package: persist - - mbox < 0 # tried mbox-0.3.4, but its *library* requires time < 1.10 and the snapshot contains time-1.12.2 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires extra >=1.6.14 && < 1.7 and the snapshot contains extra-1.7.14 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires formatting >=6.3.7 && < 6.4 and the snapshot contains formatting-7.2.0 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires http-client >=0.5.14 && < 0.6 and the snapshot contains http-client-0.7.15 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires optparse-applicative >=0.14.3.0 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires scalpel-core >=0.5.1 && < 0.6 and the snapshot contains scalpel-core-0.6.2.2 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires time >=1.8.0.2 && < 1.9 and the snapshot contains time-1.12.2 - - medea < 0 # tried medea-1.2.0, but its *library* requires aeson >=1.4.6.0 && < 2.0.0.0 and the snapshot contains aeson-2.1.2.1 - - medea < 0 # tried medea-1.2.0, but its *library* requires algebraic-graphs ^>=0.5 and the snapshot contains algebraic-graphs-0.7 - - medea < 0 # tried medea-1.2.0, but its *library* requires bytestring ^>=0.10.8.2 and the snapshot contains bytestring-0.11.5.2 - - medea < 0 # tried medea-1.2.0, but its *library* requires free ^>=5.1.3 and the snapshot contains free-5.2 - - medea < 0 # tried medea-1.2.0, but its *library* requires hashable >=1.2.7.0 && < 1.4.0.0 and the snapshot contains hashable-1.4.3.0 - - medea < 0 # tried medea-1.2.0, but its *library* requires mtl ^>=2.2.2 and the snapshot contains mtl-2.3.1 - - medea < 0 # tried medea-1.2.0, but its *library* requires text ^>=1.2.3.1 and the snapshot contains text-2.0.2 - - medea < 0 # tried medea-1.2.0, but its *library* requires vector ^>=0.12.0.3 and the snapshot contains vector-0.13.1.0 - - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - memory-hexstring < 0 # tried memory-hexstring-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - menshen < 0 # tried menshen-0.0.3, but its *library* requires regex-tdfa >=1.2.3.1 && < 1.3 and the snapshot contains regex-tdfa-1.3.2.2 - - menshen < 0 # tried menshen-0.0.3, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *executable* requires optparse-applicative >=0.13 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 - - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires ansi-terminal >=0.6.2.3 && < 0.12 and the snapshot contains ansi-terminal-1.0 - - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - microlens-process < 0 # tried microlens-process-0.2.0.2, but its *library* requires microlens >=0.3 && < 0.4.13 and the snapshot contains microlens-0.4.13.1 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires http-api-data >=0.3 && < 0.5 and the snapshot contains http-api-data-0.5.1 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires servant >=0.13 && < 0.16 and the snapshot contains servant-0.20.1 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires servant-client >=0.13 && < 0.16 and the snapshot contains servant-client-0.20 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires lens >=4.4 && < 4.20 and the snapshot contains lens-5.2.3 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires network >=2.4 && < 3.0 and the snapshot contains network-3.1.4.0 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires resource-pool >=0.2.3.2 && < 0.3 and the snapshot contains resource-pool-0.4.0.0 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires semigroups >=0.16.2.2 && < 0.19 and the snapshot contains semigroups-0.20 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src-th-mode - - minio-hs < 0 # tried minio-hs-1.7.0, but its *library* requires the disabled package: connection - - model < 0 # tried model-0.5, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *library* requires the disabled package: regex-tdfa-text - - moffy-samples-gtk4 < 0 # tried moffy-samples-gtk4-0.1.0.0, but its *executable* requires the disabled package: moffy-samples-gtk4-run - - mole < 0 # tried mole-0.0.7, but its *executable* requires base >=4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *executable* requires transformers ^>=0.5.6 and the snapshot contains transformers-0.6.1.0 - - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires base >=4.15 && < 4.18 and the snapshot contains base-4.18.1.0 - - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires brick >=1.0 && < 2.0 and the snapshot contains brick-2.1.1 - - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires free >=5.0.2 && < 5.2 and the snapshot contains free-5.2 - - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires mtl ^>=2.2.2 and the snapshot contains mtl-2.3.1 - - monad-bayes < 0 # tried monad-bayes-1.2.0, but its *library* requires vty ^>=5.38 and the snapshot contains vty-6.1 - - monad-journal < 0 # tried monad-journal-0.8.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - monad-journal < 0 # tried monad-journal-0.8.1, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - monad-logger-prefix < 0 # tried monad-logger-prefix-0.1.12, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - monad-logger-prefix < 0 # tried monad-logger-prefix-0.1.12, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 - - monad-logger-prefix < 0 # tried monad-logger-prefix-0.1.12, but its *library* requires transformers >=0.4.0 && < 0.5.7 and the snapshot contains transformers-0.6.1.0 - - monad-mock < 0 # tried monad-mock-0.2.0.0, but its *library* requires template-haskell >=2.10.0.0 && < 2.13 and the snapshot contains template-haskell-2.20.0.0 - - monad-products < 0 # tried monad-products-4.0.1, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.0.1 - - monad-skeleton < 0 # tried monad-skeleton-0.2, but its *library* requires base >=4.9 && < 4.17 and the snapshot contains base-4.18.1.0 - - monad-unlift-ref < 0 # tried monad-unlift-ref-0.2.1, but its *library* requires the disabled package: monad-unlift - - monadic-arrays < 0 # tried monadic-arrays-0.2.2, but its *library* requires transformers >=0.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - morpheus-graphql < 0 # tried morpheus-graphql-0.27.3, but its *library* requires the disabled package: morpheus-graphql-code-gen - - morpheus-graphql-code-gen < 0 # tried morpheus-graphql-code-gen-0.27.3, but its *executable* requires optparse-applicative >=0.12.0 && < 0.18.0 and the snapshot contains optparse-applicative-0.18.1.0 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires blaze-builder ==0.3.* and the snapshot contains blaze-builder-0.4.2.3 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires filepath >=1.1 && < 1.4 and the snapshot contains filepath-1.4.100.4 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires msgpack ==0.7.* and the snapshot contains msgpack-1.0.1.0 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires shakespeare-text ==1.0.* and the snapshot contains shakespeare-text-1.1.0 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires template-haskell >=2.5 && < 2.9 and the snapshot contains template-haskell-2.20.0.0 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires base >=4.8 && < 4.13 and the snapshot contains base-4.18.1.0 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires binary-conduit >=1.2.3 && < 1.3 and the snapshot contains binary-conduit-1.3.1 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires conduit >=1.2.3.1 && < 1.3 and the snapshot contains conduit-1.3.5 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires conduit-extra >=1.1.3.4 && < 1.3 and the snapshot contains conduit-extra-1.3.6 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires network >=2.6 && < 2.9 || >=3.0 && < 3.1 and the snapshot contains network-3.1.4.0 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires random >=1.1 && < 1.2 and the snapshot contains random-1.2.1.1 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - mstate < 0 # tried mstate-0.2.10, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - mwc-random-accelerate < 0 # tried mwc-random-accelerate-0.2.0.0, but its *library* requires the disabled package: accelerate - - mwc-random-monad < 0 # tried mwc-random-monad-0.7.3.1, but its *library* requires the disabled package: monad-primitive - - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires mysql-haskell >=0.8.3 && < 0.8.5 and the snapshot contains mysql-haskell-1.1.3 - - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: tcp-streams - - n2o-web < 0 # tried n2o-web-0.11.2, but its *library* requires the disabled package: n2o-protocols - - nakadi-client < 0 # tried nakadi-client-0.7.0.0, but its *library* requires resourcet >=1.2.0 && < 1.3 and the snapshot contains resourcet-1.3.0 - - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* requires base >=4.10 && < 4.13 and the snapshot contains base-4.18.1.0 - - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: hexstring - - network-anonymous-tor < 0 # tried network-anonymous-tor-0.11.0, but its *library* requires the disabled package: network-attoparsec - - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires network < 3 and the snapshot contains network-3.1.4.0 - - next-ref < 0 # tried next-ref-0.1.0.2, but its *library* requires stm >=2.2 && < 2.5 and the snapshot contains stm-2.5.1.0 - - nonemptymap < 0 # tried nonemptymap-0.0.6.0, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.0.1 - - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires text >=1.1.1 && < 1.3 and the snapshot contains text-2.0.2 - - nri-env-parser < 0 # tried nri-env-parser-0.1.0.8, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-env-parser < 0 # tried nri-env-parser-0.1.0.8, but its *library* requires the disabled package: nri-prelude - - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires the disabled package: nri-prelude - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires hw-kafka-client >=4.0.3 && < 5.0 and the snapshot contains hw-kafka-client-5.3.0 - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires the disabled package: nri-prelude - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires unix >=2.7.2.2 && < 2.8.0.0 and the snapshot contains unix-2.8.1.0 - - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires the disabled package: nri-prelude - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires resource-pool >=0.2.0.0 && < 0.3 and the snapshot contains resource-pool-0.4.0.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires resourcet >=1.2.0 && < 1.3 and the snapshot contains resourcet-1.3.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires template-haskell >=2.15.0.0 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires the disabled package: nri-prelude - - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires resourcet >=1.2.0 && < 1.3 and the snapshot contains resourcet-1.3.0 - - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires the disabled package: nri-prelude - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires aeson >=1.4.6.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires base >=4.12.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires servant >=0.16.2 && < 0.19 and the snapshot contains servant-0.20.1 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires servant-server >=0.16.2 && < 0.19 and the snapshot contains servant-server-0.20 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires the disabled package: nri-prelude - - numhask-prelude < 0 # tried numhask-prelude-0.5.0, but its *library* requires numhask >=0.3 && < 0.6 and the snapshot contains numhask-0.11.1.0 - - ochintin-daicho < 0 # tried ochintin-daicho-0.3.4.2, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - oeis < 0 # tried oeis-0.3.10, but its *library* requires HTTP >=4000.2 && < 4000.4 and the snapshot contains HTTP-4000.4.1 - - oset < 0 # tried oset-0.4.0.1, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 - - packdeps < 0 # tried packdeps-0.6.0.0, but its *executable* requires optparse-applicative >=0.14 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 - - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* requires Cabal >=3.2 && < 3.3 and the snapshot contains Cabal-3.10.1.0 - - pairing < 0 # tried pairing-1.1.0, but its *library* requires MonadRandom >=0.5.1 && < 0.6 and the snapshot contains MonadRandom-0.6 - - pairing < 0 # tried pairing-1.1.0, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - pairing < 0 # tried pairing-1.1.0, but its *library* requires groups >=0.4.1 && < 0.5 and the snapshot contains groups-0.5.3 - - pairing < 0 # tried pairing-1.1.0, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.3 - - pandoc-csv2table < 0 # tried pandoc-csv2table-1.0.9, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires hegg >=0.3.0 && < 0.4 and the snapshot contains hegg-0.5.0.0 - - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires monads-tf ==0.1.* and the snapshot contains monads-tf-0.3.0.1 - - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires template-haskell ==2.15.* and the snapshot contains template-haskell-2.20.0.0 - - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires transformers ==0.5.* and the snapshot contains transformers-0.6.1.0 - - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires parser-combinators >=1.0 && < 1.3 and the snapshot contains parser-combinators-1.3.0 - - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 - - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires bytestring >=0.10 && < 0.11.4 and the snapshot contains bytestring-0.11.5.2 - - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires memory >=0.16 && < 0.18 and the snapshot contains memory-0.18.0 - - path-formatting < 0 # tried path-formatting-0.1.0.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 - - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires the disabled package: file-io - - pattern-arrows < 0 # tried pattern-arrows-0.0.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - peggy < 0 # tried peggy-0.3.2, but its *library* requires ListLike ==3.1.* and the snapshot contains ListLike-4.7.8.2 - - peggy < 0 # tried peggy-0.3.2, but its *library* requires hashtables ==1.0.* and the snapshot contains hashtables-1.3.1 - - peggy < 0 # tried peggy-0.3.2, but its *library* requires monad-control ==0.3.* and the snapshot contains monad-control-1.0.3.1 - - peggy < 0 # tried peggy-0.3.2, but its *library* requires template-haskell >=2.5 && < 2.9 and the snapshot contains template-haskell-2.20.0.0 - - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires MonadRandom >=0.5.1.1 && < 0.6 and the snapshot contains MonadRandom-0.6 - - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 - - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires primitive >=0.6.4 && < 0.8 and the snapshot contains primitive-0.8.0.0 - - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* requires vector >=0.12.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - persist < 0 # tried persist-0.1.1.5, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - persistent-mtl < 0 # tried persistent-mtl-0.5.0.1, but its *library* requires the disabled package: unliftio-pool - - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* requires mysql-haskell >=0.8.0.0 && < 1.0 and the snapshot contains mysql-haskell-1.1.3 - - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* requires tls >=1.3.5 && < 1.5 and the snapshot contains tls-1.8.0 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires postgresql-simple >=0.6 && < 0.7 and the snapshot contains postgresql-simple-0.7.0.0 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires scotty >=0.11.0 && < 0.12 and the snapshot contains scotty-0.20.1 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires text >=1.1.0 && < 2 and the snapshot contains text-2.0.2 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - picedit < 0 # tried picedit-0.2.3.0, but its *executable* requires the disabled package: cli - - picedit < 0 # tried picedit-0.2.3.0, but its *library* requires JuicyPixels >=3.2.8 && < 3.3 and the snapshot contains JuicyPixels-3.3.8 - - picedit < 0 # tried picedit-0.2.3.0, but its *library* requires hmatrix >=0.17.0.2 && < 0.19 and the snapshot contains hmatrix-0.20.2 - - picedit < 0 # tried picedit-0.2.3.0, but its *library* requires vector >=0.11.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - picosat < 0 # tried picosat-0.1.6, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires Cabal ==2.2.* and the snapshot contains Cabal-3.10.1.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires aeson >=1.3 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires base ==4.11.* and the snapshot contains base-4.18.1.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires binary-orphans ==0.1.* and the snapshot contains binary-orphans-1.0.4.1 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires shake ==0.16.* and the snapshot contains shake-0.19.7 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires text ==1.2.* and the snapshot contains text-2.0.2 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires transformers ==0.5.* and the snapshot contains transformers-0.6.1.0 - - pier < 0 # tried pier-0.3.0.0, but its *executable* requires yaml >=0.8 && < 0.11 and the snapshot contains yaml-0.11.11.2 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires Cabal ==2.2.* and the snapshot contains Cabal-3.10.1.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires base ==4.11.* and the snapshot contains base-4.18.1.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires base64-bytestring ==1.0.* and the snapshot contains base64-bytestring-1.2.1.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires hashable ==1.2.* and the snapshot contains hashable-1.4.3.0 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires http-client ==0.5.* and the snapshot contains http-client-0.7.15 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires shake >=0.16.4 && < 0.17 and the snapshot contains shake-0.19.7 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* requires unix ==2.7.* and the snapshot contains unix-2.8.1.0 - - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires bytestring >=0.10.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires vector >=0.10.9 && < 0.13 and the snapshot contains vector-0.13.1.0 - - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires the disabled package: pipes-category - - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: network-simple-tls - - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: pipes-network - - pixelated-avatar-generator < 0 # tried pixelated-avatar-generator-0.1.3, but its *executable* requires the disabled package: cli - - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires base >=4.7 && < 4.13 || ^>=4.13 and the snapshot contains base-4.18.1.0 - - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires haskell-src-exts-simple >=1.18 && < 1.21 || ^>=1.21 and the snapshot contains haskell-src-exts-simple-1.23.0.0 - - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires mtl >=2 && < 2.2 || ^>=2.2 and the snapshot contains mtl-2.3.1 - - pointful < 0 # tried pointful-1.1.0.0, but its *library* requires transformers >=0.2 && < 0.5 || ^>=0.5 and the snapshot contains transformers-0.6.1.0 - - polysemy-extra < 0 # tried polysemy-extra-0.2.1.0, but its *library* requires polysemy >=1.4 && < 1.8 and the snapshot contains polysemy-1.9.1.3 - - polysemy-fskvstore < 0 # tried polysemy-fskvstore-0.1.2.0, but its *library* requires polysemy >=1.4.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 - - polysemy-kvstore < 0 # tried polysemy-kvstore-0.1.3.0, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 - - polysemy-kvstore-jsonfile < 0 # tried polysemy-kvstore-jsonfile-0.1.1.0, but its *library* requires aeson >=1.0 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - polysemy-kvstore-jsonfile < 0 # tried polysemy-kvstore-jsonfile-0.1.1.0, but its *library* requires base >=4.7 && < 4.16 and the snapshot contains base-4.18.1.0 - - polysemy-kvstore-jsonfile < 0 # tried polysemy-kvstore-jsonfile-0.1.1.0, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 - - polysemy-methodology < 0 # tried polysemy-methodology-0.2.2.0, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 - - polysemy-methodology < 0 # tried polysemy-methodology-0.2.2.0, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 - - polysemy-path < 0 # tried polysemy-path-0.2.1.0, but its *library* requires base >=4.7 && < 4.16 and the snapshot contains base-4.18.1.0 - - polysemy-path < 0 # tried polysemy-path-0.2.1.0, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 - - polysemy-several < 0 # tried polysemy-several-0.1.1.0, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 - - polysemy-several < 0 # tried polysemy-several-0.1.1.0, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 - - polysemy-socket < 0 # tried polysemy-socket-0.0.2.0, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 - - polysemy-uncontrolled < 0 # tried polysemy-uncontrolled-0.1.1.1, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.18.1.0 - - polysemy-uncontrolled < 0 # tried polysemy-uncontrolled-0.1.1.1, but its *library* requires polysemy >=1.3.0.0 && < 1.8 and the snapshot contains polysemy-1.9.1.3 - - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 - - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires polysemy >=1.3.0.0 && < 1.7 and the snapshot contains polysemy-1.9.1.3 - - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* requires turtle >=1.0 && < 1.6 and the snapshot contains turtle-1.6.2 - - polysemy-vinyl < 0 # tried polysemy-vinyl-0.1.5.0, but its *library* requires polysemy >=1.3 && < 1.7 and the snapshot contains polysemy-1.9.1.3 - - polysemy-vinyl < 0 # tried polysemy-vinyl-0.1.5.0, but its *library* requires vinyl >=0.10.0 && < 0.14 and the snapshot contains vinyl-0.14.3 - - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires ghc-prim >=0.5.2 && < 0.10 and the snapshot contains ghc-prim-0.10.0 - - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* requires base >=4.6.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* requires containers >=0.5.9.2 && < =0.6.4.1 and the snapshot contains containers-0.6.7 - - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* requires ghc-prim >=0.4 && < 0.7 and the snapshot contains ghc-prim-0.10.0 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires HTTP >=4000.3.7 && < 4000.4 and the snapshot contains HTTP-4000.4.1 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires aeson >=1.4.7 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires base >=4.9 && < 4.16 and the snapshot contains base-4.18.1.0 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires hasql >=1.4 && < 1.5 and the snapshot contains hasql-1.6.3.4 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires hasql-dynamic-statements ==0.3.1 and the snapshot contains hasql-dynamic-statements-0.3.1.2 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires hasql-pool >=0.5 && < 0.6 and the snapshot contains hasql-pool-0.10 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires jose >=0.8.1 && < 0.9 and the snapshot contains jose-0.10.0.1 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires lens >=4.14 && < 5.1 and the snapshot contains lens-5.2.3 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires lens-aeson >=1.0.1 && < 1.2 and the snapshot contains lens-aeson-1.2.3 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires optparse-applicative >=0.13 && < 0.17 and the snapshot contains optparse-applicative-0.18.1.0 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires swagger2 >=2.4 && < 2.7 and the snapshot contains swagger2-2.8.7 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires time >=1.6 && < 1.11 and the snapshot contains time-1.12.2 - - postgrest < 0 # tried postgrest-9.0.1, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - prairie < 0 # tried prairie-0.0.2.0, but its *library* requires template-haskell >=2.15 && < 2.20 and the snapshot contains template-haskell-2.20.0.0 - - pred-trie < 0 # tried pred-trie-0.6.1, but its *library* requires the disabled package: tries - - pretty-diff < 0 # tried pretty-diff-0.4.0.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires containers >=0.5.6 && < 0.6 and the snapshot contains containers-0.6.7 - - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires lens >=4.10 && < 4.16 and the snapshot contains lens-5.2.3 - - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires transformers >=0.4.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - profiterole < 0 # tried profiterole-0.1, but its *executable* requires the disabled package: ghc-prof - - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires the disabled package: ghc-prof - - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - proto-lens-arbitrary < 0 # tried proto-lens-arbitrary-0.1.2.11, but its *library* requires base >=4.10 && < 4.17 and the snapshot contains base-4.18.1.0 - - proto-lens-optparse < 0 # tried proto-lens-optparse-0.1.1.10, but its *library* requires optparse-applicative >=0.13 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - proto-lens-protobuf-types < 0 # tried proto-lens-protobuf-types-0.7.1.2, but its *library* requires base >=4.10 && < 4.17 and the snapshot contains base-4.18.1.0 - - proto-lens-protoc < 0 # tried proto-lens-protoc-0.7.1.1, but its *executable* requires ghc >=8.2 && < 9.3 and the snapshot contains ghc-9.6.3 - - proto-lens-protoc < 0 # tried proto-lens-protoc-0.7.1.1, but its *library* requires base >=4.9 && < 4.17 and the snapshot contains base-4.18.1.0 - - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.6, but its *library* requires Cabal >=2.0 && < 3.7 and the snapshot contains Cabal-3.10.1.0 - - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.6, but its *library* requires base >=4.10 && < 4.17 and the snapshot contains base-4.18.1.0 - - protocol-buffers-descriptor < 0 # tried protocol-buffers-descriptor-2.4.17, but its *library* requires the disabled package: protocol-buffers - - publicsuffix < 0 # tried publicsuffix-0.20200526, but its *library* requires base >=4 && < 4.15 and the snapshot contains base-4.18.1.0 - - pure-io < 0 # tried pure-io-0.2.1, but its *library* requires base >=4.5 && < 4.11 and the snapshot contains base-4.18.1.0 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* requires optparse-applicative >=0.14.2.0 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *library* requires bytestring >=0.10.0.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *library* requires the disabled package: cipher-aes128 - - questioner < 0 # tried questioner-0.1.1.0, but its *library* requires ansi-terminal >=0.6 && < 0.7 and the snapshot contains ansi-terminal-1.0 - - questioner < 0 # tried questioner-0.1.1.0, but its *library* requires the disabled package: readline - - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *executable* requires ansi-wl-pprint >=0.6 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - queue-sheet < 0 # tried queue-sheet-0.7.0.2, but its *library* requires ttc >=1.1 && < 1.3 and the snapshot contains ttc-1.4.0.0 - - quickbench < 0 # tried quickbench-1.0.1, but its *library* requires the disabled package: docopt - - quickcheck-arbitrary-template < 0 # tried quickcheck-arbitrary-template-0.2.1.1, but its *library* requires template-haskell >=2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.6, but its *library* requires the disabled package: unfoldable-restricted - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires aeson >=1.0.2.1 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires connection >=0.2.7 && < 0.3 and the snapshot contains connection-0.3.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires constraints >=0.9.1 && < 0.11 and the snapshot contains constraints-0.13.4 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires extensible >=0.4.7.2 && < 0.4.11 and the snapshot contains extensible-0.9 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires http-api-data >=0.3.5 && < 0.3.9 and the snapshot contains http-api-data-0.5.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires http-client >=0.5.5.0 && < 0.6 and the snapshot contains http-client-0.7.15 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires lens >=4.15.3 && < 5.0 and the snapshot contains lens-5.2.3 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires req >=0.3.0 && < 1.3.0 and the snapshot contains req-3.13.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires text >=1.2.2.1 && < 1.3 and the snapshot contains text-2.0.2 - - random-source < 0 # tried random-source-0.3.0.13, but its *library* requires base >=4 && < 4.16 and the snapshot contains base-4.18.1.0 - - random-source < 0 # tried random-source-0.3.0.13, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - rdf < 0 # tried rdf-0.1.0.7, but its *library* requires bytestring >=0.10 && < 0.11.5 and the snapshot contains bytestring-0.11.5.2 - - reanimate < 0 # tried reanimate-1.1.6.0, but its *library* requires aeson >=1.3.0.0 && < 2 and the snapshot contains aeson-2.1.2.1 - - reanimate < 0 # tried reanimate-1.1.6.0, but its *library* requires the disabled package: reanimate-svg - - rec-smallarray < 0 # tried rec-smallarray-0.1.0.0, but its *library* requires base >=4.12 && < =4.17 and the snapshot contains base-4.18.1.0 - - rec-smallarray < 0 # tried rec-smallarray-0.1.0.0, but its *library* requires primitive >=0.6.4 && < 0.8 and the snapshot contains primitive-0.8.0.0 - - record-dot-preprocessor < 0 # tried record-dot-preprocessor-0.2.16, but its *library* requires ghc >=8.6 && < 9.5 and the snapshot contains ghc-9.6.3 - - redis-io < 0 # tried redis-io-1.1.0, but its *library* requires the disabled package: tinylog - - reform < 0 # tried reform-0.2.7.5, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - reform-blaze < 0 # tried reform-blaze-0.2.4.4, but its *library* requires the disabled package: reform - - reform-hamlet < 0 # tried reform-hamlet-0.0.5.3, but its *library* requires shakespeare >=2.0 && < 2.1 and the snapshot contains shakespeare-2.1.0.1 - - reform-hamlet < 0 # tried reform-hamlet-0.0.5.3, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - reform-happstack < 0 # tried reform-happstack-0.2.5.6, but its *library* requires the disabled package: reform - - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsp - - regex-applicative-text < 0 # tried regex-applicative-text-0.1.0.1, but its *library* requires base >=4.3 && < 4.18 and the snapshot contains base-4.18.1.0 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires regex-base ==0.93.* and the snapshot contains regex-base-0.94.0.2 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires regex-pcre-builtin ==0.94.* and the snapshot contains regex-pcre-builtin-0.95.2.3.8.44 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - regex-tdfa-text < 0 # tried regex-tdfa-text-1.0.0.3, but its *library* requires regex-base < 0.94 and the snapshot contains regex-base-0.94.0.2 - - registry < 0 # tried registry-0.6.1.0, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 - - registry < 0 # tried registry-0.6.1.0, but its *library* requires semigroupoids >=5.0 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 - - registry-aeson < 0 # tried registry-aeson-0.3.0.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 - - registry-hedgehog < 0 # tried registry-hedgehog-0.8.1.0, but its *library* requires the disabled package: registry - - registry-hedgehog-aeson < 0 # tried registry-hedgehog-aeson-0.3.0.0, but its *library* requires tasty-discover >=2 && < 5 and the snapshot contains tasty-discover-5.0.0 - - registry-hedgehog-aeson < 0 # tried registry-hedgehog-aeson-0.3.0.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 - - registry-options < 0 # tried registry-options-0.2.0.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 - - rel8 < 0 # tried rel8-1.4.1.0, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 and the snapshot contains base-4.18.1.0 - - rel8 < 0 # tried rel8-1.4.1.0, but its *library* requires opaleye ^>=0.9.6.1 and the snapshot contains opaleye-0.10.2.0 - - reorder-expression < 0 # tried reorder-expression-0.1.0.0, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 - - repa < 0 # tried repa-3.4.1.5, but its *library* requires base >=4.8 && < 4.17 and the snapshot contains base-4.18.1.0 - - repa-algorithms < 0 # tried repa-algorithms-3.4.1.5, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - repa-io < 0 # tried repa-io-3.4.1.2, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* requires req >=2.0.0 && < 2.1.0 and the snapshot contains req-3.13.1 - - require < 0 # tried require-0.4.11, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - require < 0 # tried require-0.4.11, but its *library* requires text >=1.2.3.0 && < 2 and the snapshot contains text-2.0.2 - - rethinkdb-client-driver < 0 # tried rethinkdb-client-driver-0.0.25, but its *library* requires base < 4.15 and the snapshot contains base-4.18.1.0 - - rev-state < 0 # tried rev-state-0.1.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - rhine < 0 # tried rhine-1.1, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - rhine < 0 # tried rhine-1.1, but its *library* requires the disabled package: dunai - - rhine-gloss < 0 # tried rhine-gloss-1.1, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - rhine-gloss < 0 # tried rhine-gloss-1.1, but its *library* requires the disabled package: dunai - - riak < 0 # tried riak-1.2.0.0, but its *library* requires aeson >=0.8 && < 1.5.7 and the snapshot contains aeson-2.1.2.1 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires attoparsec >=0.12.1.6 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires network >=3.0 && < 3.1 and the snapshot contains network-3.1.4.0 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires resource-pool ==0.2.* and the snapshot contains resource-pool-0.4.0.0 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires text ==1.2.* and the snapshot contains text-2.0.2 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires time >=1.4.2 && < 1.10 and the snapshot contains time-1.12.2 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - riak < 0 # tried riak-1.2.0.0, but its *library* requires vector >=0.10.12.3 && < 0.13 and the snapshot contains vector-0.13.1.0 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires network >=2.6 && < 2.8 and the snapshot contains network-3.1.4.0 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 - - safe-exceptions-checked < 0 # tried safe-exceptions-checked-0.1.0, but its *library* requires transformers >=0.2.0.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires singletons >=2.5 && < 2.8 and the snapshot contains singletons-3.0.2 - - salak < 0 # tried salak-0.3.6, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - salak < 0 # tried salak-0.3.6, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - salak < 0 # tried salak-0.3.6, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 - - salak < 0 # tried salak-0.3.6, but its *library* requires time >=1.8.0 && < 1.11 and the snapshot contains time-1.12.2 - - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 - - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires the disabled package: tomland - - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires time >=1.8.0 && < 1.10 and the snapshot contains time-1.12.2 - - salak-yaml < 0 # tried salak-yaml-0.3.5.3, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.0.2 - - scale < 0 # tried scale-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - scale < 0 # tried scale-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - scale < 0 # tried scale-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - scale < 0 # tried scale-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - scale < 0 # tried scale-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - scale < 0 # tried scale-1.0.0.0, but its *library* requires vector >0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires containers >=0.5.7.1 && < 0.6 and the snapshot contains containers-0.6.7 - - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires text >=1.2.0.0 && < 2 and the snapshot contains text-2.0.2 - - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires aeson >=1 && < 1.4.3.0 and the snapshot contains aeson-2.1.2.1 - - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: validationt - - selda < 0 # tried selda-0.5.2.0, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - selda < 0 # tried selda-0.5.2.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - selda < 0 # tried selda-0.5.2.0, but its *library* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 - - selda-json < 0 # tried selda-json-0.1.1.1, but its *library* requires aeson >=1.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - selda-json < 0 # tried selda-json-0.1.1.1, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires postgresql-binary >=0.12 && < 0.13 and the snapshot contains postgresql-binary-0.13.1.2 - - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires postgresql-libpq >=0.9 && < 0.10 and the snapshot contains postgresql-libpq-0.10.0.0 - - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 - - selda-sqlite < 0 # tried selda-sqlite-0.1.7.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - selda-sqlite < 0 # tried selda-sqlite-0.1.7.2, but its *library* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 - - semigroupoid-extras < 0 # tried semigroupoid-extras-5, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.0.1 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires aeson >=0.11 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires base >=4.11 && < 4.14 and the snapshot contains base-4.18.1.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires http-client >=0.5.6 && < 0.7 and the snapshot contains http-client-0.7.15 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires lens >=4.15 && < 4.20 and the snapshot contains lens-5.2.3 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires optparse-applicative >=0.12 && < 0.16 and the snapshot contains optparse-applicative-0.18.1.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires text >=1.2.2 && < 1.3 and the snapshot contains text-2.0.2 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires time >=1.5.0.1 && < 1.10 and the snapshot contains time-1.12.2 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires unix < 2.8 and the snapshot contains unix-2.8.1.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires unix-compat < 0.6 and the snapshot contains unix-compat-0.7.1 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - seqloc < 0 # tried seqloc-0.6.1.1, but its *library* requires the disabled package: biocore - - serf < 0 # tried serf-0.1.1.0, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires blaze-builder >=0.4 && < 0.4.1 and the snapshot contains blaze-builder-0.4.2.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires cryptonite >=0.14 && < 0.25 and the snapshot contains cryptonite-0.30 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires exceptions >=0.8 && < 0.9 and the snapshot contains exceptions-0.10.7 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires http-api-data ==0.3.* and the snapshot contains http-api-data-0.5.1 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires http-types >=0.9 && < 0.12 and the snapshot contains http-types-0.12.4 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires memory >=0.11 && < 0.15 and the snapshot contains memory-0.18.0 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires servant >=0.5 && < 0.13 and the snapshot contains servant-0.20.1 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires servant-server >=0.5 && < 0.13 and the snapshot contains servant-server-0.20 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires time >=1.6 && < 1.8.1 and the snapshot contains time-1.12.2 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - servant-auth-wordpress < 0 # tried servant-auth-wordpress-1.0.0.2, but its *library* requires servant-server >=0.14 && < 0.20 and the snapshot contains servant-server-0.20 - - servant-auth-wordpress < 0 # tried servant-auth-wordpress-1.0.0.2, but its *library* requires the disabled package: wordpress-auth - - servant-cassava < 0 # tried servant-cassava-0.10.2, but its *library* requires base-compat >=0.9.1 && < 0.13 and the snapshot contains base-compat-0.13.1 - - servant-cassava < 0 # tried servant-cassava-0.10.2, but its *library* requires servant >=0.7 && < 0.20 and the snapshot contains servant-0.20.1 - - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* requires aeson >=1.4.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* requires servant >=0.15 && < 0.19 and the snapshot contains servant-0.20.1 - - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - servant-errors < 0 # tried servant-errors-0.1.7.0, but its *library* requires aeson >=1.3 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - servant-errors < 0 # tried servant-errors-0.1.7.0, but its *library* requires base >=4.10.0.0 && < 4.15 and the snapshot contains base-4.18.1.0 - - servant-js < 0 # tried servant-js-0.9.4.2, but its *executable* requires aeson >=1.4.1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires containers >=0.5.7 && < 0.6.1 and the snapshot contains containers-0.6.7 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires formatting >=6.2 && < 6.4 and the snapshot contains formatting-7.2.0 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires lens >=4.15 && < 4.18 and the snapshot contains lens-5.2.3 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires servant >=0.9 && < 0.17 and the snapshot contains servant-0.20.1 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires servant-foreign >=0.9 && < 0.16 and the snapshot contains servant-foreign-0.16 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires QuickCheck >=2.12.6.1 && < 2.14 and the snapshot contains QuickCheck-2.14.3 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires base >=4.9 && < 4.14 and the snapshot contains base-4.18.1.0 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires base-compat >=0.10.5 && < 0.12 and the snapshot contains base-compat-0.13.1 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires servant >=0.17 && < 0.19 and the snapshot contains servant-0.20.1 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires servant-server >=0.17 && < 0.19 and the snapshot contains servant-server-0.20 - - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires lens >=4.9 && < 5 and the snapshot contains lens-5.2.3 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires pandoc-types >=1.12 && < 1.18 and the snapshot contains pandoc-types-1.23.1 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires servant-docs >=0.11.1 && < 0.12 and the snapshot contains servant-docs-0.13 - - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires aeson >=0.8 && < 2 and the snapshot contains aeson-2.1.2.1 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires base-compat-batteries >=0.10.1 && < 0.12 and the snapshot contains base-compat-batteries-0.13.1 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires hspec >=2.5.6 && < 2.8 and the snapshot contains hspec-2.11.7 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires servant >=0.17 && < 0.19 and the snapshot contains servant-0.20.1 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires servant-client >=0.17 && < 0.19 and the snapshot contains servant-client-0.20 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires servant-server >=0.17 && < 0.19 and the snapshot contains servant-server-0.20 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.0.2 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* requires time >=1.5 && < 1.11 and the snapshot contains time-1.12.2 - - servant-ruby < 0 # tried servant-ruby-0.9.0.0, but its *library* requires servant-foreign >=0.9 && < 0.16 and the snapshot contains servant-foreign-0.16 - - servant-ruby < 0 # tried servant-ruby-0.9.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 - - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* requires servant >=0.13 && < 0.16 and the snapshot contains servant-0.20.1 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires servant >=0.14 && < 0.15 and the snapshot contains servant-0.20.1 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* requires servant-client-core >=0.14 && < 0.15 and the snapshot contains servant-client-core-0.20 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires base >=4.7 && < 4.13 and the snapshot contains base-4.18.1.0 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires http-media >=0.6 && < 0.8 and the snapshot contains http-media-0.8.1.1 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires servant-server >=0.13 && < 0.15 and the snapshot contains servant-server-0.20 - - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* requires base >=4.9 && < 4.14 and the snapshot contains base-4.18.1.0 - - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* requires servant >=0.15 && < 0.18 and the snapshot contains servant-0.20.1 - - serversession-backend-persistent < 0 # tried serversession-backend-persistent-2.0.1, but its *library* requires persistent ==2.13.* and the snapshot contains persistent-2.14.6.0 - - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires bytestring >=0.10.8.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires exceptions >=0.8.3 && < 0.10.0 and the snapshot contains exceptions-0.10.7 - - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires the disabled package: sessiontypes - - sets < 0 # tried sets-0.0.6.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - sexpr-parser < 0 # tried sexpr-parser-0.2.2.0, but its *library* requires megaparsec >=6.5 && < 9.3 and the snapshot contains megaparsec-9.4.1 - - shikensu < 0 # tried shikensu-0.4.1, but its *library* requires text ==1.* and the snapshot contains text-2.0.2 - - show-prettyprint < 0 # tried show-prettyprint-0.3.0.1, but its *library* requires trifecta >=1.6 && < 1.8 and the snapshot contains trifecta-2.1.3 - - shower < 0 # tried shower-0.2.0.3, but its *library* requires base >=4.10 && < 4.18 and the snapshot contains base-4.18.1.0 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.0 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires text >=0.11.0 && < 2.0.0 and the snapshot contains text-2.0.2 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires time >=1.5 && < 1.10 and the snapshot contains time-1.12.2 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - simple-media-timestamp-formatting < 0 # tried simple-media-timestamp-formatting-0.1.1.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 - - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* requires template-haskell >=2.12 && < 2.16 and the snapshot contains template-haskell-2.20.0.0 - - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 - - siphash < 0 # tried siphash-1.0.3, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.11.5.2 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires base >=4.9 && < 4.13 and the snapshot contains base-4.18.1.0 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires constraints >=0.9 && < 0.11 and the snapshot contains constraints-0.13.4 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires lens >=4.15 && < 5 and the snapshot contains lens-5.2.3 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires random ==1.1.* and the snapshot contains random-1.2.1.1 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - - skeletons < 0 # tried skeletons-0.4.0, but its *executable* requires the disabled package: tinytemplate - - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires base >=4.11 && < 4.18 and the snapshot contains base-4.18.1.0 - - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires servant >=0.16 && < 0.20 and the snapshot contains servant-0.20.1 - - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires servant-client >=0.16 && < 0.20 and the snapshot contains servant-client-0.20 - - slack-web < 0 # tried slack-web-1.6.1.0, but its *library* requires servant-client-core >=0.16 && < 0.20 and the snapshot contains servant-client-core-0.20 - - smallcheck-series < 0 # tried smallcheck-series-0.7.1.0, but its *library* requires base >=4.6 && < 4.15 and the snapshot contains base-4.18.1.0 - - smash < 0 # tried smash-0.1.3, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 - - smash < 0 # tried smash-0.1.3, but its *library* requires bifunctors ^>=5.5 and the snapshot contains bifunctors-5.6.1 - - smash < 0 # tried smash-0.1.3, but its *library* requires hashable ^>=1.3 and the snapshot contains hashable-1.4.3.0 - - smash-aeson < 0 # tried smash-aeson-0.2.0.1, but its *library* requires aeson >=2.0 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - smash-aeson < 0 # tried smash-aeson-0.2.0.1, but its *library* requires base >=4.1 && < 4.17 and the snapshot contains base-4.18.1.0 - - smash-lens < 0 # tried smash-lens-0.1.0.3, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 - - smash-lens < 0 # tried smash-lens-0.1.0.3, but its *library* requires lens >=4.0 && < 5.2 and the snapshot contains lens-5.2.3 - - smash-microlens < 0 # tried smash-microlens-0.1.0.2, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 - - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires aeson >=0.8 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires linear >=1.16 && < 1.22 and the snapshot contains linear-1.22 - - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - smtp-mail < 0 # tried smtp-mail-0.3.0.0, but its *library* requires the disabled package: connection - - soap < 0 # tried soap-0.2.3.6, but its *library* requires the disabled package: xml-conduit-writer - - soap-openssl < 0 # tried soap-openssl-0.1.0.2, but its *library* requires the disabled package: soap - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: connection - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: soap - - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* requires network >=2.3 && < 2.9 and the snapshot contains network-3.1.4.0 - - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires inline-java >=0.7.0 && < 0.9 and the snapshot contains inline-java-0.10.0 - - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires jvm >=0.4.0.1 && < 0.5 and the snapshot contains jvm-0.6.0 - - sparkle < 0 # tried sparkle-0.7.4, but its *library* requires the disabled package: jni - - sparse-linear-algebra < 0 # tried sparse-linear-algebra-0.3.1, but its *library* requires base >=4.7 && < 4.17 and the snapshot contains base-4.18.1.0 - - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires Cabal >=1.24 && < 3.5 and the snapshot contains Cabal-3.10.1.0 - - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires ad >=4.2 && < 4.5 and the snapshot contains ad-4.5.4 - - spdx < 0 # tried spdx-1.0.0.3, but its *library* requires Cabal ^>=2.4.0.1 || ^>=3.0.0.0 || ^>=3.2.0.0 || ^>=3.4.0.0 || ^>=3.6.0.0 and the snapshot contains Cabal-3.10.1.0 - - spdx < 0 # tried spdx-1.0.0.3, but its *library* requires base >=4.3.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - spdx < 0 # tried spdx-1.0.0.3, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - speculation < 0 # tried speculation-1.5.0.3, but its *library* requires stm >=2.1 && < 2.5 and the snapshot contains stm-2.5.1.0 - - speculation < 0 # tried speculation-1.5.0.3, but its *library* requires transformers >=0.2.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - sqlcli < 0 # tried sqlcli-0.2.2.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - sqlcli-odbc < 0 # tried sqlcli-odbc-0.2.0.1, but its *library* requires the disabled package: sqlcli - - sqlite-simple-errors < 0 # tried sqlite-simple-errors-0.6.1.0, but its *library* requires text >=1.2 && < 1.2.4 and the snapshot contains text-2.0.2 - - srt-attoparsec < 0 # tried srt-attoparsec-0.1.0.0, but its *library* requires mtl >=1.0 && < =2.3 and the snapshot contains mtl-2.3.1 - - srt-attoparsec < 0 # tried srt-attoparsec-0.1.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires dhall >=1 && < 1.41 and the snapshot contains dhall-1.42.1 - - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 - - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - srt-formatting < 0 # tried srt-formatting-0.1.0.0, but its *library* requires formatting >=7.0.0 && < 7.2 and the snapshot contains formatting-7.2.0 - - stackcollapse-ghc < 0 # tried stackcollapse-ghc-0.0.1.4, but its *executable* requires base >=4.12.0.0 && < 4.16 and the snapshot contains base-4.18.1.0 - - stackcollapse-ghc < 0 # tried stackcollapse-ghc-0.0.1.4, but its *executable* requires transformers ==0.5.6.* and the snapshot contains transformers-0.6.1.0 - - stb-image-redux < 0 # tried stb-image-redux-0.2.1.2, but its *library* requires vector >=0.10.12.3 && < 0.13 and the snapshot contains vector-0.13.1.0 - - stm-lifted < 0 # tried stm-lifted-2.5.0.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - stopwatch < 0 # tried stopwatch-0.1.0.6, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - streaming-cassava < 0 # tried streaming-cassava-0.2.0.0, but its *library* requires streaming-bytestring ==0.2.* and the snapshot contains streaming-bytestring-0.3.2 - - streamly-bytestring < 0 # tried streamly-bytestring-0.2.0, but its *library* requires bytestring ==0.11.0.* || ==0.11.1.* || ==0.11.2.* || (>=0.11.3.1 && < 0.11.4 and the snapshot contains bytestring-0.11.5.2 - - streamly-bytestring < 0 # tried streamly-bytestring-0.2.0, but its *library* requires streamly-core ==0.1.0.* and the snapshot contains streamly-core-0.2.0 - - streamly-examples < 0 # tried streamly-examples-0.1.3, but its *executable* requires base >=4.9 && < 4.18 and the snapshot contains base-4.18.1.0 - - streamly-examples < 0 # tried streamly-examples-0.1.3, but its *executable* requires streamly ==0.9.0 and the snapshot contains streamly-0.10.0 - - streamly-examples < 0 # tried streamly-examples-0.1.3, but its *executable* requires streamly-core ==0.1.0 and the snapshot contains streamly-core-0.2.0 - - streamly-process < 0 # tried streamly-process-0.3.0, but its *library* requires streamly ==0.9.0.* and the snapshot contains streamly-0.10.0 - - streamly-process < 0 # tried streamly-process-0.3.0, but its *library* requires streamly-core ==0.1.0 and the snapshot contains streamly-core-0.2.0 - - streamproc < 0 # tried streamproc-1.6.2, but its *library* requires base >=3 && < 4.13 and the snapshot contains base-4.18.1.0 - - streamt < 0 # tried streamt-0.5.0.1, but its *library* requires mtl >=2.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* requires lens ^>=5 and the snapshot contains lens-5.2.3 - - string-variants < 0 # tried string-variants-0.3.0.0, but its *library* requires the disabled package: refinery - - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires aeson >=0.8 && < 0.10 || >=0.11 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires mtl >=2.1.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires time >=1.4 && < 1.11 and the snapshot contains time-1.12.2 - - stripe-core < 0 # tried stripe-core-2.6.2, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - stripe-haskell < 0 # tried stripe-haskell-2.6.2, but its *library* requires the disabled package: stripe-core - - stripe-haskell < 0 # tried stripe-haskell-2.6.2, but its *library* requires the disabled package: stripe-http-client - - stripe-http-client < 0 # tried stripe-http-client-2.6.2, but its *library* requires aeson >=0.8 && < 0.10 || >=0.11 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - stripe-http-client < 0 # tried stripe-http-client-2.6.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - stripe-http-client < 0 # tried stripe-http-client-2.6.2, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.0.2 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires aeson >=0.8 && < 0.10 || >=0.11 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires hspec >=2.1.0 && < 2.8 and the snapshot contains hspec-2.11.7 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires hspec-core >=2.1.0 && < 2.8 and the snapshot contains hspec-core-2.11.7 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires mtl >=2.1.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires random >=1.1 && < 1.2 and the snapshot contains random-1.2.1.1 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires time >=1.4 && < 1.11 and the snapshot contains time-1.12.2 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - strong-path < 0 # tried strong-path-1.1.4.0, but its *library* requires hashable ==1.3.* and the snapshot contains hashable-1.4.3.0 - - strong-path < 0 # tried strong-path-1.1.4.0, but its *library* requires template-haskell >=2.16 && < 2.18 and the snapshot contains template-haskell-2.20.0.0 - - strongweak < 0 # tried strongweak-0.6.0, but its *library* requires the disabled package: refined1 - - structured-cli < 0 # tried structured-cli-2.7.0.1, but its *library* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* requires haskell-src-exts >=1.18 && < 1.20 and the snapshot contains haskell-src-exts-1.23.1 - - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* requires the disabled package: descriptive - - sv < 0 # tried sv-1.4.0.1, but its *library* requires attoparsec >=0.12.1.4 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - sv < 0 # tried sv-1.4.0.1, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 - - sv < 0 # tried sv-1.4.0.1, but its *library* requires bifunctors >=5.1 && < 5.6 and the snapshot contains bifunctors-5.6.1 - - sv < 0 # tried sv-1.4.0.1, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - sv < 0 # tried sv-1.4.0.1, but its *library* requires semigroupoids >=5 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 - - sv < 0 # tried sv-1.4.0.1, but its *library* requires the disabled package: hw-dsv - - sv < 0 # tried sv-1.4.0.1, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* requires attoparsec >=0.12.1.4 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - sv-cassava < 0 # tried sv-cassava-0.3, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires attoparsec >=0.12.1.4 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires bifunctors >=5.1 && < 5.6 and the snapshot contains bifunctors-5.6.1 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires lens >=4 && < 4.20 and the snapshot contains lens-5.2.3 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires mtl >=2.0.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires profunctors >=5.2.1 && < 5.6 and the snapshot contains profunctors-5.6.2 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires semigroupoids >=5 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires semigroups >=0.18 && < 0.20 and the snapshot contains semigroups-0.20 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - sv-core < 0 # tried sv-core-0.5, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires aeson >=1.0 && < 2.0 and the snapshot contains aeson-2.1.2.1 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires bytestring >=0.10.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires containers >=0.5.0.0 && < 0.6 and the snapshot contains containers-0.6.7 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires http-api-data >=0.3.4 && < 0.4 and the snapshot contains http-api-data-0.5.1 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires http-media >=0.4 && < 0.8 and the snapshot contains http-media-0.8.1.1 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires katip >=0.4 && < 0.6 and the snapshot contains katip-0.8.8.0 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires network >=2.6.2 && < 2.8 and the snapshot contains network-3.1.4.0 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires time >=1.5 && < 1.10 and the snapshot contains time-1.12.2 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* requires vector >=0.10.9 && < 0.13 and the snapshot contains vector-0.13.1.0 - - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires logict ^>=0.7.0 and the snapshot contains logict-0.8.1.0 - - syb-with-class < 0 # tried syb-with-class-0.6.1.14, but its *library* requires template-haskell >=2.4 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - sydtest-persistent-postgresql < 0 # tried sydtest-persistent-postgresql-0.2.0.3, but its *library* requires the disabled package: tmp-postgres - - taffybar < 0 # tried taffybar-4.0.1, but its *library* requires scotty >=0.11 && < 0.13 and the snapshot contains scotty-0.20.1 - - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* requires containers >=0.4 && < 0.6 and the snapshot contains containers-0.6.7 - - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* requires tasty >=0.11.2 && < 1.2 and the snapshot contains tasty-1.4.3 - - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* requires time >=1.5 && < 1.9 and the snapshot contains time-1.12.2 - - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires ansi-terminal >=0.8 && < 0.12 and the snapshot contains ansi-terminal-1.0 - - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* requires network >=2.3 && < 3.0 and the snapshot contains network-3.1.4.0 - - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* requires the disabled package: tcp-streams - - telegram-bot-api < 0 # tried telegram-bot-api-6.7.1, but its *library* requires the disabled package: cron - - telegram-bot-simple < 0 # tried telegram-bot-simple-0.12, but its *library* requires the disabled package: cron - - termcolor < 0 # tried termcolor-0.2.0.0, but its *executable* requires the disabled package: cli - - test-fixture < 0 # tried test-fixture-0.5.1.0, but its *library* requires template-haskell >=2.10 && < 2.13 and the snapshot contains template-haskell-2.20.0.0 - - test-framework-th < 0 # tried test-framework-th-0.2.4, but its *library* requires the disabled package: language-haskell-extract - - text-all < 0 # tried text-all-0.4.2, but its *library* requires text ==1.2.3.* and the snapshot contains text-2.0.2 - - text-all < 0 # tried text-all-0.4.2, but its *library* requires text-format ==0.3.1.* and the snapshot contains text-format-0.3.2.1 - - text-generic-pretty < 0 # tried text-generic-pretty-1.2.1, but its *library* requires wl-pprint-text < 1.2 and the snapshot contains wl-pprint-text-1.2.0.2 - - th-to-exp < 0 # tried th-to-exp-0.0.1.1, but its *library* requires template-haskell >=2.11.0.0 && < 2.13 and the snapshot contains template-haskell-2.20.0.0 - - through-text < 0 # tried through-text-0.1.0.0, but its *library* requires base >=4.3 && < 4.17 and the snapshot contains base-4.18.1.0 - - thumbnail-plus < 0 # tried thumbnail-plus-1.0.5, but its *library* requires either < 5 and the snapshot contains either-5.0.2 - - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires tls >=1.3 && < 1.6 and the snapshot contains tls-1.8.0 - - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonaparser < 0 # tried tonaparser-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonatona < 0 # tried tonatona-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonatona-logger < 0 # tried tonatona-logger-0.3.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.18.1.0 - - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires servant >=0.18 && < 0.20 and the snapshot contains servant-0.20.1 - - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires servant-server >=0.18 && < 0.20 and the snapshot contains servant-server-0.20 - - tracing-control < 0 # tried tracing-control-0.0.7.3, but its *library* requires the disabled package: stm-lifted - - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.0 - - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - transformers-fix < 0 # tried transformers-fix-1.0, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* requires base >=4.8 && < 4.13 and the snapshot contains base-4.18.1.0 - - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* requires writer-cps-transformers ==0.1.1.4 and the snapshot contains writer-cps-transformers-0.5.6.1 - - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires network >=2.8.0.0 && < 3.0.0.0 and the snapshot contains network-3.1.4.0 - - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires the disabled package: TCache - - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires the disabled package: transient - - tries < 0 # tried tries-0.0.6.1, but its *library* requires the disabled package: rose-trees - - triplesec < 0 # tried triplesec-0.2.2.1, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - true-name < 0 # tried true-name-0.1.0.3, but its *library* requires template-haskell >=2.7 && < 2.15 and the snapshot contains template-haskell-2.20.0.0 - - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires hashable >=1.2 && < 1.4 and the snapshot contains hashable-1.4.3.0 - - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires hashtables >=1.2 && < 1.3 and the snapshot contains hashtables-1.3.1 - - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - type-combinators-singletons < 0 # tried type-combinators-singletons-0.2.1.0, but its *library* requires the disabled package: type-combinators - - type-errors-pretty < 0 # tried type-errors-pretty-0.0.1.2, but its *library* requires base >=4.10.1.0 && < 4.16 and the snapshot contains base-4.18.1.0 - - type-operators < 0 # tried type-operators-0.2.0.0, but its *library* requires base >=4.7 && < 4.17 and the snapshot contains base-4.18.1.0 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires attoparsec >=0.13.2.2 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires base >=4.11.0.0 && < 4.13 and the snapshot contains base-4.18.1.0 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires cryptonite >=0.25 && < 0.27 and the snapshot contains cryptonite-0.30 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires http-api-data >=0.3.8.1 && < 0.5 and the snapshot contains http-api-data-0.5.1 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires parser-combinators >=1.0.0 && < 1.3 and the snapshot contains parser-combinators-1.3.0 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires text >=0.11 && < 1.2.3.0 || >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* requires time >=1.8.0.2 && < 1.10 and the snapshot contains time-1.12.2 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires aeson >=1.2 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires base >=4.11.0.0 && < 4.13 and the snapshot contains base-4.18.1.0 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires base64-bytestring >=1.0.0.1 && < 1.1 and the snapshot contains base64-bytestring-1.2.1.0 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires text >=0.11 && < 1.2.3.0 || >=1.2.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires time >=1.8.0.2 && < 1.10 and the snapshot contains time-1.12.2 - - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* requires timerep >=2.0.0.2 && < 2.1 and the snapshot contains timerep-2.1.0.0 - - unbound-generics < 0 # tried unbound-generics-0.4.3, but its *library* requires ansi-wl-pprint >=0.6.7.2 && < 0.7 and the snapshot contains ansi-wl-pprint-1.0.2 - - unfoldable < 0 # tried unfoldable-1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - unfoldable-restricted < 0 # tried unfoldable-restricted-0.0.3, but its *library* requires the disabled package: unfoldable - - unification-fd < 0 # tried unification-fd-0.11.2, but its *library* requires logict >=0.4 && < 0.8.1 and the snapshot contains logict-0.8.1.0 - - union < 0 # tried union-0.1.2, but its *library* requires base >=4.9 && < 4.18 and the snapshot contains base-4.18.1.0 - - union-find < 0 # tried union-find-0.2, but its *library* requires base >=4.4 && < 4.17 and the snapshot contains base-4.18.1.0 - - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* requires attoparsec >=0.10 && < 0.14 and the snapshot contains attoparsec-0.14.4 - - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* requires text >=0.2 && < 1.3 and the snapshot contains text-2.0.2 - - unliftio-pool < 0 # tried unliftio-pool-0.4.2.0, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - urbit-hob < 0 # tried urbit-hob-0.3.3, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - uri-templater < 0 # tried uri-templater-0.3.1.0, but its *library* requires trifecta >=1.6 && < 1.8 and the snapshot contains trifecta-2.1.3 - - userid < 0 # tried userid-0.1.3.7, but its *library* requires aeson >=0.9 && < 2.1 and the snapshot contains aeson-2.1.2.1 - - userid < 0 # tried userid-0.1.3.7, but its *library* requires base >=4.6 && < 4.17 and the snapshot contains base-4.18.1.0 - - userid < 0 # tried userid-0.1.3.7, but its *library* requires the disabled package: web-routes - - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* requires text-short >=0.1.1 && < 0.1.4 and the snapshot contains text-short-0.1.5 - - vado < 0 # tried vado-0.0.14, but its *library* requires base >=4.0.0.0 && < 4.17 and the snapshot contains base-4.18.1.0 - - variable-media-field < 0 # tried variable-media-field-0.1.0.0, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - variable-media-field-dhall < 0 # tried variable-media-field-dhall-0.1.0.0, but its *library* requires the disabled package: variable-media-field - - variable-media-field-optics < 0 # tried variable-media-field-optics-0.1.0.0, but its *library* requires the disabled package: variable-media-field - - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires base >=4.0.0.0 && < 4.11 and the snapshot contains base-4.18.1.0 - - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires containers >=0.5.5.1 && < 0.6 and the snapshot contains containers-0.6.7 - - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires mtl >=2.0.1.0 && < 2.3 and the snapshot contains mtl-2.3.1 - - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* requires text >=0.11.1.5 && < 1.3 and the snapshot contains text-2.0.2 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.18.1.0 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires primitive >=0.6.4 && < 0.8 and the snapshot contains primitive-0.8.0.0 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires semigroupoids >=5.3 && < 5.4 and the snapshot contains semigroupoids-6.0.0.1 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires template-haskell >=2.12 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* requires base >=4.3 && < 4.15 and the snapshot contains base-4.18.1.0 - - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* requires primitive >=0.6 && < 0.8 and the snapshot contains primitive-0.8.0.0 - - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* requires vector >=0.9 && < 0.13 and the snapshot contains vector-0.13.1.0 - - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.0.2 - - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires the disabled package: protocol-buffers - - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.0 - - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.1.0 - - vformat-aeson < 0 # tried vformat-aeson-0.1.0.1, but its *library* requires aeson >=1.2 && < 2.0 and the snapshot contains aeson-2.1.2.1 - - vformat-aeson < 0 # tried vformat-aeson-0.1.0.1, but its *library* requires text >=1.2 && < 2.0 and the snapshot contains text-2.0.2 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires base >=4.9 && < 4.15 and the snapshot contains base-4.18.1.0 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires brick >0.26.1 && < 0.54 and the snapshot contains brick-2.1.1 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires lens >=4.14 && < 4.20 and the snapshot contains lens-5.2.3 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires text >=1.2.2.0 && < 1.3 and the snapshot contains text-2.0.2 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires vector >=0.10.12.3 && < 0.13 and the snapshot contains vector-0.13.1.0 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires vector-algorithms >=0.6.0.4 && < 0.9 and the snapshot contains vector-algorithms-0.9.0.1 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* requires vty >=5.13 && < 5.29 and the snapshot contains vty-6.1 - - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* requires optparse-applicative >=0.11 && < 0.15 and the snapshot contains optparse-applicative-0.18.1.0 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires aeson >=1.0 && < 1.4 and the snapshot contains aeson-2.1.2.1 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.15 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.0.2 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 - - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-predicates - - wai-routing < 0 # tried wai-routing-0.13.0, but its *library* requires the disabled package: wai-route - - wavefront < 0 # tried wavefront-0.7.1.5, but its *library* requires base >=4.8 && < 4.18 and the snapshot contains base-4.18.1.0 - - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - web-routes-boomerang < 0 # tried web-routes-boomerang-0.28.4.4, but its *library* requires the disabled package: web-routes - - web-routes-happstack < 0 # tried web-routes-happstack-0.23.12.3, but its *library* requires the disabled package: web-routes - - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires the disabled package: hsp - - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires the disabled package: web-routes - - web-routes-th < 0 # tried web-routes-th-0.22.8.1, but its *library* requires template-haskell >=2.11 && < 2.20 and the snapshot contains template-haskell-2.20.0.0 - - web-routes-th < 0 # tried web-routes-th-0.22.8.1, but its *library* requires the disabled package: web-routes - - web-routes-wai < 0 # tried web-routes-wai-0.24.3.2, but its *library* requires the disabled package: web-routes - - web3 < 0 # tried web3-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-bignum < 0 # tried web3-bignum-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-bignum < 0 # tried web3-bignum-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires cryptonite >0.22 && < 0.30 and the snapshot contains cryptonite-0.30 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - web3-crypto < 0 # tried web3-crypto-1.0.0.0, but its *library* requires vector >0.12 && < 0.13 and the snapshot contains vector-0.13.1.0 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires OneTuple >0.2 && < 0.3 and the snapshot contains OneTuple-0.4.1.1 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires microlens-aeson >2.2 && < 2.4 and the snapshot contains microlens-aeson-2.5.1 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires transformers >0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - web3-ethereum < 0 # tried web3-ethereum-1.0.0.0, but its *library* requires vinyl >0.5 && < 0.14 and the snapshot contains vinyl-0.14.3 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires cryptonite >0.22 && < 0.30 and the snapshot contains cryptonite-0.30 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - web3-polkadot < 0 # tried web3-polkadot-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires http-client >0.5 && < 0.7 and the snapshot contains http-client-0.7.15 - - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires mtl >2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - web3-provider < 0 # tried web3-provider-1.0.0.0, but its *library* requires transformers >0.5 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires OneTuple >0.2 && < 0.3 and the snapshot contains OneTuple-0.4.1.1 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires aeson >1.2 && < 1.6 and the snapshot contains aeson-2.1.2.1 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires base >4.11 && < 4.15 and the snapshot contains base-4.18.1.0 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires bytestring >0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires memory >0.14 && < 0.16 and the snapshot contains memory-0.18.0 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires template-haskell >2.11 && < 2.17 and the snapshot contains template-haskell-2.20.0.0 - - web3-solidity < 0 # tried web3-solidity-1.0.0.0, but its *library* requires text >1.2 && < 1.3 and the snapshot contains text-2.0.2 - - webby < 0 # tried webby-1.1.1, but its *library* requires formatting >=6.3.7 && < 7.2 and the snapshot contains formatting-7.2.0 - - webby < 0 # tried webby-1.1.1, but its *library* requires resourcet ==1.2.* and the snapshot contains resourcet-1.3.0 - - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires language-javascript >=0.6 && < 0.7 and the snapshot contains language-javascript-0.7.1.0 - - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires webdriver >=0.6 && < 0.9 and the snapshot contains webdriver-0.12.0.0 - - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.13, but its *library* requires text >=0.11.3.1 && < 1.3 and the snapshot contains text-2.0.2 - - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.13, but its *library* requires time >=1.4.0 && < 1.12 and the snapshot contains time-1.12.2 - - wild-bind < 0 # tried wild-bind-0.1.2.9, but its *library* requires base >=4.6 && < 4.17 and the snapshot contains base-4.18.1.0 - - wild-bind < 0 # tried wild-bind-0.1.2.9, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.0.2 - - wild-bind < 0 # tried wild-bind-0.1.2.9, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires base >=4.6 && < 4.17 and the snapshot contains base-4.18.1.0 - - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.0.2 - - wild-bind-x11 < 0 # tried wild-bind-x11-0.2.0.15, but its *library* requires transformers >=0.3.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - wire-streams < 0 # tried wire-streams-0.1.1.0, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - wl-pprint-console < 0 # tried wl-pprint-console-0.1.0.2, but its *library* requires bytestring >=0.10.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - wl-pprint-console < 0 # tried wl-pprint-console-0.1.0.2, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* requires containers >=0.4 && < 0.6 and the snapshot contains containers-0.6.7 - - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* requires semigroupoids >=3 && < 6 and the snapshot contains semigroupoids-6.0.0.1 - - wl-pprint-extras < 0 # tried wl-pprint-extras-3.5.0.5, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires containers >=0.4 && < 0.6 and the snapshot contains containers-0.6.7 - - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.0.2 - - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: ansigraph - - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: clock-extras - - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: connection - - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: next-ref - - writer-cps-exceptions < 0 # tried writer-cps-exceptions-0.1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - writer-cps-full < 0 # tried writer-cps-full-0.1.0.0, but its *library* requires the disabled package: writer-cps-morph - - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.2.3 - - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - writer-cps-mtl < 0 # tried writer-cps-mtl-0.1.1.6, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - writer-cps-mtl < 0 # tried writer-cps-mtl-0.1.1.6, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - xdg-desktop-entry < 0 # tried xdg-desktop-entry-0.1.1.1, but its *library* requires the disabled package: ConfigFile - - xml-parser < 0 # tried xml-parser-0.1.1.1, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.0 - - xmonad-contrib < 0 # tried xmonad-contrib-0.17.1, but its *library* requires mtl >=1 && < 2.3 and the snapshot contains mtl-2.3.1 - - xmonad-extras < 0 # tried xmonad-extras-0.17.0, but its *library* requires the disabled package: libmpd - - xmonad-extras < 0 # tried xmonad-extras-0.17.0, but its *library* requires the disabled package: xmonad-contrib - - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires the disabled package: yeshql-hdbc - - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires yeshql-core ==4.1.1.2 and the snapshot contains yeshql-core-4.2.0.0 - - yesod-alerts < 0 # tried yesod-alerts-0.1.3.0, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.0.2 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires persistent >=2.1 && < 2.8 and the snapshot contains persistent-2.14.6.0 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires yesod-auth >=1.4.18 && < 1.5 and the snapshot contains yesod-auth-1.6.11.2 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires yesod-core >=1.4 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* requires yesod-form >=1.4 && < 1.5 and the snapshot contains yesod-form-1.7.6 - - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* requires yesod-core >=1.4 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 - - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* requires yesod-form >=1.4.4.1 && < 1.5 and the snapshot contains yesod-form-1.7.6 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* requires yesod >=1.2 && < 1.5 and the snapshot contains yesod-1.6.2.1 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires language-javascript >=0.6 && < 0.7 and the snapshot contains language-javascript-0.7.1.0 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires yesod-core >=1.2 && < 1.5 and the snapshot contains yesod-core-1.6.25.1 - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires yesod-static >=1.2.1 && < 1.6 and the snapshot contains yesod-static-1.6.1.0 - - yesod-text-markdown < 0 # tried yesod-text-markdown-0.1.10, but its *library* requires aeson >=0.7 && < 2.0 and the snapshot contains aeson-2.1.2.1 - - yesod-text-markdown < 0 # tried yesod-text-markdown-0.1.10, but its *library* requires text >=0.11 && < 2.0 and the snapshot contains text-2.0.2 - - zasni-gerna < 0 # tried zasni-gerna-0.0.7.1, but its *library* requires the disabled package: papillon - - zero < 0 # tried zero-0.1.5, but its *library* requires semigroups >=0.16 && < 0.20 and the snapshot contains semigroups-0.20 - - zio < 0 # tried zio-0.1.0.2, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.1 - - zio < 0 # tried zio-0.1.0.2, but its *library* requires the disabled package: unexceptionalio-trans - - zio < 0 # tried zio-0.1.0.2, but its *library* requires transformers >=0.5.6 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - zipper-extra < 0 # tried zipper-extra-0.1.3.2, but its *library* requires the disabled package: comonad-extras - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* requires base-compat ==0.9.* and the snapshot contains base-compat-0.13.1 - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* requires servant >=0.9 && < 0.12 and the snapshot contains servant-0.20.1 - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* requires servant-client >=0.9 && < 0.12 and the snapshot contains servant-client-0.20 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires aeson >=0.7 && < 1.3 and the snapshot contains aeson-2.1.2.1 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires base-compat ==0.9.* and the snapshot contains base-compat-0.13.1 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires bytestring ==0.10.* and the snapshot contains bytestring-0.11.5.2 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires http-api-data ==0.3.* and the snapshot contains http-api-data-0.5.1 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* requires servant >=0.9 && < 0.12 and the snapshot contains servant-0.20.1 - - zlib-lens < 0 # tried zlib-lens-0.1.2.1, but its *library* requires bytestring >=0.9.1.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - zm < 0 # tried zm-0.3.2, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - zm < 0 # tried zm-0.3.2, but its *library* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - zm < 0 # tried zm-0.3.2, but its *library* requires flat ==0.3.* and the snapshot contains flat-0.6 - - zm < 0 # tried zm-0.3.2, but its *library* requires model >=0.4.4 && < 0.5 and the snapshot contains model-0.5 - - zm < 0 # tried zm-0.3.2, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - ztail < 0 # tried ztail-1.2.0.3, but its *executable* requires time >=1.5 && < 1.12 and the snapshot contains time-1.12.2 - - ztail < 0 # tried ztail-1.2.0.3, but its *executable* requires unix ==2.7.* and the snapshot contains unix-2.8.1.0 - - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* requires base >=4.7 && < 4.15 and the snapshot contains base-4.18.1.0 - - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* requires storable-record >=0.0.5 && < 0.0.6 and the snapshot contains storable-record-0.0.7 - # End of Library and exe bounds failures - - "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/7031 - - aeson ^>= 2.1.2.1 && <2.2.0 - - attoparsec-aeson ^>= 2.1.0.0 && <2.2 - - # https://github.com/commercialhaskell/stackage/issues/7055 - - dependent-sum-template ^>= 0.1.1.1 && <0.1.2 - - # https://github.com/commercialhaskell/stackage/issues/7074 - - th-abstraction ^>= 0.5.0.0 && <0.6.0.0 - - # https://github.com/commercialhaskell/stackage/issues/7205 - - megaparsec ^>= 9.5.0 && <9.6 - - megaparsec-tests ^>= 9.5.0 && <9.6 - - # https://github.com/commercialhaskell/stackage/issues/7106 - - tls ^>= 1.8.0 && <1.9 - - # https://github.com/commercialhaskell/stackage/issues/7111 - - tasty ^>= 1.4.3 && <1.5 - - tasty-quickcheck ^>= 0.10.2 && <0.10.3 - - # https://github.com/commercialhaskell/stackage/issues/7124 - - mpi-hs ^>= 0.7.2.0 && <0.7.3 - - # https://github.com/commercialhaskell/stackage/issues/7129 - - lpeg ^>= 1.0.4 && <1.1 - - # https://github.com/commercialhaskell/stackage/issues/7144 - # ghc9.8 - need base >= 4.19 - - eliminators ^>= 0.9.3 && <0.9.4 - - fourmolu ^>= 0.14.0.0 && <0.14.1.0 - - ghc-lib ^>= 9.6.3.20231121 && <9.8 - - ghc-lib-parser ^>= 9.6.3.20231121 && <9.8 - - ghc-lib-parser-ex ^>= 9.6.0.2 && <9.8 - - ormolu ^>= 0.7.2.0 && <0.7.3.0 - - singletons-base ^>= 3.2 && <3.3 - - singletons-th ^>= 3.2 && <3.3 - - th-desugar ^>= 1.15 && <1.16 - - # https://github.com/commercialhaskell/stackage/issues/7159 - - Diff ^>= 0.4.1 && <0.5 - - # https://github.com/commercialhaskell/stackage/issues/7178 - - cassava-megaparsec ^>= 2.0.4 && <2.1 - # end of Stackage upper bounds -# end of packages - -# Package flags are applied to individual packages, and override the values of -# global-flags -package-flags: - QuickCheck: - old-random: false - pathtype: - old-time: false - - bz2: - with-bzlib: false # Exclude bzlib from benchmarks to avoid unnecessary dependencies. - - mersenne-random-pure64: - small_base: false - - cloud-haskell: - tcp: true - simplelocalnet: true - p2p: true - - curl: - new-base: true - - hpio: - test-hlint: false - - idris: - ffi: true - - hxt: - network-uri: true - hxt-http: - network-uri: true - hxt-relaxng: - network-uri: true - - text: - integer-simple: false - - tar: - old-time: false - - time-locale-compat: - old-locale: false - - HsOpenSSL: - fast-bignum: false - - cabal-rpm: - old-locale: false - - NineP: - bytestring-in-base: false - - nix-paths: - allow-relative-paths: true - - fay: - test: true - - reedsolomon: - llvm: false - - functor-classes-compat: - containers: true - - alerta: - servant-client-core: false - - cabal-install: - # https://github.com/haskell/cabal/issues/9054 - native-dns: false - - greskell: - server-test: false - - windns: - allow-non-windows: true - - hsdev: - docs: false - - bson: - _old-network: false - - mongoDB: - _old-network: false - - sdl2: - recent-ish: false - - formatting: - no-double-conversion: true - - hackage-security: - Cabal-syntax: true - - aws-sns-verify: - development: true - - optics-operators: - build-readme: false - - # optparse-applicative dependencies depend on the version - bm: - optparse-applicative_ge_0_18: true - horizontal-rule: - optparse-applicative_ge_0_18: true - literatex: - optparse-applicative_ge_0_18: true - phatsort: - optparse-applicative_ge_0_18: true - redact: - optparse-applicative_ge_0_18: true -# end of package-flags - -# Special configure options for individual packages - -# This used to be used for extra-include-dirs and extra-lib-dirs -# Instead, we set this in the Docker image itself -configure-args: {} -# end of configure-args - - -# Used for packages that cannot be built on Linux -skipped-builds: - - hfsevents - - lzma-clib - - Win32 - - Win32-notify - - windns - -# end of skipped-builds - - -# By skipping a test suite, we do not pull in the build dependencies -# Packages should only be added here if required by `stackage-curator check' -# or if Setup fails because of missing foreign libraries. -# Otherwise place them in expected-test-failures. -skipped-tests: - # Missing foreign libraries - - symengine - - hasql-interpolate # https://github.com/commercialhaskell/stackage/issues/6841 - - # Timeouts - # These tests sometimes take too long and hit the stackage build - # servers time limit so these shouldn't be removed from - # skipped-tests unless we know a fix has been released. - - accelerate-fourier - - binary-search # Never finishes https://github.com/nushio3/binary-search/issues/2 - - blank-canvas # Never finishes https://github.com/ku-fpg/blank-canvas/issues/73 - - cabal-helper - - enum-text # https://github.com/commercialhaskell/stackage/issues/6794 - - ghc-exactprint # flaky fails with 'executable not found' & and runs around 15 minutes (so put here instead of expected-test-failures) - - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 - - ihaskell # Never finishes https://github.com/IHaskell/IHaskell/issues/1413 - - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - - json-rpc # flaky - - network-attoparsec - - port-utils - - punycode - - sbv # takes more than 4 hours for a single test suite - - unagi-chan - - zeromq4-patterns - - # Wontfix. The maintainer doesn't want to keep test dependencies - # up to date or be notified about it, or doesn't want stackage to - # run the tests. - # Only re-enable if requested. - ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 - - lzma - - token-bucket - - uuid - - uuid-types - # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 - - base-prelude - - bytestring-strict-builder - - bytestring-tree-builder - - cases - - focus - - hasql - - hasql-pool - - list-t - - mtl-prelude - - neat-interpolation - - partial-handler - - postgresql-binary - - refined - - slave-thread - - stm-containers - - text-builder - # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 - - fgl - - fgl-arbitrary - - graphviz - - wl-pprint-text - # @phadej - - aeson-extra - - base64-bytestring-type - - binary-orphans - - edit-distance - - fin - - http-api-data - - integer-logarithms - - postgresql-simple-url - - range-set-list - - time-parsers - - time-parsers - - universe-base - - vec - # @jsynacek - - hpqtypes # needs a running postgres database - - hpqtypes-extras # needs a running postgres database - - # norfairking - - afksautodocodec # runs doctest - - sydtest-amqp # runs rabbitmq - - sydtest-rabbitmq # runs rabbitmq - - sydtest-hedis # runs redis - - sydtest-mongo # runs mongo - - sydtest-persistent-sqlite # runs sqlite - - sydtest-persistent-postgresql # runs postgres - - sydtest-webdriver # runs chromium - - sydtest-webdriver-screenshot # runs chromium - - sydtest-webdriver-yesod # runs chromium - - - captcha-core - - captcha-2captcha - - captcha-capmonster - - # @thielema - - glpk-headers - - # Uses Cabal's "library internal" stanza feature - - s3-signer - - # Due to cycles, which are actually just limitations in Stack right now. - - HUnit - - Agda - - aeson - - indexed-traversable-instances - - semialign - - attoparsec - - base-orphans # via hspec - - bifunctors # via hspec - - call-stack - - case-insensitive - - clock - - criterion - - criterion-measurement - - distributive # via hspec - - doctest # via hspec - - foldable1-classes-compat - - foundation - - hspec - - hspec-discover # via logging-facade/mockery - - http-streams - - js-flot - - js-jquery - - microstache - - nanospec - - nothunks - - optparse-applicative # via QuickCheck - - primitive - - random - - scientific - - split - - splitmix - - statistics - - syb - - tasty-expected-failure # via tasty-hedgehog - - vector # doctest - - vector-binary-instances - - # TODO - - rpmbuild-order - - # Revision to package caused it to require bounds and break - - htoml # https://github.com/commercialhaskell/stackage/issues/6239 - - # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. - # - # Test bounds issues - - BiobaseNewick # tried BiobaseNewick-0.0.0.2, but its *test-suite* requires the disabled package: test-framework-th - - ENIG # tried ENIG-0.0.1.0, but its *test-suite* requires the disabled package: test-framework-th - - Frames # tried Frames-0.7.4.2, but its *test-suite* requires the disabled package: tomland - - Frames # tried Frames-0.7.4.2, but its *test-suite* requires the disabled package: validation-selective - - IPv6DB # tried IPv6DB-0.3.3, but its *test-suite* requires hspec >=2.1.10 && < 2.8 and the snapshot contains hspec-2.11.7 - - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires doctest >=0.16.2 && < 0.20 and the snapshot contains doctest-0.22.2 - - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires hedgehog >=1.0.2 && < 1.2 and the snapshot contains hedgehog-1.4 - - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires tasty-discover >=4.2.1 && < 4.3 and the snapshot contains tasty-discover-5.0.0 - - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires tasty-hedgehog >=1.0.0.2 && < 1.2 and the snapshot contains tasty-hedgehog-1.4.0.2 - - TotalMap # tried TotalMap-0.1.1.1, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - airship # tried airship-0.9.5, but its *test-suite* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - airship # tried airship-0.9.5, but its *test-suite* requires tasty >=0.10.1 && < 1.3 and the snapshot contains tasty-1.4.3 - - airship # tried airship-0.9.5, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.0.2 - - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.4 - - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* requires hspec >=2.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.4 - - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* requires hspec >=2.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - ascii-group # tried ascii-group-1.0.0.16, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - ascii-numbers # tried ascii-numbers-1.2.0.1, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - ascii-predicates # tried ascii-predicates-1.0.1.3, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - avro # tried avro-0.6.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - aws-cloudfront-signed-cookies # tried aws-cloudfront-signed-cookies-0.2.0.12, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - beam-postgres # tried beam-postgres-0.5.3.1, but its *test-suite* requires the disabled package: tmp-postgres - - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires hedgehog >=0.5.3 && < 1.3 and the snapshot contains hedgehog-1.4 - - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires hspec >=2.4 && < 2.11 and the snapshot contains hspec-2.11.7 - - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires hlint ^>=3.5 and the snapshot contains hlint-3.6.1 - - bloodhound # tried bloodhound-0.21.0.0, but its *test-suite* requires the disabled package: quickcheck-properties - - boolean-normal-forms # tried boolean-normal-forms-0.0.1.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.14 and the snapshot contains QuickCheck-2.14.3 - - brittany # tried brittany-0.14.0.2, but its *test-suite* requires hspec ^>=2.8.3 and the snapshot contains hspec-2.11.7 - - buttplug-hs-core # tried buttplug-hs-core-0.1.0.1, but its *test-suite* requires hspec >=2.7.8 && < 2.9 and the snapshot contains hspec-2.11.7 - - cabal-install # tried cabal-install-3.10.2.1, but its *test-suite* requires the disabled package: Cabal-QuickCheck - - cabal-install # tried cabal-install-3.10.2.1, but its *test-suite* requires the disabled package: Cabal-described - - cabal-install # tried cabal-install-3.10.2.1, but its *test-suite* requires the disabled package: Cabal-tree-diff - - cassava-conduit # tried cassava-conduit-0.6.5, but its *test-suite* requires QuickCheck ==2.12.* and the snapshot contains QuickCheck-2.14.3 - - cayley-client # tried cayley-client-0.4.19.2, but its *test-suite* requires aeson >=0.8.0.2 && < 1.6 || ==2.0.* and the snapshot contains aeson-2.1.2.1 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* requires hspec >=2.4.1 && < 2.6 and the snapshot contains hspec-2.11.7 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* requires servant-server >=0.9.1.1 && < 0.15 and the snapshot contains servant-server-0.20 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* requires warp >=3.2.11 && < 3.3 and the snapshot contains warp-3.3.31 - - cleff # tried cleff-0.3.3.0, but its *test-suite* requires base >=4.12 && < 4.17 and the snapshot contains base-4.18.1.0 - - cleff # tried cleff-0.3.3.0, but its *test-suite* requires template-haskell >=2.14 && < 2.19 and the snapshot contains template-haskell-2.20.0.0 - - colour # tried colour-2.3.6, but its *test-suite* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.1 - - construct # tried construct-0.3.1.1, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - construct # tried construct-0.3.1.1, but its *test-suite* requires monoid-subclasses >=1.0 && < 1.2 and the snapshot contains monoid-subclasses-1.2.4.1 - - crc32c # tried crc32c-0.1.0, but its *test-suite* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - csg # tried csg-0.1.0.6, but its *test-suite* requires doctest < 0.17 and the snapshot contains doctest-0.22.2 - - csg # tried csg-0.1.0.6, but its *test-suite* requires tasty < 1.3 and the snapshot contains tasty-1.4.3 - - darcs # tried darcs-2.16.5, but its *test-suite* requires leancheck >=0.9 && < 0.10 and the snapshot contains leancheck-1.0.0 - - dhall-lsp-server # tried dhall-lsp-server-1.1.3, but its *test-suite* requires hspec >=2.7 && < 2.11 and the snapshot contains hspec-2.11.7 - - dhall-lsp-server # tried dhall-lsp-server-1.1.3, but its *test-suite* requires lsp-test >=0.13.0.0 && < 0.15 and the snapshot contains lsp-test-0.16.0.1 - - dhall-lsp-server # tried dhall-lsp-server-1.1.3, but its *test-suite* requires lsp-types >=1.2.0.0 && < 1.5 and the snapshot contains lsp-types-2.1.0.0 - - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* requires hspec >=2.7.1 && < 2.9.0 and the snapshot contains hspec-2.11.7 - - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* requires hspec-discover >=2.7.1 && < 2.9.0 and the snapshot contains hspec-discover-2.11.7 - - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: network-transport-tcp - - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch - - docopt # tried docopt-0.7.0.7, but its *test-suite* requires template-haskell >=2.15.0 && < 2.18 and the snapshot contains template-haskell-2.20.0.0 - - doldol # tried doldol-0.4.1.2, but its *test-suite* requires the disabled package: test-framework-th - - drawille # tried drawille-0.1.3.0, but its *test-suite* requires containers ==0.5.* and the snapshot contains containers-0.6.7 - - drawille # tried drawille-0.1.3.0, but its *test-suite* requires hspec >=1.11 && < 2.4 and the snapshot contains hspec-2.11.7 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires QuickCheck >=2.4 && < 2.9 and the snapshot contains QuickCheck-2.14.3 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires directory >=1.0 && < 1.3 and the snapshot contains directory-1.3.8.1 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires doctest >=0.10 && < 0.12 and the snapshot contains doctest-0.22.2 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires hlint >=1.7 && < 1.10 and the snapshot contains hlint-3.6.1 - - edit # tried edit-1.0.1.0, but its *test-suite* requires doctest >=0.13 && < 0.17 and the snapshot contains doctest-0.22.2 - - edit # tried edit-1.0.1.0, but its *test-suite* requires tasty >=1.0 && < 1.2 and the snapshot contains tasty-1.4.3 - - edit # tried edit-1.0.1.0, but its *test-suite* requires tasty-discover >=4.2 && < 4.3 and the snapshot contains tasty-discover-5.0.0 - - errors-ext # tried errors-ext-0.4.2, but its *test-suite* requires the disabled package: binary-ext - - euler-tour-tree # tried euler-tour-tree-0.1.1.0, but its *test-suite* requires the disabled package: sequence - - eventsource-stub-store # tried eventsource-stub-store-1.1.1, but its *test-suite* requires the disabled package: eventsource-store-specs - - extensible-effects # tried extensible-effects-5.0.0.1, but its *test-suite* requires the disabled package: test-framework-th - - fclabels # tried fclabels-2.0.5.1, but its *test-suite* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.0 - - feed # tried feed-1.3.2.1, but its *test-suite* requires markdown-unlit >=0.4 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - filepath-bytestring # tried filepath-bytestring-1.4.2.1.13, but its *test-suite* requires filepath >=1.4.2 && < =1.4.100.3 and the snapshot contains filepath-1.4.100.4 - - filtrable # tried filtrable-0.1.6.0, but its *test-suite* requires tasty >=1.3.1 && < 1.4 and the snapshot contains tasty-1.4.3 - - fixed-vector-hetero # tried fixed-vector-hetero-0.6.1.1, but its *test-suite* requires doctest >=0.15 && < 0.20 and the snapshot contains doctest-0.22.2 - - focuslist # tried focuslist-0.1.1.0, but its *test-suite* requires genvalidity < 1.0.0.0 and the snapshot contains genvalidity-1.1.0.0 - - focuslist # tried focuslist-0.1.1.0, but its *test-suite* requires validity < 0.12.0.0 and the snapshot contains validity-0.12.0.2 - - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* requires tasty >=1.2.3 && < 1.3 and the snapshot contains tasty-1.4.3 - - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* requires tasty-hspec >=1.1.5.1 && < 1.2 and the snapshot contains tasty-hspec-1.2.0.4 - - fused-effects # tried fused-effects-1.1.2.2, but its *test-suite* requires hedgehog >=1 && < 1.3 and the snapshot contains hedgehog-1.4 - - fused-effects # tried fused-effects-1.1.2.2, but its *test-suite* requires markdown-unlit ^>=0.5 and the snapshot contains markdown-unlit-0.6.0 - - galois-field # tried galois-field-1.0.2, but its *test-suite* requires QuickCheck >=2.13 && < 2.14 and the snapshot contains QuickCheck-2.14.3 - - galois-field # tried galois-field-1.0.2, but its *test-suite* requires bitvec >=1.0.2 && < 1.1 and the snapshot contains bitvec-1.1.5.0 - - galois-field # tried galois-field-1.0.2, but its *test-suite* requires groups >=0.4.1 && < 0.5 and the snapshot contains groups-0.5.3 - - galois-field # tried galois-field-1.0.2, but its *test-suite* requires integer-gmp >=1.0.2 && < 1.1 and the snapshot contains integer-gmp-1.1 - - galois-field # tried galois-field-1.0.2, but its *test-suite* requires semirings >=0.5 && < 0.6 and the snapshot contains semirings-0.6 - - galois-field # tried galois-field-1.0.2, but its *test-suite* requires tasty >=1.2 && < 1.3 and the snapshot contains tasty-1.4.3 - - generic-xmlpickler # tried generic-xmlpickler-0.1.0.6, but its *test-suite* requires tasty >=0.10 && < 1.3 and the snapshot contains tasty-1.4.3 - - geojson # tried geojson-4.1.1, but its *test-suite* requires hspec >=2.5 && < 2.10 and the snapshot contains hspec-2.11.7 - - hal # tried hal-1.0.0.1, but its *test-suite* requires hedgehog >=1.0.3 && < 1.2 and the snapshot contains hedgehog-1.4 - - hal # tried hal-1.0.0.1, but its *test-suite* requires vector >=0.12.0.0 && < 0.13 and the snapshot contains vector-0.13.1.0 - - hasbolt # tried hasbolt-0.1.6.3, but its *test-suite* requires hspec >=2.4.1 && < 2.11 and the snapshot contains hspec-2.11.7 - - haskell-names # tried haskell-names-0.9.9, but its *test-suite* requires tasty >=0.12 && < 1.3 and the snapshot contains tasty-1.4.3 - - haskell-tools-builtin-refactorings # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 - - haskell-tools-builtin-refactorings # tried haskell-tools-builtin-refactorings-1.1.1.0, but its *test-suite* requires time >=1.8 && < 1.9 and the snapshot contains time-1.12.2 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires knob >=0.1 && < 0.2 and the snapshot contains knob-0.2.2 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 - - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* requires Glob >=0.9 && < 0.10 and the snapshot contains Glob-0.10.2 - - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.11.5.2 - - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 - - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* requires network >=2.6 && < 2.9 and the snapshot contains network-3.1.4.0 - - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 - - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* requires polyparse >=1.12 && < 1.13 and the snapshot contains polyparse-1.13 - - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 - - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* requires time >=1.8 && < 1.9 and the snapshot contains time-1.12.2 - - haskell-tools-rewrite # tried haskell-tools-rewrite-1.1.1.0, but its *test-suite* requires tasty >=0.11 && < 1.2 and the snapshot contains tasty-1.4.3 - - haskey # tried haskey-0.3.1.0, but its *test-suite* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires lens >=4.12 && < 5 and the snapshot contains lens-5.2.3 - - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires text >=1.2 && < 2 and the snapshot contains text-2.0.2 - - hasmin # tried hasmin-1.0.3, but its *test-suite* requires doctest >=0.11 && < 0.17 and the snapshot contains doctest-0.22.2 - - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 - - hjsonpointer # tried hjsonpointer-1.5.0, but its *test-suite* requires QuickCheck < 2.12 and the snapshot contains QuickCheck-2.14.3 - - hjsonpointer # tried hjsonpointer-1.5.0, but its *test-suite* requires base < 4.12 and the snapshot contains base-4.18.1.0 - - hjsonpointer # tried hjsonpointer-1.5.0, but its *test-suite* requires hspec >=2.2 && < 2.6 and the snapshot contains hspec-2.11.7 - - hledger-iadd # tried hledger-iadd-1.3.19, but its *test-suite* requires hledger-lib >=1.31 && < 1.32 and the snapshot contains hledger-lib-1.32.1 - - hsdev # tried hsdev-0.3.4.0, but its *test-suite* requires lens-aeson >=1.0 && < 1.2 and the snapshot contains lens-aeson-1.2.3 - - hspec-need-env # tried hspec-need-env-0.1.0.10, but its *test-suite* requires transformers >=0.5.2.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* requires hspec ==2.7.* and the snapshot contains hspec-2.11.7 - - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-conduit # tried hw-conduit-0.2.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-diagnostics # tried hw-diagnostics-0.0.1.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-eliasfano # tried hw-eliasfano-0.1.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-eliasfano # tried hw-eliasfano-0.1.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-fingertree # tried hw-fingertree-0.1.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-fingertree # tried hw-fingertree-0.1.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-hedgehog # tried hw-hedgehog-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-ip # tried hw-ip-2.4.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-ip # tried hw-ip-2.4.2.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-json # tried hw-json-1.3.2.4, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-json # tried hw-json-1.3.2.4, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-json-simd # tried hw-json-simd-0.1.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-mquery # tried hw-mquery-0.2.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-mquery # tried hw-mquery-0.2.1.1, but its *test-suite* requires hedgehog >=0.6.1 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-packed-vector # tried hw-packed-vector-0.2.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-packed-vector # tried hw-packed-vector-0.2.1.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-prim # tried hw-prim-0.6.3.2, but its *test-suite* requires doctest >=0.16.2 && < 0.22 and the snapshot contains doctest-0.22.2 - - hw-prim # tried hw-prim-0.6.3.2, but its *test-suite* requires hedgehog >=1.0 && < 1.4 and the snapshot contains hedgehog-1.4 - - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires hedgehog >=0.6 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires hedgehog >=0.5 && < 1.3 and the snapshot contains hedgehog-1.4 - - hw-string-parse # tried hw-string-parse-0.0.0.5, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-xml # tried hw-xml-0.5.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.21 and the snapshot contains doctest-0.22.2 - - hw-xml # tried hw-xml-0.5.1.1, but its *test-suite* requires hedgehog >=1.0 && < 1.3 and the snapshot contains hedgehog-1.4 - - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* requires hspec >=2.4.8 && < 2.8 and the snapshot contains hspec-2.11.7 - - influxdb # tried influxdb-1.9.3, but its *test-suite* requires doctest >=0.11.3 && < 0.22 and the snapshot contains doctest-0.22.2 - - integer-types # tried integer-types-0.1.4.0, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - integer-types # tried integer-types-0.1.4.0, but its *test-suite* requires hspec-hedgehog ^>=0.0.1 and the snapshot contains hspec-hedgehog-0.1.1.0 - - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* requires tasty >=0.11.0.2 && < 1.2 and the snapshot contains tasty-1.4.3 - - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* requires tasty-hspec >=1.1.2 && < 1.2 and the snapshot contains tasty-hspec-1.2.0.4 - - json-rpc-client # tried json-rpc-client-0.2.5.0, but its *test-suite* requires QuickCheck >=2.4.2 && < 2.14 and the snapshot contains QuickCheck-2.14.3 - - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* requires hspec ==2.7.* and the snapshot contains hspec-2.11.7 - - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* requires hspec-core ==2.7.* and the snapshot contains hspec-core-2.11.7 - - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* requires doctest >=0.11.1 && < 0.17 and the snapshot contains doctest-0.22.2 - - loc # tried loc-0.2.0.0, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - loc # tried loc-0.2.0.0, but its *test-suite* requires hspec-hedgehog ^>=0.0.1 and the snapshot contains hspec-hedgehog-0.1.1.0 - - loopbreaker # tried loopbreaker-0.1.1.1, but its *test-suite* requires inspection-testing >=0.4.2.1 && < 0.5 and the snapshot contains inspection-testing-0.5.0.2 - - lrucaching # tried lrucaching-0.3.3, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 - - lrucaching # tried lrucaching-0.3.3, but its *test-suite* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - lxd-client # tried lxd-client-0.1.0.6, but its *test-suite* requires turtle >=1.3.6 && < 1.6 and the snapshot contains turtle-1.6.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires Glob >=0.7 && < 0.9 and the snapshot contains Glob-0.10.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires QuickCheck >=2.9.2 && < 2.11 and the snapshot contains QuickCheck-2.14.3 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires base >=4.9.1.0 && < 4.10 and the snapshot contains base-4.18.1.0 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires doctest >=0.9 && < 0.12 and the snapshot contains doctest-0.22.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty ==0.11.* and the snapshot contains tasty-1.4.3 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty-hunit ==0.9.* and the snapshot contains tasty-hunit-0.10.1 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty-quickcheck ==0.8.* and the snapshot contains tasty-quickcheck-0.10.2 - - medea # tried medea-1.2.0, but its *test-suite* requires hspec >=2.7.1 && < 2.9.0 and the snapshot contains hspec-2.11.7 - - medea # tried medea-1.2.0, but its *test-suite* requires hspec-core >=2.7.1 && < 2.9.0 and the snapshot contains hspec-core-2.11.7 - - menshen # tried menshen-0.0.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.14.3 - - monad-par # tried monad-par-0.3.6, but its *test-suite* requires the disabled package: test-framework-th - - monad-peel # tried monad-peel-0.3, but its *test-suite* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - mwc-random # tried mwc-random-0.15.0.2, but its *test-suite* requires doctest >=0.15 && < 0.20 and the snapshot contains doctest-0.22.2 - - nakadi-client # tried nakadi-client-0.7.0.0, but its *test-suite* requires classy-prelude >=1.4.0 && < 1.5.0 and the snapshot contains classy-prelude-1.5.0.3 - - next-ref # tried next-ref-0.1.0.2, but its *test-suite* requires hspec >=2 && < 2.3 and the snapshot contains hspec-2.11.7 - - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* requires doctest >=0.13 && < 0.17 and the snapshot contains doctest-0.22.2 - - o-clock # tried o-clock-1.4.0, but its *test-suite* requires hedgehog >=0.6 && < 1.4 and the snapshot contains hedgehog-1.4 - - oops # tried oops-0.2.0.1, but its *test-suite* requires doctest >=0.16.2 && < 0.22 and the snapshot contains doctest-0.22.2 - - options # tried options-1.2.1.2, but its *test-suite* requires the disabled package: patience - - oset # tried oset-0.4.0.1, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 - - oset # tried oset-0.4.0.1, but its *test-suite* requires hspec-discover >=2.2 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - partial-semigroup # tried partial-semigroup-0.6.0.2, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 and the snapshot contains hedgehog-1.4 - - peregrin # tried peregrin-0.4.2, but its *test-suite* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - pg-transact # tried pg-transact-0.3.2.0, but its *test-suite* requires the disabled package: tmp-postgres - - pipes-category # tried pipes-category-0.3.0.0, but its *test-suite* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - pipes-extras # tried pipes-extras-1.0.15, but its *test-suite* requires transformers >=0.2.0.0 && < 0.6 and the snapshot contains transformers-0.6.1.0 - - pipes-fluid # tried pipes-fluid-0.6.0.1, but its *test-suite* requires the disabled package: pipes-misc - - postgresql-libpq-notify # tried postgresql-libpq-notify-0.2.0.0, but its *test-suite* requires the disabled package: tmp-postgres - - postgrest # tried postgrest-9.0.1, but its *test-suite* requires hspec >=2.3 && < 2.9 and the snapshot contains hspec-2.11.7 - - pretty-sop # tried pretty-sop-0.2.0.3, but its *test-suite* requires markdown-unlit >=0.5.0 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - prettyprinter # tried prettyprinter-1.7.1, but its *test-suite* requires the disabled package: pgp-wordlist - - printcess # tried printcess-0.1.0.3, but its *test-suite* requires HUnit >=1.3 && < 1.6 and the snapshot contains HUnit-1.6.2.0 - - printcess # tried printcess-0.1.0.3, but its *test-suite* requires QuickCheck >=2.8 && < 2.10 and the snapshot contains QuickCheck-2.14.3 - - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* requires hspec >=2.4.8 && < 2.8 and the snapshot contains hspec-2.11.7 - - quickcheck-groups # tried quickcheck-groups-0.0.1.0, but its *test-suite* requires hspec >=2.10.7 && < 2.11 and the snapshot contains hspec-2.11.7 - - quickcheck-monoid-subclasses # tried quickcheck-monoid-subclasses-0.3.0.0, but its *test-suite* requires hspec >=2.10.7 && < 2.11 and the snapshot contains hspec-2.11.7 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* requires hspec >=2.4.1 && < 2.6 and the snapshot contains hspec-2.11.7 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* requires servant-server >=0.9.1.1 && < 0.15 and the snapshot contains servant-server-0.20 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* requires warp >=3.2.11 && < 3.3 and the snapshot contains warp-3.3.31 - - rank2classes # tried rank2classes-1.5.3, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - records-sop # tried records-sop-0.1.1.1, but its *test-suite* requires hspec >=2.2 && < 2.11 and the snapshot contains hspec-2.11.7 - - rel8 # tried rel8-1.4.1.0, but its *test-suite* requires hedgehog ^>=1.0 || ^>=1.1 and the snapshot contains hedgehog-1.4 - - rel8 # tried rel8-1.4.1.0, but its *test-suite* requires the disabled package: tmp-postgres - - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* requires hspec >=2.2 && < 2.8 and the snapshot contains hspec-2.11.7 - - roc-id # tried roc-id-0.2.0.0, but its *test-suite* requires hspec >=2.5.5 && < 2.11 and the snapshot contains hspec-2.11.7 - - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.14.3 - - scale # tried scale-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - scale # tried scale-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - scalendar # tried scalendar-1.2.0, but its *test-suite* requires the disabled package: SCalendar - - schematic # tried schematic-0.5.1.0, but its *test-suite* requires base >=4.11 && < 4.13 and the snapshot contains base-4.18.1.0 - - servant-cassava # tried servant-cassava-0.10.2, but its *test-suite* requires servant-server >=0.4.4.5 && < 0.20 and the snapshot contains servant-server-0.20 - - servant-docs-simple # tried servant-docs-simple-0.4.0.0, but its *test-suite* requires hspec >=2.7.1 && < 2.9 and the snapshot contains hspec-2.11.7 - - servant-docs-simple # tried servant-docs-simple-0.4.0.0, but its *test-suite* requires hspec-core >=2.7.1 && < 2.9 and the snapshot contains hspec-core-2.11.7 - - servant-js # tried servant-js-0.9.4.2, but its *test-suite* requires the disabled package: language-ecmascript - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* requires hspec >=2.4.1 && < 2.8 and the snapshot contains hspec-2.11.7 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* requires http-api-data >=0.3.7 && < 0.4.2 and the snapshot contains http-api-data-0.5.1 - - servant-mock # tried servant-mock-0.8.7, but its *test-suite* requires hspec-wai >=0.9.0 && < 0.11 and the snapshot contains hspec-wai-0.11.1 - - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* requires hspec-core >=2.5.5 && < 2.8 and the snapshot contains hspec-core-2.11.7 - - servant-streaming # tried servant-streaming-0.3.0.0, but its *test-suite* requires QuickCheck >=2.8 && < 2.13 and the snapshot contains QuickCheck-2.14.3 - - servant-streaming-client # tried servant-streaming-client-0.3.0.0, but its *test-suite* requires QuickCheck >=2.8 && < 2.12 and the snapshot contains QuickCheck-2.14.3 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* requires QuickCheck >=2.8 && < 2.12 and the snapshot contains QuickCheck-2.14.3 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* requires streaming-bytestring >=0.1 && < 0.2 and the snapshot contains streaming-bytestring-0.3.2 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* requires warp >=3.2.4 && < 3.3 and the snapshot contains warp-3.3.31 - - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* requires aeson >=1.4.1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* requires base-compat >=0.10.5 && < 0.12 and the snapshot contains base-compat-0.13.1 - - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* requires servant-server >=0.15 && < 0.18 and the snapshot contains servant-server-0.20 - - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* requires hspec >=2.4.4 && < 2.5 and the snapshot contains hspec-2.11.7 - - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* requires the disabled package: network-transport-tcp - - sexpr-parser # tried sexpr-parser-0.2.2.0, but its *test-suite* requires hspec >=2.5 && < 2.10 and the snapshot contains hspec-2.11.7 - - simple-log # tried simple-log-0.9.12, but its *test-suite* requires hspec >=2.3 && < 2.8 and the snapshot contains hspec-2.11.7 - - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* requires ansi-terminal >=0.8.0.2 && < 0.10 and the snapshot contains ansi-terminal-1.0 - - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* requires markdown-unlit >=0.5.0 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - slack-web # tried slack-web-1.6.1.0, but its *test-suite* requires hspec-discover >=2.6.0 && < 2.11 and the snapshot contains hspec-discover-2.11.7 - - spdx # tried spdx-1.0.0.3, but its *test-suite* requires base-compat ^>=0.10.5 || ^>=0.11.1 || ^>=0.12.1 and the snapshot contains base-compat-0.13.1 - - sqlite-simple-errors # tried sqlite-simple-errors-0.6.1.0, but its *test-suite* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - stb-image-redux # tried stb-image-redux-0.2.1.2, but its *test-suite* requires hspec >=2.1.5 && < 2.5 and the snapshot contains hspec-2.11.7 - - stm-supply # tried stm-supply-0.2.0.0, but its *test-suite* requires the disabled package: Unique - - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* requires hspec >=2.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.1 - - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* requires hspec >=2.1.0 && < 2.8 and the snapshot contains hspec-2.11.7 - - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires hspec >=2.7 && < 2.10 and the snapshot contains hspec-2.11.7 - - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires tasty-discover ==4.2.* and the snapshot contains tasty-discover-5.0.0 - - strongweak # tried strongweak-0.6.0, but its *test-suite* requires hspec >=2.7 && < 2.11 and the snapshot contains hspec-2.11.7 - - strongweak # tried strongweak-0.6.0, but its *test-suite* requires hspec-discover >=2.7 && < 2.10 and the snapshot contains hspec-discover-2.11.7 - - sv # tried sv-1.4.0.1, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.4 - - sv # tried sv-1.4.0.1, but its *test-suite* requires lens >=4 && < 4.20 and the snapshot contains lens-5.2.3 - - sv # tried sv-1.4.0.1, but its *test-suite* requires semigroups >=0.18 && < 0.20 and the snapshot contains semigroups-0.20 - - sv # tried sv-1.4.0.1, but its *test-suite* requires tasty >=0.11 && < 1.3 and the snapshot contains tasty-1.4.3 - - sv # tried sv-1.4.0.1, but its *test-suite* requires tasty-hedgehog >=0.1 && < 1.1 and the snapshot contains tasty-hedgehog-1.4.0.2 - - sv # tried sv-1.4.0.1, but its *test-suite* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - sv # tried sv-1.4.0.1, but its *test-suite* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.1.0 - - sv-cassava # tried sv-cassava-0.3, but its *test-suite* requires text >=1.0 && < 1.3 and the snapshot contains text-2.0.2 - - sv-core # tried sv-core-0.5, but its *test-suite* requires tasty >=0.11 && < 1.3 and the snapshot contains tasty-1.4.3 - - swagger2 # tried swagger2-2.8.7, but its *test-suite* requires hspec >=2.5.5 && < 2.11 and the snapshot contains hspec-2.11.7 - - swagger2 # tried swagger2-2.8.7, but its *test-suite* requires hspec-discover >=2.5.5 && < 2.9 and the snapshot contains hspec-discover-2.11.7 - - system-fileio # tried system-fileio-0.3.16.4, but its *test-suite* requires the disabled package: chell - - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell - - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell-quickcheck - - tar # tried tar-0.5.1.1, but its *test-suite* requires the disabled package: bytestring-handle - - tasty-discover # tried tasty-discover-5.0.0, but its *test-suite* requires hspec >=2.7 && < 2.11 and the snapshot contains hspec-2.11.7 - - tasty-discover # tried tasty-discover-5.0.0, but its *test-suite* requires hspec-core >=2.7.10 && < 2.11 and the snapshot contains hspec-core-2.11.7 - - temporary-resourcet # tried temporary-resourcet-0.1.0.1, but its *test-suite* requires tasty >=1.0 && < 1.2 and the snapshot contains tasty-1.4.3 - - test-framework # tried test-framework-0.8.2.0, but its *test-suite* requires the disabled package: libxml - - type-errors # tried type-errors-0.2.0.2, but its *test-suite* requires doctest >=0.16.0.1 && < 0.22 and the snapshot contains doctest-0.22.2 - - type-errors-pretty # tried type-errors-pretty-0.0.1.2, but its *test-suite* requires doctest >=0.16 && < 0.19 and the snapshot contains doctest-0.22.2 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires QuickCheck >=2.11.3 && < 2.14 and the snapshot contains QuickCheck-2.14.3 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires generic-random >=1.2.0.0 && < 1.3 and the snapshot contains generic-random-1.5.0.1 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires hspec >=2.0.0 && < 2.8 and the snapshot contains hspec-2.11.7 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires the disabled package: time-qq - - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* requires hspec >=2.0.0 && < 2.8 and the snapshot contains hspec-2.11.7 - - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* requires QuickCheck >=2.9 && < 2.14 and the snapshot contains QuickCheck-2.14.3 - - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* requires hspec >=2.4.1 && < 2.8 and the snapshot contains hspec-2.11.7 - - utf8-light # tried utf8-light-0.4.4.0, but its *test-suite* requires hspec >=2.3 && < 2.11 and the snapshot contains hspec-2.11.7 - - wai-session-redis # tried wai-session-redis-0.1.0.5, but its *test-suite* requires hspec < 2.10 and the snapshot contains hspec-2.11.7 - - wakame # tried wakame-0.1.0.0, but its *test-suite* requires tasty-discover >=4.2 && < 5.0 and the snapshot contains tasty-discover-5.0.0 - - wakame # tried wakame-0.1.0.0, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.0.2 - - web-routes-th # tried web-routes-th-0.22.8.1, but its *test-suite* requires hspec >=2.2 && < 2.11 and the snapshot contains hspec-2.11.7 - - web3-bignum # tried web3-bignum-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - web3-bignum # tried web3-bignum-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - web3-crypto # tried web3-crypto-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - web3-crypto # tried web3-crypto-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - web3-ethereum # tried web3-ethereum-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - web3-ethereum # tried web3-ethereum-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - web3-polkadot # tried web3-polkadot-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - web3-polkadot # tried web3-polkadot-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - web3-solidity # tried web3-solidity-1.0.0.0, but its *test-suite* requires hspec >=2.4.4 && < 2.8 and the snapshot contains hspec-2.11.7 - - web3-solidity # tried web3-solidity-1.0.0.0, but its *test-suite* requires hspec-discover >=2.4.4 && < 2.8 and the snapshot contains hspec-discover-2.11.7 - - wild-bind-x11 # tried wild-bind-x11-0.2.0.15, but its *test-suite* requires time >=1.5.0 && < 1.12 and the snapshot contains time-1.12.2 - - yesod-static-angular # tried yesod-static-angular-0.1.8, but its *test-suite* requires yesod-test >=1.2 && < 1.6 and the snapshot contains yesod-test-1.6.16 - - zm # tried zm-0.3.2, but its *test-suite* requires doctest >=0.11.1 && < 0.14 and the snapshot contains doctest-0.22.2 - - zm # tried zm-0.3.2, but its *test-suite* requires tasty >=0.11 && < 0.13 and the snapshot contains tasty-1.4.3 - - zm # tried zm-0.3.2, but its *test-suite* requires tasty-quickcheck >=0.8.1 && < 0.9.2 and the snapshot contains tasty-quickcheck-0.10.2 - - zm # tried zm-0.3.2, but its *test-suite* requires timeit >=1 && < 1.1 and the snapshot contains timeit-2.0 - # End of Test bounds issues - - # general failures - - aern2-mp # https://github.com/michalkonecny/aern2/issues/11 - - # ??? - - chronos # 1.1.5.1 chronos-test: executable not found - - do-list # 1.0.1 test: executable not found https://github.com/tserduke/do-list/issues/3 - - incremental-parser # 0.5.0.3 Main: executable not found - - streamt # executable not found - -# end of skipped-tests - -# Tests listed in expected-test-failures configure correctly but may fail to run -# or even build correctly. A Stackage build should not fail based on a test build -# or test run failure for these packages. -# (Testsuites which can't configure should be placed under skipped-tests.) -# -# We need to build and run test suites to verify if tests listed here -# can be re-enabled, so we usually wait for the maintainer to file a -# PR to re-enable them. -expected-test-failures: - - # Compilation failures - - Spock # 0.14.0.0 - - blake2 # 0.3.0 - - blas-hs # 0.1.1.0 - - brick # 2.1.1 - - butter # 0.1.0.6 - - cabal-file-th # 0.2.7 - - cacophony # 0.10.1 https://github.com/centromere/cacophony/issues/15 - - cereal # 0.5.8.3 https://github.com/GaloisInc/cereal/issues/109 - - conduit-aeson # https://github.com/commercialhaskell/stackage/issues/6469 - - conduit-connection # 0.1.0.5 - - cryptohash # 0.11.9 Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built - - crypton-x509 # 1.7.6 https://github.com/kazu-yamamoto/crypton-certificate/issues/1 - - deriveJsonNoPrefix # 0.1.0.1 compile fail against aeson 2 - - do-notation # 0.1.0.2 - - flay # 0.4 - - generic-lens # https://github.com/commercialhaskell/stackage/issues/6377 - - geojson # 4.1.0 - - ghc-byteorder # 4.11.0.0.10 https://github.com/haskell-hvr/ghc-byteorder/issues/1 - - ghc-prof # Regression tests: /usr/bin/ld.gold: error: cannot find -lHStemporary-1.3-51ST9z47bmaL2YkhqqBGqn_p ... - - heap # 1.0.4 https://github.com/pruvisto/heap/issues/11 - - hourglass # 0.2.12 - - hweblib # 0.6.3 https://github.com/aycanirican/hweblib/issues/3 - - inline-r # 1.0.1 https://github.com/tweag/HaskellR/issues/371 - - leveldb-haskell - - lifted-base # 0.2.3.12 compile fail - - mfsolve # https://github.com/commercialhaskell/stackage/issues/6379 - - multiarg # 0.30.0.10 - - parameterized # 0.5.0.0 https://github.com/commercialhaskell/stackage/issues/5746 - - protobuf # 0.2.1.4 - - quickcheck-state-machine # 0.8.0 https://github.com/stevana/quickcheck-state-machine/issues/32 - - record-wrangler # 0.1.1.0 - - secp256k1-haskell # #5948/closed - - servant-static-th # 1.0.0.0 Tasty issue: https://github.com/commercialhaskell/stackage/issues/6090 - - snappy # Could not find module ‘Functions’ - - thread-supervisor # 0.2.0.0 - - twitter-types # 0.11.0 compile fail against aeson 2 - - type-of-html-static # 0.1.0.2 https://github.com/commercialhaskell/stackage/issues/5728 - - ua-parser # 0.7.7.0 compile fail against aeson 2 - - ua-parser # 0.7.7.0 https://github.com/commercialhaskell/stackage/issues/6440 - - vformat # 0.14.1.0 - - vivid-supercollider # 0.4.1.2 https://github.com/commercialhaskell/stackage/issues/4250 - - xml-html-qq # 0.1.0.1 - - xmlgen # 0.6.2.2 https://github.com/skogsbaer/xmlgen/issues/6 - - # Consistent test failures - - Allure # 0.11.0.0 - - ap-normalize # 0.1.0.1 ghc-9.6 - - astro # 0.4.3.0 https://github.com/aligusnet/astro/issues/8 - - generics-eot # 0.4.0.1 ghc-9.6 - - hsexif # 0.6.1.10 Missing test file - - pvar # 1.0.0.0 ghc-9.6 - - tar-conduit # https://github.com/snoyberg/tar-conduit/issues/33 - - markov-chain-usage-model # https://github.com/advancedtelematic/markov-chain-usage-model/issues/44 - - # Intermittent failures or unreliable. These tests may pass when - # re-enabled, but will eventually fail again. - # - - aeson-lens # https://github.com/tanakh/aeson-lens/issues/10 - - base64 # https://github.com/emilypi/base64/issues/31 - - binary-instances # https://github.com/haskellari/binary-instances/issues/7 - - cabal-debian # https://github.com/ddssff/cabal-debian/issues/50 - - capataz # https://github.com/roman/Haskell-capataz/issues/6 - - cardano-coin-selection # 1.0.1 https://github.com/input-output-hk/cardano-coin-selection/issues/93 - - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 - - crypto-numbers - - css-text # https://github.com/yesodweb/css-text/issues/10 - - distributed-process - - distributed-process-execution # https://github.com/haskell-distributed/distributed-process-execution/issues/2 - - distributed-process-task - - dl-fedora # status 404 on http download - - fft # test-fft: exited with: ExitFailure (-11) - - foldl-statistics # https://github.com/data61/foldl-statistics/issues/2 - - friday # https://github.com/RaphaelJ/friday/issues/37 - - fsnotify # Often runs out of inotify handles - - hastache - - hedn - - idris # https://github.com/fpco/stackage/issues/1382 - - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 - - kdt # 0.2.5 https://github.com/giogadi/kdt/issues/7 - - lapack - - math-functions # https://github.com/bos/math-functions/issues/25 - - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 - - network # Unfortunately network failures seem to happen haphazardly - - nsis # Intermittent on non-Windows systems - - tdigest # 0.3 https://github.com/phadej/tdigest/issues/46 - - texmath # https://github.com/jgm/texmath/issues/224 - - tree-diff # 0.3.0.1 https://github.com/haskellari/tree-diff/issues/79 - - typst # https://github.com/jgm/typst-hs/issues/11 - - # Requires running servers, accounts, or a specific environment. - # - # If a maintainer wants us to run a partial tests suite with tests - # that do not require external dependencies, see - # https://github.com/commercialhaskell/stackage/issues/6172#issuecomment-902072030 - # - - GLFW-b # X - - HTF # Requires shell script and are incompatible with sandboxed package databases - - HaRe # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 - - IPv6DB - - accelerate-bignum # CUDA GPU - - aeson-typescript # needs either yarn or npm; one of them is needed to install a TypeScript compiler. - - alex - - amqp - - aws # AWS Credentials - - beam-postgres # requires Postgress instance - - bindings-GLFW # Expects running X server - - bitcoin-api - - bitcoin-api-extra - - bloodhound # ElasticSearch - - cabal-install - - cayley-client - - consul-haskell - - cql-io # Cassandra - - credential-store # requieres dbus sockets - - datadog # requires API keys in env vars https://github.com/fpco/stackage/pull/3308#issuecomment-369535040 - - dbcleaner # Requires running PostgreSQL server - - dbmigrations # PostgreSQL - - dbus # #6373/closed - - dns # https://github.com/commercialhaskell/stackage/issues/6374 - - drifter-postgresql # PostgreSQL - - egison # executable not found https://github.com/egison/egison/issues/250 - - esqueleto # mysql and postgresql - - etcd # etcd https://github.com/fpco/stackage/issues/811 - - eventful-dynamodb - - eventful-postgresql - - eventsource-geteventstore-store - - eventstore # Event Store - - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 - - fb # Facebook app - - gdax # Needs environment variables set - - ghc-imported-from # depends on haddocks being generated first https://github.com/fpco/stackage/pull/1315 - - ghc-mod # https://github.com/DanielG/ghc-mod/issues/611 - - githash # Needs a git repo - - gitson # 0.5.2 error with git executable https://github.com/myfreeweb/gitson/issues/1 - - gitson # https://github.com/myfreeweb/gitson/issues/1 - - happy # Needs mtl in the user package DB - - haskell-neo4j-client # neo4j with auth disabled - - haskell-tools-cli # https://github.com/haskell-tools/haskell-tools/issues/230 - - haskell-tools-refactor # https://github.com/haskell-tools/haskell-tools/issues/231 - - hasql # PostgreSQL - - hasql-dynamic-statements # PostgreSQL - - hasql-notifications # PostgreSQL - - hasql-queue - - hasql-transaction # PostgreSQL - - hedis - - hexml-lens # Access to web.archive.org is unreliable. - - hie-bios # cabal, stack, ghc; see https://github.com/commercialhaskell/stackage/issues/5025 - - hjsmin # Test-runner expects a cabal-style 'dist-newstyle' directory - - hocilib # oracle - - http-api-data-qq # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - - http-client # httpbin issues, https://github.com/snoyberg/http-client/issues/439 - - http-client-tls # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - - http-directory # httpbin issues, https://github.com/juhp/http-directory/issues/1 - - http2 # executable not found https://github.com/kazu-yamamoto/http2/issues/22 - - hworker - - influxdb - - json-autotype # Requires filesystem access - - jvm - - katip-elasticsearch # elasticsearch - - log # ElasticSearch - - lxd-client # Needs LXD, not available on debian - - lz4 # executable not found https://github.com/commercialhaskell/stackage/issues/6226 - - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 - - matplotlib # https://github.com/fpco/stackage/issues/2365 - - memcached-binary # memcached - - milena - - minio-hs # 1.6.0 Depends on AWS API - - mongoDB # Requires local MongoDB server - - mysql # MySQL - - mysql-haskell # Requires local mysql server with a test account, and binlog enabled. - - mysql-simple # MySQL - - network-anonymous-i2p - - nri-kafka # requires kafka - - nri-postgresql # requires postgres - - nri-redis # requires redis - - odbc # "Need ODBC_TEST_CONNECTION_STRING environment variable" - - opaleye # PostgreSQL - - optima # `demo` invoked with bad arguments https://github.com/commercialhaskell/stackage/pull/6102 - - pandoc-plot # requires matlab, etc and DISPLAY for tcltk - - pantry # https://github.com/commercialhaskell/stackage/issues/4628 - - peregrin # Requires running pg-harness-server - - persistent-redis # redis - https://github.com/fpco/stackage/pull/1581 - - pipes-mongodb - - postgresql-libpq-notify - - postgresql-query # PostgreSQL - - postgresql-simple # PostgreSQL - - postgresql-simple-migration - - postgresql-simple-queue - - postgresql-syntax # hedgehog-test executable not found https://github.com/commercialhaskell/stackage/pull/6102 - - postgresql-typed # PostgreSQL - - postgrest # PostgreSQL - - purescript # git 128 https://github.com/purescript/purescript/issues/2292 - - rattle # needs fsatrace - - redis-io - - rel8 - - req-conduit # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - - rest-rewrite # posix_spawnp - - rethinkdb - - rethinkdb-client-driver - - riak # needs riak server on localhost:8098 - - sdl2 # "Failed to connect to the Mir Server" - - sendgrid-v3 # Requires sendgrid API key in env #5951/closed - - serialport # "The tests need two serial ports as command line arguments" https://github.com/jputcu/serialport/issues/30 - - servant-rate-limit # redis - - serversession-backend-persistent # persistent, see https://github.com/commercialhaskell/stackage/pull/6655#issuecomment-1198868074 - - serversession-backend-redis # redis - - shake # Needs ghc on $PATH with some installed haskell packages - - slack-api # needs api key https://github.com/commercialhaskell/stackage/pull/5345 - - sourcemap # requires npm installed packages - - squeal-postgresql # ConnectionException "LibPQ.exec", https://github.com/commercialhaskell/stackage/issues/7108 - - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account - - sydtest-wai # epollControl does not exist. Stackage server issue? - - users-persistent # sqlite - - users-postgresql-simple # PostgreSQL - - yesod-core - - wai-cors # PhantomJS - - wai-middleware-delegate # Access to httpbin.org is unreliable (at the moment 504 Gateway Time-out). - - wai-rate-limit-redis # Redis - - wai-session-postgresql # PostgreSQL - - wai-session-redis # https://github.com/commercialhaskell/stackage/pull/5980 - - web3 # requires running server - - webdriver-angular # webdriver server - - websockets - - # Missing test files in sdist - # - # The cause is that a test suite requires a file that is not - # present in the tarball that is uploaded to Hackage. It can be - # fixed by adding these files to `extra-source-files` in the - # .cabal file. - # - - aeson-combinators # https://github.com/turboMaCk/aeson-combinators/issues/31 - - brittany # https://github.com/commercialhaskell/stackage/issues/6465 - - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 - - crypto-pubkey # https://github.com/vincenthz/hs-crypto-pubkey/issues/23 - - doctest-discover # https://github.com/karun012/doctest-discover/issues/33 - - enum-text # https://github.com/cdornan/enum-text/issues/3 - - ghc-events # https://github.com/haskell/ghc-events/issues/70 - - gitlab-haskell # https://github.com/commercialhaskell/stackage/issues/6088 - - hspec-junit-formatter # https://github.com/freckle/hspec-junit-formatter/issues/14 - - persistent # https://github.com/commercialhaskell/stackage/issues/6037 - - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 - - wai-saml2 # https://github.com/mbg/wai-saml2/issues/44 - - # Testcase failures, or other runtime failures. - # These can be real testsuite bugs, or maybe limitations in test cases or the test setup. - - OrderedBits # 0.0.2.0 - - ShellCheck # https://github.com/commercialhaskell/stackage/issues/6867 - - ace # failed with ghc-9.4.4 - - algebraic-graphs # Module not visible https://github.com/commercialhaskell/stackage/issues/4670 - - binary-generic-combinators # 0.4.4.0 negative quickcheck resize - - bsb-http-chunked # 0.0.0.4 - - c2hs # 0.28.8 - - cfenv # 0.1.0.0 https://github.com/tomphp/haskell-cfenv/issues/1 - - character-cases # 0.1.0.6 https://github.com/aiya000/hs-character-cases/issues/3 - - codec-beam # 0.2.0 posix_spawnp: does not exist - - colonnade # 1.2.0.2 https://github.com/andrewthad/colonnade/issues/31 - - control-dsl # 0.2.1.3 - - crypt-sha512 # 0 Use -p '/crypt.$6$rounds=10$roundstoolow/' to rerun this test only. - - curl-runnings # 0.17.0 - - download # 0.3.2.7 https://github.com/fpco/stackage/issues/2811 - - duration # 0.2.0.0 - - ede # 0.3.3.0 hashable order dependent - - fixed-vector-hetero # 0.6.1.1 - - generic-optics # 2.2.1.0 optimization output https://github.com/kcsongor/generic-lens/issues/133 - - github-types # https://github.com/commercialhaskell/stackage/issues/6549 - - haskoin-node # https://github.com/commercialhaskell/stackage/issues/6769 - - hgeometry-combinatorial # 0.14 - - hruby # 0.5.1.0 - - hspec-golden-aeson # 0.9.0.0 - - invertible # 0.2.0.8 executable not found - - justified-containers # 0.3.0.0 - - jwt # 0.11.0 - - lattices # quicheck flakiness - - list-transformer - - lz4-frame-conduit # https://github.com/nh2/lz4-frame-conduit/issues/3 - - massiv-io - - megaparsec-tests - - memcache # 0.3.0.1 executable not found - - mighty-metropolis # https://github.com/jtobin/mighty-metropolis/issues/6 - - mixpanel-client # https://github.com/domenkozar/mixpanel-client/issues/7 - - morpheus-graphql-app - - mwc-random - - nettle # https://github.com/stbuehler/haskell-nettle/issues/10 - - nri-observability # https://github.com/commercialhaskell/stackage/issues/6179 - - nri-prelude # https://github.com/commercialhaskell/stackage/issues/6179 - - ochintin-daicho - - openapi3 - - openssl-streams # 1.2.3.0 asn1 encoding wrong tag - - opentelemetry-extra # 0.8.0 negative quickcheck resize - - optics # 0.4.2.1 - - pcre-heavy - - persistent-sqlite # https://github.com/yesodweb/persistent/issues/989 - - pkgtreediff # 0.6.0 - - posix-paths - - posix-pty # 0.2.2 - - prettyprinter - - prettyprinter-ansi-terminal - - product-profunctors # 0.11.0.3 executable not found - - rando # https://github.com/commercialhaskell/stackage/issues/4249 - - rank1dynamic - - readline # 1.0.3.0 - - req # https://github.com/commercialhaskell/stackage/issues/6904 - - rescue - - roc-id # 0.1.0.0 negative quickcheck resize - - rose-trees - - safe-decimal - - simple-affine-space - - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 - - singletons-base - - sized - - spatial-math - - sqids - - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/6 - - subcategories - - sydtest-yesod # https://github.com/commercialhaskell/stackage/issues/6798 - - tasty-fail-fast - - tasty-html # https://github.com/commercialhaskell/stackage/issues/6966 - - thyme # 0.4 - - triplesec - - turtle - - type-level-kv-list - - tzdata # 0.2.20230322.0 - https://github.com/ysangkok/haskell-tzdata/issues/3 - - unicode-show - - universe-some - - universum - - utf8-conversions - - varying - - vivid-osc - - wai-extra # https://github.com/yesodweb/wai/issues/886 - - wakame - - world-peace - - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - - xmlbf - - yarn-lock - - yesod-gitrev # needs a git repo https://github.com/commercialhaskell/stackage/issues/6132 - - yesod-markdown # https://github.com/pbrisbin/yesod-markdown/issues/77 - - # Assertion failures due to module name ambiguity. - # These _should_ be fixed by using the `hide` section of this file - - reanimate # https://github.com/commercialhaskell/stackage/issues/5626 - - # Recursive deps https://github.com/fpco/stackage/issues/1818 - - options - - text # 1.2.2.1 - - # Problem on the stackage build server, we need to dig deeper into - # these if we want them fixed - - domain-optics # `demo`: executable not found - - ghci-hexcalc # https://github.com/takenobu-hs/ghci-hexcalc/issues/2 - - haskell-tools-daemon # openFile: permission denied https://github.com/fpco/stackage/issues/2502 - - isocline # segfault https://github.com/daanx/isocline/issues/1 - - rounded # segfault - - shake-language-c # Cannot reproduce locally, looks like it may be a bug in Stack or curator - - skein # openfile: does not exist https://github.com/fpco/stackage/issues/1187 - - genvalidity-text # Suddenly not able to find the executable - - safe-coloured-text-layout # Golden output not found - - ListLike # listlike-tests: executable not found - - lsp-test # 'posix_spawnp' does not exist, 'hPutBuf: resource vanished (Broken Pipe)' https://github.com/commercialhaskell/stackage/issues/7189 - - # doctests can be flaky on the build server, add packages here if - # they start causing issues. - - bookkeeping - - detour-via-sci # https://github.com/commercialhaskell/stackage/issues/6360 - - dhall - - dimensional # CPP issue - - doctest-driver-gen - - doctest-parallel - - dyre - - envelope # https://github.com/commercialhaskell/stackage/issues/6383 - - error - - fmt # https://github.com/commercialhaskell/stackage/issues/6375 - - greskell - - greskell-core - - headroom - - hint - - hledger-lib - - iproute - - kawhi - - lens-regex - - makefile # Doctests require hidden Glob package - - model - - multiset # Doctests require hidden Glob package - - servant-openapi3 - - xml-indexed-cursor - - yesod-paginator - - # Misc. Please check if there is a better section before adding more packages here. - - ghcid # Weird conflicts with sandboxingistributed/distributed-process-supervisor/issues/1 - - hspec-expectations-pretty-diff # https://github.com/unrelentingtech/hspec-expectations-pretty-diff/issues/7 - - hw-kafka-client # missing exe https://github.com/commercialhaskell/stackage/pull/5542 - - pandoc # https://github.com/jgm/pandoc/issues/5582 - - pcg-random # https://github.com/cchalmers/pcg-random/pull/7 - - persistent-mongoDB # Requires a running server - - persistent-mysql # https://github.com/commercialhaskell/stackage/issues/4764 - - persistent-postgresql # https://github.com/commercialhaskell/stackage/issues/4763 - - pg-transact # https://github.com/jfischoff/pg-transact/issues/2 - - poly - - postgresql-simple-queue # same issue as before, see also https://github.com/fpco/stackage/issues/2592 as that will fix both - - raaz # https://github.com/commercialhaskell/stackage/issues/4784 - - rattletrap # OOM? https://github.com/fpco/stackage/issues/2232 - - relude # doctest fails due to GHC bugs, will be fixed in the next `relude` release - - sbv - - servant-elm # https://github.com/haskell-servant/servant-elm/issues/62 - - servant-ruby # Module not visible https://github.com/commercialhaskell/stackage/issues/4650 - - skews # https://github.com/iij-ii/direct-hs/issues/100 - - stm-delay # https://github.com/joeyadams/haskell-stm-delay/issues/5 - - tasty-discover # https://github.com/commercialhaskell/stackage/issues/4722 - - threads # https://github.com/basvandijk/threads/issues/10 - - tmp-postgres # https://github.com/jfischoff/tmp-postgres/issues/1 - - # Please review the sections above before adding packages to a new section or to Misc. - -# end of expected-test-failures - - -# Haddocks which are expected to fail. Same concept as expected test failures. -expected-haddock-failures: - - # Requires build before haddock, which doesn't always happen in incremental - # builds. Could consider special-casing this requirement. - - gtk3 - - # Intermittent failures or unreliable. These may pass when - # re-enabled, but will eventually fail again. Only remove these - # from expected-haddock-failures if we know a fix has been released. - - gi-gtk # Uses all memory - - # Problem on the stackage build server, we need to dig deeper into - # these if we want them fixed - - # internal error when calculating transitive package dependencies - - hw-balancedparens - - hw-ip # https://github.com/commercialhaskell/stackage/issues/5014 - - hw-json # https://github.com/commercialhaskell/stackage/issues/5014 - - hw-rankselect - - doctest-parallel # https://github.com/commercialhaskell/stackage/issues/5014 - - tztime # https://github.com/commercialhaskell/stackage/issues/5014 - - # crashes with 9.4.3 - - MissingH # https://github.com/haskell-hvr/missingh/issues/61 -# end of expected-haddock-failures - -# For packages with haddock issues -skipped-haddocks: -- amazonka-ec2 # Around 7 GB memory consumption - so do not build haddock to optimize overall performance. For more details see: https://gitlab.haskell.org/ghc/ghc/-/issues/19203, https://github.com/brendanhay/amazonka/issues/549 and related issues. -- modular # Module uses compiler plugins https://github.com/haskell/haddock/issues/900 -# end of skipped-haddocks - -# Benchmarks which are known not to build. Note that, currently we do not run -# benchmarks, and therefore failures are only for building, not running. -expected-benchmark-failures: - # Compilation failures - - OrderedBits # 0.0.2.0 - - cacophony # 0.10.1 - - chronos # 1.1.5.1 Ambiguous occurrence ‘Thyme.defaultTimeLocale’ - - cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5 - - cryptohash # 0.11.9 https://github.com/vincenthz/hs-cryptohash/pull/43 - - do-list # 1.0.1 https://github.com/tserduke/do-list/issues/3 - - fast-builder # 0.1.3.0 compile fail against aeson 2 - - genvalidity-text # 1.0.0.1 https://github.com/NorfairKing/validity/issues/105 - - hedis # 0.15.2 https://github.com/informatikr/hedis/issues/214 - - incremental-parser # 0.5.0.3 - - lz4 # https://github.com/fpco/stackage/issues/3510 - - memcache # 0.3.0.1 - - product-profunctors # 0.11.1.1 - - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/5 - - ua-parser # 0.7.7.0 compile fail against aeson 2 - - universum - - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 - -# end of expected-benchmark-failures - - -# Benchmarks which should not be built. -# Note that Stackage builds benchmarks but does not run them. -# By skipping a benchmark, we do not pull in the build dependencies -# Packages should only be added here if required by `stackage-curator check' -# or if Setup fails because of missing foreign libraries. -# Otherwise place them in expected-benchmark-failures. -skipped-benchmarks: - # Cyclic dependencies - - Agda - - aeson - - indexed-traversable-instances - - semialign - - attoparsec - - case-insensitive - - cassava - - clock - - criterion - - criterion-measurement - - foldable1-classes-compat - - foundation - - hashable # https://github.com/fpco/stackage/issues/1818 - - hspec - - microstache - - nanospec - - scientific - - statistics - - tree-diff - - vector-binary-instances - - # Timeouts - - gogol-youtube - - # Very resource intensive - - OpenGLRaw - - pandoc - - git-annex - - # Maintainers who don't want to update benchmarks - # Only re-enable if requested. - ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 - - uuid - - uuid-types - # @nikita-volkov https://github.com/fpco/stackage/issues/2538#issuecomment-305129396 - - base-prelude - - bytestring-strict-builder - - bytestring-tree-builder - - cases - - focus - - hasql - - hasql-pool - - list-t - - mtl-prelude - - neat-interpolation - - partial-handler - - postgresql-binary - - refined - - slave-thread - - stm-containers - - vector-builder - # @ivan-m https://github.com/fpco/stackage/issues/2538#issuecomment-307290070 - - fgl - - fgl-arbitrary - - graphviz - - wl-pprint-text - # @phadej - - dlist-nonempty # criterion-1.3 - - splitmix # criterion-1.3 - # @sjakobi - - prettyprinter - - prettyprinter-ansi-terminal # https://github.com/commercialhaskell/stackage/issues/5560 - - # See "Large scale enabling/disabling of packages" in CURATORS.md for how to manage this section. - # - # Benchmark bounds issues - - IntervalMap # tried IntervalMap-0.6.2.1, but its *benchmarks* requires the disabled package: SegmentTree - - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* requires accelerate-llvm-native >=1.1 && < 1.2 and the snapshot contains accelerate-llvm-native-1.3.0.0 - - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* requires criterion >=1.0 && < 1.5 and the snapshot contains criterion-1.6.3.0 - - avers # tried avers-0.0.17.1, but its *benchmarks* requires criterion >=1.1.4.0 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* requires criterion ==1.1.* and the snapshot contains criterion-1.6.3.0 - - buffer-builder # tried buffer-builder-0.2.4.8, but its *benchmarks* requires the disabled package: json-builder - - cipher-aes # tried cipher-aes-0.2.11, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - - cipher-camellia # tried cipher-camellia-0.0.2, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - - cipher-rc4 # tried cipher-rc4-0.1.4, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - - cmark-gfm # tried cmark-gfm-0.2.6, but its *benchmarks* requires the disabled package: cheapskate - - csg # tried csg-0.1.0.6, but its *benchmarks* requires criterion < 1.6 and the snapshot contains criterion-1.6.3.0 - - csg # tried csg-0.1.0.6, but its *benchmarks* requires vector < 0.13 and the snapshot contains vector-0.13.1.0 - - distributed-process # tried distributed-process-0.7.4, but its *benchmarks* requires the disabled package: network-transport-tcp - - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* requires criterion >=0.8 && < 1.2 and the snapshot contains criterion-1.6.3.0 - - extensible-effects # tried extensible-effects-5.0.0.1, but its *benchmarks* requires the disabled package: test-framework-th - - filepath-bytestring # tried filepath-bytestring-1.4.2.1.13, but its *benchmarks* requires filepath >=1.4.2 && < =1.4.2.1 and the snapshot contains filepath-1.4.100.4 - - galois-field # tried galois-field-1.0.2, but its *benchmarks* requires criterion >=1.5 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - hasbolt # tried hasbolt-0.1.6.3, but its *benchmarks* requires hspec >=2.4.1 && < 2.11 and the snapshot contains hspec-2.11.7 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* requires aeson >=1.0 && < 1.5 and the snapshot contains aeson-2.1.2.1 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* requires time >=1.6 && < 1.9 and the snapshot contains time-1.12.2 - - hasmin # tried hasmin-1.0.3, but its *benchmarks* requires criterion >=0.11 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - hip # tried hip-1.5.6.0, but its *benchmarks* requires the disabled package: repa-algorithms - - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *benchmarks* requires resourcet >=1.1 && < 1.3 and the snapshot contains resourcet-1.3.0 - - lz4 # tried lz4-0.2.3.1, but its *benchmarks* requires the disabled package: snappy - - markup-parse # tried markup-parse-0.1.1, but its *benchmarks* requires the disabled package: html-parse - - min-max-pqueue # tried min-max-pqueue-0.1.0.2, but its *benchmarks* requires criterion >=1.4.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - minisat-solver # tried minisat-solver-0.1, but its *benchmarks* requires the disabled package: easyrender - - normalization-insensitive # tried normalization-insensitive-2.0.2, but its *benchmarks* requires criterion >=0.6.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - o-clock # tried o-clock-1.4.0, but its *benchmarks* requires the disabled package: tiempo - - pasta-curves # tried pasta-curves-0.0.1.0, but its *benchmarks* requires criterion >=1.5 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - pg-transact # tried pg-transact-0.3.2.0, but its *benchmarks* requires the disabled package: tmp-postgres - - pipes # tried pipes-4.3.16, but its *benchmarks* requires optparse-applicative >=0.12 && < 0.18 and the snapshot contains optparse-applicative-0.18.1.0 - - pred-trie # tried pred-trie-0.6.1, but its *benchmarks* requires the disabled package: sets - - regex-applicative # tried regex-applicative-0.3.4, but its *benchmarks* requires the disabled package: parsers-megaparsec - - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* requires criterion >=0.6.2.1 && < 1.4 and the snapshot contains criterion-1.6.3.0 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *benchmarks* requires shelly >=1.6.8 && < 1.10 and the snapshot contains shelly-1.12.1 - - superbuffer # tried superbuffer-0.3.1.2, but its *benchmarks* requires criterion < 1.3 and the snapshot contains criterion-1.6.3.0 - - sv # tried sv-1.4.0.1, but its *benchmarks* requires criterion >=1.3 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: criterion-plus - - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: stm-stats - - vectortiles # tried vectortiles-1.5.1, but its *benchmarks* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.3.0 - - xeno # tried xeno-0.6, but its *benchmarks* requires the disabled package: bytestring-mmap - - xxhash-ffi # tried xxhash-ffi-0.2.0.0, but its *benchmarks* requires the disabled package: xxhash - # End of Benchmark bounds issues - -# end of skipped-benchmarks - - -skipped-profiling: - # https://github.com/nomeata/ghc-heap-view/commit/8d198eb8fbbad2ce0c4527c781659f35b8909c04#diff-8288955e209cfbead5b318a8598be9c0R10 - - ghc-heap-view - - -# Mapping from Github account holding a package to the Github users who should -# be pinged on failure. If no value is specified here, then the owning account -# will be pinged. -github-users: - diagrams: - - byorgey - - fryguybob - - jeffreyrosenbluth - - bergey - yesodweb: - - snoyberg - fpco: - - snoyberg - faylang: - - bergmark - silkapp: - - bergmark - - hesselink - snapframework: - - mightybyte - haskell-ro: - - mihaimaruseac - elm-lang: - - JoeyEremondi - prowdsponsor: - - meteficha - analytics: - - ekmett - haskell-openal: - - svenpanne - haskell-opengl: - - ekmett - - svenpanne - lambdabot: - - DanBurton - - mokus0 - haskell-game: - - ocharles - Happstack: - - stepcut - clckwrks: - - stepcut - stackbuilders: - - jsl - - sestrella - - CristhianMotoche - scotty-web: - - RyanGlScott - - xich - ku-fpg: - - RyanGlScott - haskell-compat: - - RyanGlScott - vivid: - - vivid-synth - midair: - - vivid-synth - nano-erl: - - vivid-synth - telegram-api: - - klappvisor - fpinsight: - - thierry-b - IxpertaSolutions: - - Siprj - - liskin - - trskop - - xkollar - ekmett: - - RyanGlScott - onrock-eng: - - donkeybonks - tweag: - - bazel-runfiles - network-multicast: - - audreyt - xmonad: - - byorgey - - dmwit - - geekosaur - - liskin - - psibi - - slotThe - -# end of github-users - -# begin build-tool-overrides -# -# Used to set a mapping from build tools to package names, ignoring the -# metadata on Hackage itself - -build-tool-overrides: - # Ignore the cabal-install-ghc72 and cabal-install-ghc74 packages - cabal: - - cabal-install - -# end build-tool-overrides - -# Useful for checking for strict upper bounds against new versions of core -# packages, e.g. when a new version of transformers is released -# -# treat-as-non-core: -# - transformers - -# Give an error if the latest package version doesn't match what's -# listed below, see: -# https://github.com/fpco/stackage-curator/issues/25 -# -# Example: -# If bindings-GLFW-3.1.2.1 is the current latest version write -# - bindings-GLFW-3.1.2.1 # Comment saying what should be done when the new version is released -tell-me-when-its-released: [] - -# Packages which should be hidden after registering, to avoid module name -# conflicts. This is intended for at least two use cases: -# -# * Making doctests pass (https://github.com/yesodweb/wai/issues/579) -# -# * Allowing tools like Stack to get a mapping from module name to package name -# for automatically installing dependencies -hide: -- HTF # conflicts with Test.Framework in test-framework -- async-dejafu # https://github.com/yesodweb/wai/issues/579 -- base-compat # conflicts with base-compat-batteries, see https://github.com/fpco/stackage/issues/3607 -- base-noprelude # By design, conflicts with base -- binary-ieee754 # conflicts with data-binary-ieee754 -- cipher-aes # Cryptonite deprecation -- cipher-blowfish # Cryptonite deprecation -- cipher-camellia # Cryptonite deprecation -- cipher-des # Cryptonite deprecation -- cipher-rc4 # Cryptonite deprecation -- constraint # conflicts with constraints -- control-monad-free # conflicts with Control.Monad.Free in free -- courier # conflicts with Network.Transport in network-transport -- crypto-api # `module Crypto.Random` conflicts with cryptonite -- crypto-cipher-types # Cryptonite deprecation -- crypto-numbers # Cryptonite deprecation -- crypto-pubkey # Cryptonite deprecation -- crypto-random # Cryptonite deprecation -- cryptohash # Cryptonite deprecation -- cryptohash-conduit # Cryptonite deprecation -- cryptohash-md5 # cryptohash fork -- cryptohash-sha1 # cryptohash fork -- cryptohash-sha256 # cryptohash fork -- fay-base # conflicts with many modules in base and others -- filemanip # conflicts with System.FilePath.Glob in Glob -- ghc-lib # per its own recommendation. conflicts with template-haskell -- ghc-lib-parser # also conflicts with template-haskell -- gl # conflicts with modules in OpenGLRaw -- gtk3 # conflicts with many modules in gtk -- hashmap # conflicts with Data.HashSet in unordered-containers -- hledger-web # conflicts with Foundation in foundation -- hs-functors # conflicts with profunctors, see #3609/closed -- hxt-unicode # conflicts with Data.String.UTF8 in utf8-string -- kawhi # conflicts with Control.Monad.Http in monad-http -- language-c # conflicts with modules in language-c-quote -- lenz # conflicts with lens, see https://github.com/fpco/stackage/issues/3600 -- log # conflicts with modules in its dependencies -- matrices # conflicts with matrix -- monad-extras # conflicts with Control.Monad.Extra in extra -- monads-tf # mtl is preferred -- nanospec # conflicts with Test.Hspec in hspec -- objective # conflicts with Control.Object in natural-transformation -- plot-gtk3 # conflicts with many modules in plot-gtk -- pretty-class # conflicts with pretty and prettyclass -- prettyclass # conflicts with pretty and pretty-class -- prompt # conflicts with Control.Monad.Prompt in MonadPrompt -- regex-compat-tdfa # conflicts with many modules in regex-compat -- regex-pcre-builtin # conflicts with many modules in regex-pcre -- rerebase # conflicts with base -- svg-tree # conflicts with Graphics.Svg in svg-builder -- temporary-rc # conflicts with temporary -- temporary-resourcet # conflicts with temporary -- zip # conflicts with Codec.Archive.Zip in zip-archive - - -# Experimental: packages where Hackage cabal file revisions should be ignored. -# -# This always use the cabal file shipped with the sdist tarball instead of the latest revision. -# -# This only supports pinning to the initial release (revision 0), not to an arbitrary revision. -no-revisions: -- tls -- mime-mail -- basement -- cryptonite -- foundation -- gauge -- http-download -- rio-prettyprint -- hi-file-parser -- aura - - -# Note, this no longer actually does anything with curator2 unfortunately: -# Do not build these packages in parallel with others. Useful for high memory -# usage. -non-parallel-builds: -- amazonka-ec2 # Around 6 GB memory consumption - so do not build in parallel to optimize overall performance. For more details see: https://gitlab.haskell.org/ghc/ghc/-/issues/19203, https://github.com/brendanhay/amazonka/issues/549 and related issues. -- pandoc -- gogol-dfareporting -- gogol-compute -- idris -- massiv-persist -- massiv-serialise From c40046121bcbb7bc95297ff2060d328939a38193 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 9 Dec 2024 13:12:47 +0530 Subject: [PATCH 14/14] update GH image action for lts23 --- .github/workflows/image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index a42c541fb..322e60594 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -4,7 +4,7 @@ on: push: branches: - nightly - - lts21 + - lts23 - lts22 jobs: