diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 672ea3b4..98dcc02a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -9,11 +9,15 @@ permissions: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest name: Stackage check steps: - - uses: actions/checkout@v4 - - uses: actions/cache@v4 + - uses: actions/checkout@v7 + - name: Install system deps + run: | + sudo apt-get update + sudo apt-get install -y libgmp-dev + - uses: actions/cache@v6 with: path: | ~/.stack diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 322e6059..f45a9dfe 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -4,8 +4,8 @@ on: push: branches: - nightly + - lts24 - lts23 - - lts22 jobs: push: @@ -13,15 +13,14 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Log into Github registry - run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin - name: Build image run: | - IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/build:${GITHUB_REF#refs/heads/} - #IMAGE_ID=${{ github.repository }}:${GITHUB_REF#refs/heads/} + IMAGE_ID=ghcr.io/${{ github.repository }}/build:${GITHUB_REF#refs/heads/} docker build . -f Dockerfile --tag $IMAGE_ID docker push $IMAGE_ID echo Pushed new build image $IMAGE_ID diff --git a/CURATORS.md b/CURATORS.md index ce245869..309ce0e4 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -19,16 +19,16 @@ process works: * [build-constraints.yaml](https://github.com/commercialhaskell/stackage/blob/master/build-constraints.yaml) specifies packages to be included in Stackage * [curator](https://github.com/commercialhaskell/curator) combines build-constraints.yaml with the current state of Hackage to create a build plan for a Stackage Nightly * `curator` can check that build plan to ensure all version bounds are consistent - * The [Travis job](https://github.com/commercialhaskell/stackage/blob/master/.travis.yml) performs these two steps to provide immediate feedback on pull requests -* Docker builds [builds](https://github.com/commercialhaskell/stackage/actions/workflows/image.yml) -* The stackage-build server (described below) is able to run automated builds using the [build.sh script](https://github.com/commercialhaskell/stackage/blob/master/automated/build.sh) + * On pull requests, the GitHub action [performs these two steps](https://github.com/commercialhaskell/stackage/blob/master/etc/check.sh) to provide immediate feedback on pull requests +* Docker [builds](https://github.com/commercialhaskell/stackage/actions/workflows/image.yml) +* The stackage-build server (described below) is able to run automated builds using the [build.sh script](https://github.com/commercialhaskell/stackage/blob/master/automated/build.sh). Note it is wrapped by `run-night.sh` and `run-lts.sh`. * When a new (nightly or LTS) build is completed, it is uploaded to [stackage-snapshots](https://github.com/commercialhaskell/stackage-snapshots) * Once a week, we run an LTS minor bump. Instead of using build-constraints.yaml, that job takes the previous LTS release, turns it into `^>=` constraints, and then bumps the version numbers to the latest on Hackage, in accordance with the generated constraint. -* Cutting a new LTS major release is essentially just a Stackage Nightly that gets rebuilt and uploaded as an LTS +* Cutting a new LTS major release is essentially just a Stackage Nightly that gets rebuilt using lts-haskell with constraints setup with etc/lts-constraints. ## Pull requests -The typical story on pull requests is: If Travis accepts it and the +The typical story on pull requests is: If the checks pass and the author only added packages under his/her own name, merge it. If the build later fails (see [Adding Debian packages]), then block the package until it's fixed. @@ -39,16 +39,15 @@ If benchmarks, haddocks, or test suites fails at this point we typically also block the package until these issues are fixed. This in order to add packages with a clean slate. -Optionally we can check if packdeps says the package is up to date. -Visit http://packdeps.haskellers.com/feed?needle= +Optionally we can check what [packdeps](https://hackage.haskell.org/package/packdeps) and [hackage-revdeps](https://hackage.haskell.org/package/hackage-revdeps) say about the package. Builds may fail because of unrelated bounds changes. If this happens, first add any version bounds to get master into a passing state (see -"Fixing bounds issues"), then re-run the travis build. +"Fixing bounds issues"). -A common issue is that authors submit newly uploaded packages, it can -take up to an hour before this has synced across the stack -infrastructure. You can usually compare the versions of the package in +A common issue is that authors submit newly uploaded packages. It can +take up to an hour before the package has synced from Hackage across the +Stackage infrastructure. You can usually compare the versions of the package in https://github.com/commercialhaskell/all-cabal-metadata/tree/master/packages/ to what's on hackage to see if this is the case. Wait an hour and re-run the pull request. @@ -174,7 +173,7 @@ issue. If a package needs to be disabled due to build failures: Add a `< 0` bound to the package to exclude it, and add a comment stating why it -was disabled: `- swagger < 0 # compile failure againts aeson 1.0` +was disabled: `- swagger < 0 # compile failure against aeson 1.0` If a package needs to be disabled due to bounds issues, see the "Large scale enabling/disabling of packages" section below. @@ -207,8 +206,10 @@ If a new package fails to build because of missing system libraries we often ask ### Upgrading GHC version -The nightly branch is used for nightlies. For LTSes, we use the ltsX branch, -where X is the major version number (e.g., lts20 for lts-20.\*).) +Branches are only used for the container build image: + +- The nightly branch is used for the nightly build image. +- For LTSes, we use the ltsX branch, where X is the major version number (e.g., lts20 for lts-20.\*).) Note that when starting a new LTS major release, you'll need to modify `.github/workflows/image.yml` to add a new lts branch. @@ -217,7 +218,7 @@ file](https://github.com/commercialhaskell/stackage-content/blob/master/stack/gl is updated with information on the latest GHC release by cloning that repo and running `./update-global-hints.hs ghc-X.Y.Z`. -If enountering an error like the following, this means that the [Stack metadata](https://github.com/commercialhaskell/stackage-content) +If encountering an error like the following, this means that the [Stack metadata](https://github.com/commercialhaskell/stackage-content) has not yet been updated, so wait some time until this happens: ``` @@ -226,33 +227,34 @@ Supported versions: ... update-global-hints.hs: Received ExitFailure 1 when running ``` -Also required to build an LTS minor bump with a ghc version change: modify and update the ghc-version. Then run `automated/build.sh lts-$THIS_LTS_MINOR_BUMP` to build the LTS. +Also required to build an LTS minor bump with a ghc version change: modify and update the ghc-version. Then run `automated/run-lts.sh lts-$THIS_LTS_MINOR_BUMP` to build the LTS. -### Getting the new image to the build server -Once a new Docker image is available, you'll need to pull it onto the stackage-build server (see -below). Instead of pulling an unbounded number of images, I typically just -delete all of the old images and let the new ones get downloaded: +### Docker image management +The latest image is pulled automatically. + +If diskspace is tight, one can delete all of the old images and +let the new ones get downloaded: ``` docker rm $(docker ps -a -q) docker rmi $(docker images -q) ``` -but `docker pull ghcr.io/commercialhaskell/stackage/build:nightly` can also be run instead just to update the nightly image say. +To pull the nightly image manually run `docker pull ghcr.io/commercialhaskell/stackage/build:nightly`. -For a new GHC version you should also delete the ~~cache~~ .stack-work snapshot install directories on the stackage-build server to -~~force all packages to be rebuilt~~ clear up some space. See: [issue#746](https://github.com/commercialhaskell/stackage/issues/746). Eg: +(For a new GHC version you can also delete the .stack-work snapshot install directories on the stackage-build server to clear up some space. See: [issue#746](https://github.com/commercialhaskell/stackage/issues/746). Eg: ``` # for example -SNAP_SERIES=nightly # or lts16 -OLD_GHCVER=8.10.1 +SNAP_SERIES=nightly # or ltsXX +OLD_GHCVER=9.10.2 rm -r work/$SNAP_SERIES/unpack-dir/.stack-work/install/x86_64-linux-tinfo6/*/$OLD_GHCVER/ ``` -This should also be done when moving the Nightly docker image to a new version of Ubuntu. -If you're impatient and would like to build the Docker image on the -build server instead of waiting for Docker Hub, you can run the + +When moving to a new version of Ubuntu: all the packages should be rebuilt from scratch: therefore normally only change Ubuntu version at the same time as doing a ghc bump. + +In an emergency the Docker image can be built on the build server, by the following command (replacing `BRANCH=nightly` if the image for a different branch is desired): ``` @@ -262,16 +264,16 @@ DIR=$(mktemp -d) && git clone https://github.com/commercialhaskell/stackage \ && cd stackage \ && git checkout $BRANCH \ - && docker build --tag commercialhaskell/stackage:$BRANCH .) + && docker build --tag commercialhaskell/stackage/build:$BRANCH .) rm -rf $DIR ``` -Note that we do a clean clone of the `stackage` repo instead of using +(Note that we do a clean clone of the `stackage` repo instead of using the existing checkout because of how `docker build` works: it will send the entire local directory contents as context to the Docker daemon, which in the case of the build tree is a _lot_ of content. (We can discuss the wisdom—or lack thereof—of Docker's -approach separately.) +approach separately.)) ## stackage-build server @@ -294,10 +296,10 @@ we're just not there yet. /var/stackage/stackage/automated/run-nightly.sh # Run an LTS minor bump -/var/stackage/stackage/automated/build.sh lts-15.1 +/var/stackage/stackage/automated/run-lts.sh lts-15.1 # Run an LTS major bump -/var/stackage/stackage/automated/build.sh lts-16.0 +/var/stackage/stackage/automated/run-lts.sh lts-16.0 ``` Recommended: run these from inside a `tmux` session. If you get version bound @@ -307,7 +309,9 @@ info above). ### Building LTS minor releases Before running the build, please make sure that the Dockerfile in `automated/dockerfiles/lts-X.Y` is up to date, where X is the major version that you're building and Y is the latest minor version of X for which a Dockerfile exists. * If any changes need to be made, (eg, new GHC version), copy `automated/lts-X.Y/Dockerfile` to `automated/lts-X.Z/Dockerfile`, where Z is the minor version you're building, and include the new changes. - * If you are building the first release of a new LTS major version, create a new `lts-X.0/Dockerfile` based on the previous LTS's, and adjust the variables at the top to match the requirements of the snapshot. Ensure that `STACK_VERSION` is the latest release of Stack, and `BOOTSTRAP_COMMIT` is the commit ID of this repo containing the version of the `docker/*.sh` used to build the snapshot. Also ensure the FROM image's Ubuntu version matches that used in the [root Dockerfile](Dockerfile) used to build this snapshot. + * If you are building the first release of a new LTS major version: + * create a new `build-constraints/ltsX-build-constraints.yaml` in lts-haskell using `stackage/etc/lts-constraints` + * create a new `lts-X.0/Dockerfile` based on the previous LTS's, and adjust the variables at the top to match the requirements of the snapshot. Ensure that `STACK_VERSION` is the latest release of Stack, and `BOOTSTRAP_COMMIT` is the commit ID of this repo containing the version of the `docker/*.sh` used to build the snapshot. Also ensure the FROM image's Ubuntu version matches that used in the [root Dockerfile](Dockerfile) used to build this snapshot. For an LTS minor bump, you'll typically want to update as needed: @@ -315,7 +319,7 @@ For an LTS minor bump, you'll typically want to update &1 >/dev/null | ./commenter add ``` +(or easier just use `commenter add-loop`). You will get this output: ``` @@ -583,19 +589,16 @@ packages compatible with the new GHC release. Every 3-6 months, we make a new major release of LTS. The procedure we follow for this is: -1. Write a blog post on stackage.org announcing the intent to cut a major - release. Give an estimated date two weeks in the future from the publication - date of the post. -2. Spread the blog post on social media and mailing lists as much as possible. -3. Expect maintainers to send significant requests for added packages and - relaxed upper bounds. There will likely be some hard decisions to be made - regarding relaxing a bound versus keeping more packages. All of these changes - occur on master and affect nightly. -4. Once the estimated date hits, push a new `ltsXX` and wait for the docker image build. -5. Run the build procedure for the new LTS release. -6. After the LTS build completes, more aggressively prune upper bounds from - `build-constraints.yaml`. -7. Once both (5) and (6) are done, publish a new blog post on stackage.org +1. Once Stackage Nightly and its ghc version is considered mature enough and + there is newer ghc version that has somewhat stabilized to bring next into + nightly +2. First push a new `ltsXX` branch and wait for the docker image to build. +3. Add the new ltsXX build-constraints file in lts-haskell, + generated from nightly using etc/lts-constraints. +4. Run the build procedure for the new LTS release. +5. After the new LTS is pushed, it is time to prune nightly upper bounds from + `build-constraints.yaml` and bump nightly to the newer major ghc version. +6. Once both (5) and (6) are done, publish a new blog post on stackage.org announcing the new LTS and Nightly, with links to the change pages on - stackage.org. Include a reminder that requests for packages to be added to LTS - may be made on commercialhaskell/lts-haskell. + stackage.org. Include a reminder that requests for packages to be added + to LTS may be made on commercialhaskell/lts-haskell. diff --git a/Dockerfile b/Dockerfile index 873623cb..e08422e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,22 @@ -FROM fpco/pid1:22.04 +FROM ubuntu:24.04 -ENV HOME /home/stackage -ENV LANG en_US.UTF-8 +ENV HOME=/home/stackage +ENV LANG=en_US.UTF-8 -ADD docker/01-build-server.sh /tmp/01-build-server.sh +COPY docker/01-build-server.sh /tmp/01-build-server.sh RUN /tmp/01-build-server.sh && rm /tmp/01-build-server.sh -ADD docker/02-apt-get-install.sh /tmp/02-apt-get-install.sh +COPY docker/02-apt-get-install.sh /tmp/02-apt-get-install.sh RUN /tmp/02-apt-get-install.sh && rm /tmp/02-apt-get-install.sh -ADD docker/03-custom-install.sh /tmp/03-custom-install.sh +COPY docker/03-custom-install.sh /tmp/03-custom-install.sh RUN /tmp/03-custom-install.sh && rm /tmp/03-custom-install.sh -ADD docker/04-cleanup.sh /tmp/04-cleanup.sh +COPY docker/04-cleanup.sh /tmp/04-cleanup.sh RUN /tmp/04-cleanup.sh && rm /tmp/04-cleanup.sh # Include file path -ENV CPATH /usr/lib/jvm/java-8-openjdk-amd64/include:/usr/lib/jvm/java-8-openjdk-amd64/include/linux:/usr/lib/llvm-3.7/include +ENV CPATH=/usr/lib/jvm/java-8-openjdk-amd64/include:/usr/lib/jvm/java-8-openjdk-amd64/include/linux:/usr/lib/llvm-3.7/include + +# Download libtorch into mounted work volume (so that artifact is shared on rebuilds) +ENV LIBTORCH_HOME=/home/curators/work/libtorch diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 28d21cd5..bec2afc2 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -1,9 +1,11 @@ +*(this file is a bit dated and needs some revisions)* + This project is built around the concept of maintainers taking responsibility for making their packages work with the rest of the stable ecosystem, usually meaning the newest version of all dependencies. This is a social contract, and is not reflected in the codebase in any way. The idea behind Stackage is that, if all packages work with the newest versions of dependencies, we avoid dependency hell. Specifically, we aim for: -* All packages are buildable and testable from Hackage. We recommend [the Stack Travis script](https://docs.haskellstack.org/en/stable/travis_ci/), which ensures a package is not accidentally incomplete. -* All packages are compatible with the newest versions of all dependencies (You can find restrictive upper bounds by visiting http://packdeps.haskellers.com/feed?needle=PACKAGENAME). +* All packages are buildable and testable from Hackage. We recommend using CI, which ensures a package is not accidentally incomplete. +* All packages are compatible with the newest versions of all dependencies (You can check restrictive upper bounds [packdeps](https://hackage.haskell.org/package/packdeps). * All packages in a snapshot are compatible with the versions of libraries that ship with the GHC used in the snapshot ([more information on lenient lower bounds](https://tech.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). Packages in Stackage are not patched: all package changes occur upstream in Hackage. @@ -44,10 +46,12 @@ of: * It won't notify you of restrictive upper bounds in your package if Stackage has the same upper bounds. For that reason, we recommend - using [Packdeps](http://packdeps.haskellers.com/) (see "Following - dependency upgrades" below). You can also run `cabal outdated`. + using `cabal outdated` or + [Packdeps](https://hackage.haskell.org/package/packdeps) + (see "Following dependency upgrades" below). + * If the latest Stackage Nightly is missing some of the latest - packages, your build above may succeed whereas the Travis job may + packages, your build above may succeed whereas the CI job may fail. Again: Packdeps will help you detect this situation. ## Github and Notifications @@ -87,14 +91,14 @@ the dependency so that your package remains in nightly. We'll also create a github issue pinging you with the bounds issues or give build logs showing failures. It's then up to you to modify your package. -We recommend that you also follow the dependencies of your packages on -[Packdeps](http://packdeps.haskellers.com/) (typically using the RSS -feeds) as well as that often gives you notice ahead of stackage -issues. There are cases where we will not notice a new release of a -package because of other upper bounds that are in place. +We recommend that you also follow the dependencies of your packages with +[Packdeps](https://hackage.haskell.org/package/packdeps) +as well as that often gives you notice ahead of stackage issues. +There are cases where we will not notice a new release of a package +because of other upper bounds that are in place. If a package is not updated in time, it may be temporarily removed -from Stackage by the curator team. We strive to notify you when this +from Stackage by the curator team. We aim to notify you when this happens. If it does you are always welcome to file another pull request to add it back. diff --git a/README.md b/README.md index 0ae3b875..b290173b 100644 --- a/README.md +++ b/README.md @@ -6,27 +6,32 @@ Stable sets of Haskell Packages from Hackage _This repository is for package authors and maintainers to get their packages into Stackage._ -If you simply want to use Stackage as an end user, please follow the instructions on [https://www.stackage.org/](https://www.stackage.org). +If you simply want to use Stackage as an end user, please follow the instructions in the [stack documentation](https://docs.haskellstack.org/en/stable/) or via . -We strongly recommend using the Haskell [stack](https://github.com/commercialhaskell/stack) tool for doing builds, which +We highly recommend using the Haskell [stack](https://github.com/commercialhaskell/stack) tool for doing builds, which includes built-in Stackage support. Add your package ---------------- +- To add your package in Stackage Nightly: edit the [build-constraints file](https://github.com/commercialhaskell/stackage/blob/master/build-constraints.yaml) and open a PR. +- To add you package to Stackage LTS: you need to open a pull request for changing [lts-haskell](https://github.com/commercialhaskell/lts-haskell/tree/master/build-constraints) build-constraints. We welcome all packages, provided: -* The package author/maintainer agrees to the [maintainers agreement](https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md). -* The package is buildable and testable from Hackage. We recommend [the Stack Travis script](https://docs.haskellstack.org/en/stable/travis_ci/), which ensures a package is not accidentally incomplete. -* The package is compatible with the newest versions of all dependencies (You can find restrictive upper bounds by visiting http://packdeps.haskellers.com/feed?needle=PACKAGENAME). -* The package is compatible with the versions of libraries that ship with GHC ([more information on lenient lower bounds](https://tech.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). +* The package from Hackage builds in current Stackage snapshots + * Stackage only uses pristine sources from Hackage (no patches of packages are allowed, including bounds, other than Hackage revisions) + * In particular the package MUST be compatible with the versions of core libraries that ship with GHC ([more information on lenient lower bounds](https://tech.fpcomplete.com/blog/2014/05/lenient-lower-bounds)). +* The package's tests and benchmark code SHOULD also build: if possible the testsuite SHOULD also pass. + * We recommend setting up CI, which ensures a package is not accidentally incomplete, etc. +* The package should stay compatible with the newest versions of its dependencies. +* The package author/maintainer aims to follow [MAINTAINERS.md](https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md). -Full details on how to add and test a package can be found in the [maintainers agreement](https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md#adding-a-package). +Full details on how to add and test a package can be found in the [here](https://github.com/commercialhaskell/stackage/blob/master/MAINTAINERS.md#adding-a-package). __NOTE__: There is an approximate 30 minute delay between a package uploading to Hackage and being available to the Github workflow action to check upper bounds. If a pull request is marked as failed due to using an older version, -please close and reopen the PR to retrigger a Travis build. +please close and reopen the PR to retrigger a CI build. Other repos ----------- @@ -35,13 +40,13 @@ The Stackage project consists of multiple repositories. This repository contains the metadata on packages to be included in future builds and some project information. In addition, we have the following repositories: -* [stackage-server](https://github.com/fpco/stackage-server) [![Base image](https://github.com/fpco/stackage-server/actions/workflows/base.yml/badge.svg)](https://github.com/fpco/stackage-server/actions/workflows/base.yml) +* [stackage-server](https://github.com/commercialhaskell/stackage-server) * [curator](https://github.com/commercialhaskell/curator) ![Build Status](https://github.com/commercialhaskell/curator/workflows/Runtime%20image/badge.svg) * [lts-haskell](https://github.com/commercialhaskell/lts-haskell) * [stackage-snapshots](https://github.com/commercialhaskell/stackage-snapshots/) Curious how it all fits together? See the [Stackage data -flow](https://github.com/commercialhaskell/stackage/blob/master/DATA-FLOW.md). +flow](https://github.com/commercialhaskell/stackage/blob/master/DATA-FLOW.md) (slightly outdated) Build the package set --------------------- @@ -68,6 +73,11 @@ The following describes at a high level the series of steps for processing 6. Verify that the build plan can be compiled 7. Perform the build +__NOTE__: Packages in Nightly that are holding newer versions of other +packages back for an extended period of time will eventually get disabled, +depending on the impact but at latest usually right after the branching of the +next major LTS version. + ### LTS 1. Load up most recent build plan diff --git a/automated/build.sh b/automated/build.sh index c55a6b68..d911487a 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -1,19 +1,21 @@ #!/usr/bin/env bash -# shellcheck disable=SC2086,SC1091 +# shellcheck disable=SC2086,SC1091,SC2001 # SC2086: We actually want some word splitting to happen # SC1091: Secrets are sourced from a file that doesn't exist in the tree. +# SC2001: Pattern substitution is too hard to use; don't recommend it. +LANG=C date set -eu +x -o pipefail -ROOT=$(cd $(dirname $0) ; pwd) +ROOT=$(cd "$(dirname $0)" ; pwd) TARGET=$1 # Home on the container -: ${C_HOME:=$HOME} +: "${C_HOME:=$HOME}" # User to run as on the container -: ${USERID:=$(id -u)} +: "${USERID:=$(id -u)}" source work/aws.sh @@ -57,7 +59,7 @@ cat >$GITCONFIG < curator -else - # needed for ghc-9.10 - curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-6689440033b12182c0853bdd23880a84849eb6b2/curator.bz2" | bunzip2 > curator -fi +curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-57858287bcb07f57810b7967deb52f6033fbe322/curator.bz2" | bunzip2 > curator chmod +x curator -if [ $SHORTNAME = "lts" ]; then - STACK_VERSION=3.1.1 -else - STACK_VERSION=3.3.1 -fi +STACK_VERSION=3.9.3 # rc url #curl -L https://github.com/commercialhaskell/stack/releases/download/rc%2Fv${STACK_VERSION}/stack-${STACK_VERSION}-linux-x86_64-bin > stack curl -L https://github.com/commercialhaskell/stack/releases/download/v${STACK_VERSION}/stack-${STACK_VERSION}-linux-x86_64-bin > stack chmod +x stack -docker run --rm -v $(pwd)/curator:/curator -v $(pwd)/stack:/stack $IMAGE /bin/bash -c " - echo -n 'curator version: ' - /curator --version - echo -n 'stack version: ' - /stack --version - " +# docker run --rm -v "$(pwd)"/curator:/curator -v "$(pwd)"/stack:/stack $IMAGE /bin/bash -c " +# echo -n 'curator version: ' +# /curator --version +# echo -n 'stack version: ' +# /stack --version +# " ) # We share pantry directory between snapshots while the other content in .stack @@ -111,9 +103,7 @@ docker run --rm -v $(pwd)/curator:/curator -v $(pwd)/stack:/stack $IMAGE /bin/ba ARGS_COMMON="--rm -v $WORKDIR:$C_HOME/work -w $C_HOME/work -v $BINDIR/curator:/usr/bin/curator:ro -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro -v $BINDIR/stack:/usr/bin/stack:ro -v $STACK_DIR:$C_HOME/.stack -v $PANTRY_DIR:$C_HOME/.stack/pantry -v $HOME/.aws/config:$C_HOME/.aws/config:ro" ARGS_PREBUILD="$ARGS_COMMON -u $USERID -e HOME=$C_HOME -v $DOT_STACKAGE_DIR:$C_HOME/.stackage" ARGS_BUILD="$ARGS_COMMON" -# instance-data is an undocumented feature of S3 used by amazonka, -# see https://github.com/brendanhay/amazonka/issues/271 -ARGS_UPLOAD="$ARGS_PREBUILD -v $HACKAGE_CREDS:/hackage-creds:ro -v $SSH_DIR:$C_HOME/.ssh:ro -v $GITCONFIG:$C_HOME/.gitconfig:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY ${AWS_ENDPOINT_URL:+-e AWS_ENDPOINT_URL=$AWS_ENDPOINT_URL} -v $DOT_STACKAGE_DIR:/dot-stackage" +ARGS_UPLOAD="$ARGS_PREBUILD -v $HACKAGE_TOKEN:/hackage-distro-token:ro -v $SSH_DIR:$C_HOME/.ssh:ro -v $GITCONFIG:$C_HOME/.gitconfig:ro -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY ${AWS_ENDPOINT_URL:+-e AWS_ENDPOINT_URL=$AWS_ENDPOINT_URL} -v $DOT_STACKAGE_DIR:/dot-stackage" # for debugging etc if [ -n "${2:-}" ] @@ -160,18 +150,13 @@ case $SHORTNAME in nightly) JOBS=16 ;; esac -if [ -e "$SHORTNAME-build.log" ] -then - cp -p $SHORTNAME-build.log $SHORTNAME-build.log-previous -fi - # Now do the actual build. We need to first set the owner of the home directory # correctly, so we run the command as root, change owner, and then use sudo to # switch back to the current user -docker run $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c " +docker run -t $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c " chown $USER $HOME exec sudo -E -u $USER env \"HOME=$HOME\" \"PATH=\$PATH\" curator build --jobs $JOBS - " 2>&1 | tee $SHORTNAME-build.log + " # Make sure we actually need this snapshot. We used to perform this check # exclusively before building. Now we perform it after as well for the case of @@ -184,17 +169,22 @@ docker run $ARGS_UPLOAD $IMAGE curator check-target-available --target $TARGET # # * Upload the docs to S3 # * Upload the new snapshot .yaml file to the appropriate Github repo, also upload its constraints -date +LANG=C date docker run $ARGS_UPLOAD -e "CURATOR_AWS_OPTIONS=--only-show-errors" $IMAGE /bin/bash -c " set -e ulimit -n hard curator upload-docs --target $TARGET ${DOCS_BUCKET:+--bucket $DOCS_BUCKET} curator upload-github --target $TARGET " -date +LANG=C date -# was fixed in https://github.com/commercialhaskell/curator/pull/24 -docker run $ARGS_UPLOAD $IMAGE curator hackage-distro --target $TARGET +case $TARGET in + lts-22.*) ;; + lts-23.*) ;; + *) + docker run $ARGS_UPLOAD $IMAGE curator hackage-distro --target $TARGET + ;; +esac # Build and push docker image fpco/stack-build & fpco/stack-build-small for current release @@ -206,4 +196,4 @@ then fi echo -n "Completed at " -date +LANG=C date diff --git a/automated/dockerfiles/README.md b/automated/dockerfiles/README.md index 9fd65199..223930a1 100644 --- a/automated/dockerfiles/README.md +++ b/automated/dockerfiles/README.md @@ -1,9 +1,7 @@ dockerfiles/stack-build ======================= -Build [fpco/stack-build](https://hub.docker.com/r/fpco/stack-build/) Docker -images. This script and its Dockerfiles are used for building images for LTS >= -8.0. +Build [ghcr.io/commercialhaskell/stackage/build](https://github.com/commercialhaskell/stackage/pkgs/container/stackage%2Fbuild) Docker images. Usage ----- diff --git a/automated/dockerfiles/build.sh b/automated/dockerfiles/build.sh index b310841b..366d779d 100755 --- a/automated/dockerfiles/build.sh +++ b/automated/dockerfiles/build.sh @@ -69,7 +69,7 @@ while [[ $# -gt 0 ]]; do ;; *) if [[ -n "$LTS_SLUG_ARG" ]]; then - usage "Cannot specify multiple snaphots: $1" + usage "Cannot specify multiple snapshots: $1" fi LTS_SLUG_ARG="$1" shift diff --git a/automated/dockerfiles/lts-22.44/Dockerfile b/automated/dockerfiles/lts-22.44/Dockerfile new file mode 100644 index 00000000..2ef151de --- /dev/null +++ b/automated/dockerfiles/lts-22.44/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:22.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=9.6.7 +ARG LTS_SLUG=lts-22.44 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.15.7 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-9 +ARG BOOTSTRAP_COMMIT=00440d8b56167281e30dd9d292f2a223adeb2a34 + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's docker/*.sh scripts to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running docker/*.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/01-build-server.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/02-apt-get-install.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/03-custom-install.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/04-cleanup.sh | sed "s/^GHCVER=9.0.1$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-24.0/Dockerfile b/automated/dockerfiles/lts-24.0/Dockerfile new file mode 100644 index 00000000..cb7775a2 --- /dev/null +++ b/automated/dockerfiles/lts-24.0/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:24.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=9.10.2 +ARG LTS_SLUG=lts-24.0 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=3.7.1 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-9 +ARG BOOTSTRAP_COMMIT=150da98401bd014e9ed248a035d8af12de614f1c + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's docker/*.sh scripts to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running docker/*.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/01-build-server.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/02-apt-get-install.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/03-custom-install.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/04-cleanup.sh | sed "s/^GHCVER=9.0.1$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc*-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/dockerfiles/lts-24.12/Dockerfile b/automated/dockerfiles/lts-24.12/Dockerfile new file mode 100644 index 00000000..c0399c1d --- /dev/null +++ b/automated/dockerfiles/lts-24.12/Dockerfile @@ -0,0 +1,91 @@ +FROM ubuntu:24.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=9.10.3 +ARG LTS_SLUG=lts-24.12 +# update to 0.1.3.1 for lts-25 +ARG PID1_VERSION=0.1.2.0 +# update to 3.9.1 for lts-25 +ARG STACK_VERSION=3.7.1 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-9 + +ARG DEBIAN_FRONTEND=noninteractive +ARG VARIANT=build +ARG STACK_ROOT=/home/stackage/.stack + +# +# Set encoding to UTF-8 and PATH to find GHC and cabal/stack-installed binaries. +# + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 \ + PATH=/root/.local/bin:/usr/local/cuda-$CUDA_VERSION/bin:$STACK_ROOT/programs/x86_64-linux/ghc-$GHC_VERSION/bin:$PATH \ + CUDA_PATH=/usr/local/cuda-$CUDA_VERSION \ + CPATH=$JVM_PATH/include:$JVM_PATH/include/linux:$LLVM_PATH/include + +# +# Install pre-requisites +# + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + wget netbase ca-certificates g++ gcc libc6-dev libffi-dev libgmp-dev \ + make xz-utils zlib1g-dev git gnupg libtinfo-dev jq && \ + rm -rf /var/lib/apt/lists/* + +# +# Use Stackage's docker/*.sh scripts to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running docker/*.sh since that may have +# installed a different version. +# In the case of 'small' image, just install Stack and GHC. +# + +RUN if [ "$VARIANT" != "small" ]; then \ + wget -qO- https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/01-build-server.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/02-apt-get-install.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/03-custom-install.sh https://raw.githubusercontent.com/commercialhaskell/stackage/$BOOTSTRAP_COMMIT/docker/04-cleanup.sh | sed "s/^GHCVER=9.0.1$/GHCVER=$GHC_VERSION/" | GHCVER=$GHC_VERSION bash; \ + fi && \ + wget -qO- https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C /usr/bin '*/stack' && \ + if [ "$VARIANT" = "small" ]; then \ + stack setup --resolver ghc-$GHC_VERSION; \ + fi && \ + rm -rf /var/lib/apt/lists/* && \ + cd $STACK_ROOT && \ + find . -type f -not -path "./programs/x86_64-linux/ghc*-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Configure Stack to use the GHC installed in the Docker image rather than installing its own +# + +RUN mkdir /etc/stack/ && \ + echo "system-ghc: true" >/etc/stack/config.yaml + +# +# Use 'stack' to install basic Haskell tools like alex, happy, and cpphs. We +# remove most of the STACK_ROOT afterward to save space, but keep the 'share' +# files that some of these tools require. +# + +RUN stack --resolver=$LTS_SLUG --local-bin-path=/usr/bin install \ + happy alex cpphs gtk2hs-buildtools hscolour hlint hindent && \ + cd $STACK_ROOT && \ + find . -type f -not -path './snapshots/*/share/*' -and -not -path "./programs/x86_64-linux/ghc-$GHC_VERSION/*" -exec rm '{}' \; && \ + find . -type d -print0 |sort -rz |xargs -0 rmdir 2>/dev/null || true + +# +# Install 'pid1' init daemon +# + +RUN wget -O- "https://github.com/fpco/pid1/releases/download/v$PID1_VERSION/pid1-$PID1_VERSION-linux-x86_64.tar.gz" | tar xzf - -C /usr/local && \ + chown root:root /usr/local/sbin && \ + chown root:root /usr/local/sbin/pid1 + +# +# Set up pid1 entrypoint and default command +# + +ENTRYPOINT ["/usr/local/sbin/pid1"] +CMD ["bash"] diff --git a/automated/run-lts.sh b/automated/run-lts.sh new file mode 100755 index 00000000..41ef1e26 --- /dev/null +++ b/automated/run-lts.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +cd "$(dirname "${BASH_SOURCE[0]}")" + +git pull +LOG_FILE="logs/$1-build-$(date -u +%F+%T).log" +if [ -L $1-build.log ]; then + mv -f $1-build.log $1-build.log-prev +fi +ln -sf $LOG_FILE lts-build.log +time script -c "./build.sh $*" $LOG_FILE +touch -h lts-build.log +LANG=C date diff --git a/automated/run-nightly.sh b/automated/run-nightly.sh index d598db90..1fd7d169 100755 --- a/automated/run-nightly.sh +++ b/automated/run-nightly.sh @@ -9,10 +9,17 @@ esac while true; do git pull - ./build.sh nightly-$(date -u +%F) $cmd + LOG_FILE="logs/nightly-build-$(date -u +%F+%T).log" + if [ -L nightly-build.log ]; then + mv -f nightly-build.log nightly-build.log-prev + fi + ln -sf $LOG_FILE nightly-build.log + time script -c "./build.sh nightly-$(date -u +%F) $cmd" $LOG_FILE + touch -h nightly-build.log ${cmd:+exit 0} - date + LANG=C echo "$0: run completed at $(LANG=C date)" ${once:+exit 0} - sleep 60m + echo + sleep 90m echo done diff --git a/build-constraints.yaml b/build-constraints.yaml index e56c309e..8dc99a93 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,7 +1,7 @@ -ghc-major-version: "9.10" +ghc-major-version: "9.12" # new curator is supposed to use exact GHC version -ghc-version: "9.10.1" +ghc-version: "9.12.4" # This affects which version of the Cabal file format we allow. We # should ensure that this is always no greater than the version @@ -10,6 +10,14 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Andreas Klebinger @AndreasPK": + - dom-lt + + "Daniel Brice @friedbrice": + - generic-lexicographic-order + - text-convert + - text-encode < 0 # 0.2.0.0 https://github.com/friedbrice/text-encode/issues/1 + "Ernesto Hernandez-Novich @iamemhn": - monad-logger-syslog @@ -38,15 +46,9 @@ packages: - network-transport - rank1dynamic - "Julian Ospald @hasufell": - - file-io >= 0.1.1 - "Dominick Samperi @djsamperi": - mathlist - "Sirui Lu @lsrcz": - - grisette < 0 # 0.11.0.0 broken by sbv-11.1 https://github.com/lsrcz/grisette/issues/289 - "Alexey Tochin @alexeytochin": - simple-expr - inf-backprop >= 0.1.1.0 @@ -72,7 +74,19 @@ packages: "Janus Troelsen @ysangkok": - ListZipper + - deburr + - geohash + - microlens-pro + - mmzk-typeid + - pollock + - threads-supervisor + - timezone-olson - timezone-olson-th + - timezone-series + - tz + - tzdata + - wai-saml2 + - xml-hamlet "Paul Burns @onslaughtq": - rollbar @@ -121,14 +135,13 @@ packages: - cabal-clean - fix-whitespace - hackage-cli - - hasktags - java-adt + - LR-demo - Sit + - visualize-type-inference - alex - - haskell-src - ListLike - - MissingH - regex-base - regex-compat - regex-pcre @@ -145,59 +158,66 @@ packages: - xor - http-io-streams - github - - microaeson - - cassava - - ini - cryptohash-md5 - cryptohash-sha1 - cryptohash-sha256 - cryptohash-sha512 - - newtype - resolv - blaze-builder - netrc - equivalence - tokenize - hs-captcha - - hackage-security-HTTP - hslogger - union-find-array - murmur-hash - test-framework - test-framework-hunit - test-framework-quickcheck2 + - silently + - unix-compat + - cpphs + - polyparse + - vector-th-unbox # Some "grandfathered dependencies" I took over because I contributed to them at some time. # Feel free to snatch them from me! - regex-pcre-builtin - c2hs - hackage-security + - hackage-security-HTTP - haskell-lexer - - lifted-async - - polyparse - - silently + - hasktags - text-icu - vector-binary-instances - map-syntax - heist - snap - - unix-compat - - chell - - chell-hunit - - chell-quickcheck - - patience - - system-fileio - - system-filepath + + "Michael Chavinda @mchav": + - cassava < 0.5.5.0 || > 0.5.5.0 # https://github.com/haskell-hvr/cassava/issues/248 + - dataframe + - dataframe-core + - dataframe-csv + - dataframe-csv-th + - dataframe-json + - dataframe-lazy + - dataframe-learn + - dataframe-operations + - dataframe-parquet + - dataframe-parquet-th + - dataframe-parsing + - dataframe-th + - dataframe-viz + - granite + - snappy-hs "Pete Ryland @peteryland": - - regex-pcre2 < 0 # Compilation failure, https://github.com/commercialhaskell/stackage/issues/7698 + - regex-pcre2 < 0 # 1.0.0.0 Compilation failure, https://github.com/commercialhaskell/stackage/issues/7698 "Diogo Biazus ": - hasql-notifications - "Bernie Pope @bjpop": - - language-python < 0 # 0.5.8 https://github.com/bjpop/language-python/issues/77 - "Nils Alex @nilsalex": - safe-tensor @@ -218,6 +238,9 @@ packages: - mail-pool - keter - zxcvbn-hs + - esqueleto-postgis + - ram + - unwitch "Jakob Schöttl @schoettl": - bank-holiday-germany @@ -231,6 +254,9 @@ packages: "Sasha Bogicevic @v0d1ch": - plaid + "John Walker @theGhostJW": + - webdriver-precore + "Geoffrey Mainland @mainland": - exception-mtl - exception-transformers @@ -287,12 +313,14 @@ packages: - smash-aeson - smash-microlens - smash-lens - - strict-tuple - strict-tuple-lens "Tushar Adhatrao @tusharad": - ollama-haskell + "Matthew Kline @mrkline": + - hoare + "Matthieu Monsch @mtth": - flags-applicative - more-containers @@ -348,7 +376,7 @@ packages: "Antonio Alonso Dominguez @alonsodomin": - hschema - - hschema-aeson + - hschema-aeson < 0 # 0.0.1.1 compilation fails - hschema-prettyprinter - hschema-quickcheck @@ -374,8 +402,8 @@ packages: "Laurent P. René de Cotret @LaurentRDC": - pandoc-plot - "Andrew Newman @andrewfnewman": - - geojson + "Andrew Newman @newmana": + - geojson < 0 # 4.1.3 https://github.com/zellige/hs-geojson/issues/36 "Mateusz Karbowy @obszczymucha": - parsec-numbers @@ -395,6 +423,7 @@ packages: - siggy-chardust - detour-via-sci - hpack-dhall + - newtype "Matthew Ahrens @mpahrens": - forkable-monad @@ -405,11 +434,14 @@ packages: "Jude Taylor @pikajude": - th-printf - "Christian Marie @christian-marie": - - git-vogue < 0 # 0.3.0.2 compile fail - "Manuel Bärenz @turion": - automaton + - changeset + - changeset-containers + - changeset-lens + - changeset-reflex + - changeset-time + - clay - dunai - essence-of-live-coding - essence-of-live-coding-gloss @@ -419,8 +451,9 @@ packages: - finite-typelits - has-transformers - monad-bayes - - monad-schedule + - nthese - pulse-simple + - openapi3-code-generator - rhine - rhine-bayes - rhine-gloss @@ -433,7 +466,7 @@ packages: - geodetics - Ranged-sets - "Travis Athougies @tathougies": + "Travis Athougies @tathougies & Laurent P. René de Cotret @LaurentRDC": - beam-core - beam-migrate - beam-postgres @@ -458,14 +491,13 @@ packages: - sandwich-quickcheck - sandwich-slack - sandwich-webdriver - - slack-progressbar < 0 # 0.1.0.1 https://github.com/codedownio/slack-progressbar/issues/1 - system-linux-proc # @erikd - webdriver "Gabriel Tollini @gtollini": - - webdriver-wrapper - wkt-types - io-embed + - web3-tools "Paulo Tanaka @paulot": # on behalf of Bryan O'Sullivan @bos: @@ -508,6 +540,10 @@ packages: - miniutter - LambdaHack - Allure + - orthotope + - dependent-enummap + - ox-arrays + - horde-ad "Jürgen Keck @j-keck": - wreq-stringless @@ -565,6 +601,7 @@ packages: - bzip2-clib # needed by bz2 "Sean Hess @seanhess": + - atomic-css - hyperbole - web-view @@ -581,9 +618,10 @@ packages: - boomwhacker - buffer-pipe - cabal-flatpak - - cabal-sort < 0.1.2.2 + - cabal-sort - calendar-recycling - checksum + - chemical-equation - coinor-clp - combinatorial - comfort-graph @@ -633,6 +671,7 @@ packages: - ods2csv - pathtype - pooled-io + - portmidi-utility - probability - quickcheck-transformer - reactive-banana-bunch @@ -666,6 +705,7 @@ packages: - wraxml - xml-basic - youtube + - zip2tar - prelude-compat - fft - carray @@ -694,9 +734,7 @@ packages: - storable-endian - glpk-headers - derive-storable - - "Jeremy Barisch-Rooney @barischrooneyj": - - threepenny-gui-flexbox < 0 # 0.4.2 compile fail https://github.com/jerbaroo/threepenny-gui-flexbox/issues/5 + - PortMidi "Romain Edelmann @redelmann": - distribution @@ -719,8 +757,6 @@ packages: - prettyprinter-compat-wl-pprint - prettyprinter-compat-ansi-wl-pprint - prettyprinter-compat-annotated-wl-pprint - - HsYAML - - HsYAML-aeson "Joe M @joe9": - logger-thread @@ -764,7 +800,6 @@ packages: - rp-tree - scotty - xeno - - bytestring-mmap < 0 # 0.2.2 required by xeno # not ghc 9.6 ready - datasets - lucid-extras - mnist-idx-conduit @@ -776,7 +811,6 @@ packages: - stm-supply - filter-logger - tile - - mbtiles < 0 # 0.6.0.0 compile fail "Josep Bigorra @jjba23": - yggdrasil-schema @@ -803,10 +837,12 @@ packages: "Harendra Kumar @harendra-kumar": - bench-show - - monad-recorder - packcheck - streamly - streamly-core + - streamly-filepath + - streamly-statistics + - streamly-text - unicode-transforms - xls @@ -816,6 +852,7 @@ packages: "Ranjeet Ranjan @rnjtranjan": - streamly-process - streamly-examples + - streamly-fsevents "Pranay Sashank @pranaysashank": - fusion-plugin-types @@ -850,16 +887,11 @@ packages: - once - mbug - "David Johnson @dmjio": + "David Johnson @dmjio": - miso - envy - - s3-signer - - google-translate - - hackernews - - ses-html "Piotr Mlodawski @pmlodawski": - - error-util < 0 # 0.0.1.2 MonadFail - signal "Michael Snoyman michael@snoyman.com @snoyberg": @@ -886,14 +918,14 @@ packages: - yesod - authenticate - html-conduit - - yesod-auth + - yesod-auth < 0 # https://github.com/yesodweb/yesod/issues/1925 - authenticate-oauth - yesod-bin - yesod-eventsource - yesod-gitrepo - yesod-newsfeed - yesod-sitemap - - yesod-static + - yesod-static < 0 # https://github.com/yesodweb/yesod/pull/1916 https://github.com/yesodweb/yesod/issues/1917 - yesod-test - yesod-websockets - cereal-conduit @@ -926,7 +958,6 @@ packages: - wai-middleware-crowd - monad-logger-json - safe-exceptions - - fsnotify-conduit < 0 # 0.1.1.1 compile fail https://github.com/fpco/fsnotify-conduit/issues/5 - pid1 - typed-process - say @@ -944,9 +975,6 @@ packages: - githash - time-manager - - http-download - - hi-file-parser - - rio-prettyprint - packdeps "Brandon Barker @bbarker": @@ -986,17 +1014,16 @@ packages: - fuzzy "Digital Asset @shayne-fletcher": - - ghc-lib < 9.12 - - ghc-lib-parser < 9.12 + - ghc-lib + - ghc-lib-parser "Shayne Fletcher @shayne-fletcher": - - ghc-lib-parser-ex < 9.12 + - ghc-lib-parser-ex "Karl Ostmo @kostmo": - perfect-hash-generator "Alan Zimmerman @alanz": - - ghc-exactprint - hjsmin - language-javascript @@ -1033,7 +1060,7 @@ packages: - wai-slack-middleware - sysinfo - xmonad-extras - - persistent-redis + - persistent-redis < 0 # https://github.com/yesodweb/persistent/issues/1631 - fakedata - fakedata-parser - fakedata-quickcheck @@ -1060,6 +1087,7 @@ packages: - clock "Stefan Wehr @skogsbaer": + - haskell-src - HTF - xmlgen - stm-stats @@ -1075,11 +1103,7 @@ packages: - cipher-aes - cipher-rc4 - connection - - cprng-aes - cpu - - cryptocipher - - cryptohash - - cryptonite # See https://github.com/commercialhaskell/stackage/issues/7474 - cryptonite-openssl - crypto-pubkey-types - crypto-random-api @@ -1118,10 +1142,6 @@ packages: "Alberto G. Corona @agocorona": - RefSerialize - TCache - - Workflow - - MFlow - - transient-universe - - axiom "Edward Kmett @ekmett": - ad @@ -1242,7 +1262,7 @@ packages: - diagrams-lib - diagrams-postscript - diagrams-rasterific - - diagrams-solve + - diagrams-solve < 0.2 # https://github.com/commercialhaskell/stackage/issues/7998 - diagrams-svg - force-layout - SVGFonts @@ -1264,6 +1284,7 @@ packages: - bugsnag-yesod - gravatar - load-env + - network-uri-template - shellwords - yesod-markdown - yesod-paginator @@ -1276,11 +1297,11 @@ packages: - aws-xray-client-wai - bcp47 - bcp47-orphans - - faktory + - faktory < 0 # https://github.com/freckle/faktory_worker_haskell/issues/132 - graphula - hspec-expectations-json - hspec-junit-formatter - - nonempty-zipper < 1.0.1.0 # requires newer deepseq than what ships with ghc 9.10.1 + - nonempty-zipper - scientist - sendgrid-v3 - yesod-auth-oauth2 @@ -1329,12 +1350,6 @@ packages: - 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": - binary-list @@ -1350,11 +1365,11 @@ packages: - include-file - journalctl-stream - libsodium-bindings - - mailtrap - matrix - mysql-json-table - pcre-light - phantom-state + - positive-integer - post-mess-age - sel - sorted-list @@ -1411,8 +1426,6 @@ packages: "Robert Klotzner @eskimor": - purescript-bridge - - servant-purescript - - servant-subscriber < 0 # 0.7.0.0 fails with aeson https://github.com/eskimor/servant-subscriber/issues/25 "Rodrigo Setti @rodrigosetti": - messagepack @@ -1457,10 +1470,6 @@ packages: "Owen Shepherd @414owen": - tasty-html - "George Giorgidze @giorgidze": - - YampaSynth < 0 # 0.2 compile fail - - set-monad < 0 # 0.3.0.0 ghc-9.10.1 https://github.com/giorgidze/set-monad/pull/11 - "Phil Hargett @hargettp": - courier @@ -1494,7 +1503,7 @@ packages: - monad-chronicle "Joey Hess @joeyh": - - git-annex + - git-annex < 0 # https://github.com/commercialhaskell/stackage/issues/8030 - concurrent-output - mountpoints - disk-free-space @@ -1570,10 +1579,9 @@ packages: - holy-project - wai-middleware-caching - wai-middleware-caching-lru - - wai-middleware-caching-redis + - wai-middleware-caching-redis < 0 # https://github.com/yogsototh/wai-middleware-caching/issues/2 "Paul Rouse @paul-rouse": - - mysql - mysql-simple - sphinx - xmlhtml @@ -1582,7 +1590,6 @@ packages: "Toralf Wittner @twittner": - bytestring-conversion - cql - - cql-io - redis-resp - redis-io - swagger @@ -1594,7 +1601,6 @@ packages: "Alejandro Serrano @serras": - djinn-lib - djinn-ghc - - generics-mrsop < 0 # 2.3.0 compile fail: TyVarBndr - kind-apply - kind-generics - kind-generics-th @@ -1607,8 +1613,6 @@ packages: - tracing-control - primitive-unlifted - stm-lifted - - monad-primitive < 0 # 0.1 compile fail ghc-9.6 - - mwc-random-monad "Flavio Corpa @kutyel": - language-avro @@ -1672,6 +1676,7 @@ packages: - optima - partial-handler - postgresql-binary + - postgresql-connection-string - postgresql-syntax - primitive-extras - ptr-poker @@ -1681,7 +1686,9 @@ packages: - stm-containers - stm-hamt - template-haskell-compat-v0208 + - testcontainers-postgresql - text-builder + - text-builder-core - text-builder-dev - th-lego - vector-builder @@ -1705,13 +1712,11 @@ packages: - users-persistent - users-test - validate-input - - ignore < 0 # 0.1.1.0 compile fail https://github.com/agrafix/ignore/issues/5 - blaze-bootstrap - dataurl - psql-helpers - superbuffer - timespan - - distance < 0 # 0.1.0.0 compile fail: Semigroup Distance - async-extra - format-numbers - highjson @@ -1735,9 +1740,11 @@ packages: "Tom Ellis @tomjaguarpaw": - bluefin - bluefin-internal + - microaeson - opaleye - product-profunctors - strict-wrapper + - relude "Samplecount stefan@samplecount.com @kaoskorobase": - shake-language-c @@ -1783,7 +1790,7 @@ packages: - unbound-generics "Greg Pfeil @sellout": - - dualizer < 0 # 0.1.0.1 https://github.com/sellout/dualizer/issues/6 + - dualizer - no-recursion - yaya - yaya-containers @@ -1806,6 +1813,8 @@ packages: "Tristan de Cacqueray @tristanC": - linux-capabilities + - HsYAML + - HsYAML-aeson "Jens Petersen @juhp": - bodhi @@ -1816,10 +1825,10 @@ packages: - copr-api - dl-fedora - fbrnch > 1.5 - - fedora-haskell-tools < 0 # not yet updated to fedora-releases - fedora-krb - fedora-releases - fedora-repoquery + - fontwhich - HaXml - hkgr - http-directory @@ -1827,6 +1836,7 @@ packages: - hwk - koji - koji-tool + - lsfrom - pagure - pagure-cli - pkgtreediff @@ -1844,12 +1854,11 @@ packages: - darcs - libffi - cairo - - glib + - glib < 0 # 9.12.3 https://github.com/gtk2hs/gtk2hs/issues/348 - gio - pango - gtk3 - ghcjs-codemirror - - ghcjs-dom - vado - binary-shared - xdg-userdirs @@ -1872,7 +1881,7 @@ packages: - panic - parameterized-utils - s-cargot - - what4 < 1.7 # https://github.com/commercialhaskell/stackage/issues/7725 + - what4 - zenc # copilot tests: - hedgehog-classes @@ -1882,7 +1891,6 @@ packages: - named-text - sayable - tasty-checklist - - tasty-sugar - units - units-defs # Ogma and dependency @@ -1949,20 +1957,18 @@ packages: - bitcoin-tx - bitcoin-types - hexstring - - network-attoparsec < 0 # 0.12.2 compile fail MonadFail - network-anonymous-i2p - network-anonymous-tor "Timothy Jones @zmthy": - http-media - "Greg V @myfreeweb": + "Val Packett @valpackett": - pcre-heavy - http-link-header - microformats2-parser - hspec-expectations-pretty-diff - wai-cli - - magicbane < 0 # fails to compile (https://github.com/commercialhaskell/stackage/issues/7673) "Francesco Mazzoli @bitonic": - language-c-quote @@ -1980,14 +1986,12 @@ packages: "Abhinav Gupta @abhinav": - farmhash - pinch - - sandman < 0 # 0.2.0.1 compile fail (Cabal 3) "Adam C. Foltzer @acfoltzer": - gitrev - - persistent-refs < 0 # 0.4 compile fail https://github.com/acfoltzer/persistent-refs/issues/3 "Luke Taylor @tekul": - - jose-jwt + - jose-jwt < 0 # 0.10.0 https://github.com/tekul/jose-jwt/issues/49 "Brendan Hay @brendanhay": - amazonka @@ -2279,19 +2283,96 @@ packages: - amazonka-workspaces-web - amazonka-xray - ede - - pagerduty < 0 # 0.0.8 compile fail with GHC 8.4 https://github.com/brendanhay/pagerduty/issues/10 + - gogol + - gogol-core + - gogol-adexchange-buyer + - gogol-adexchange-seller + - gogol-admin-datatransfer + - gogol-admin-directory + - gogol-admin-reports + - gogol-adsense + - gogol-adsense-host + - 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-bigquery + - gogol-billing + - gogol-blogger + - gogol-books + - gogol-civicinfo + - gogol-classroom + - 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-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-logging + - gogol-mirror + - gogol-monitoring + - gogol-oauth2 + - gogol-pagespeed + - gogol-partners + - gogol-people + - gogol-play-moviespartner + - gogol-plus + - gogol-plus-domains + - gogol-proximitybeacon + - gogol-pubsub + - gogol-qpxexpress + - gogol-replicapool + - gogol-replicapool-updater + - gogol-resourcemanager + - gogol-script + - gogol-sheets + - gogol-shopping-content + - gogol-siteverification + - gogol-spectrum + - gogol-sqladmin + - gogol-storage + - gogol-storage-transfer + - gogol-tagmanager + - gogol-translate + - gogol-urlshortener + - gogol-vision + - gogol-webmaster-tools + - gogol-youtube + - gogol-youtube-analytics + - gogol-youtube-reporting - semver - text-manipulate - "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 - - jmacro-rpc < 0 # 0.3.3 compile fail - - jmacro-rpc-snap - - jmacro-rpc-happstack - - mbox - kmeans - boolsimplifier @@ -2342,14 +2423,15 @@ packages: - cabal-gild - flow - github-release + - heck - imp - json-feed - lackey - patrol + - postgresql-simple-interval - rampart - ratel - ratel-wai - - rattletrap - salve - saturn - strive @@ -2391,8 +2473,6 @@ packages: "Yitz Gale @ygale": - strict-concurrency - - timezone-series - - timezone-olson "Harry Garrood @hdgarrood": - aeson-better-errors @@ -2406,6 +2486,7 @@ packages: - list-shuffle - park-bench - queues + - strict-tuple - tasty-hspec - termbox - termbox-banana @@ -2426,6 +2507,7 @@ packages: - clash-lib - clash-ghc - clash-prelude-hedgehog + - clash-shake "Martijn Bastiaan @martijnbastiaan": - aeson-pretty @@ -2444,9 +2526,7 @@ packages: - composition-extra - every - extractable-singleton - - follow-file < 0 # 0.0.3 compile fail https://github.com/athanclark/follow-file/issues/1 - HSet - - markup < 0 # 4.2.0 compile fail https://github.com/athanclark/markup/issues/7 - monad-control-aligned - monadoid - n-tuple @@ -2483,7 +2563,6 @@ packages: "Peter Harpending @pharpend": - editor-open - - exceptional < 0 # 0.3.0.0 MonadFail - pager - semiring-simple @@ -2509,13 +2588,11 @@ packages: - decidable - emd - functor-products - - hamilton < 0 # 0.1.0.3 compile fail https://github.com/mstksg/hamilton/issues/9 - hmatrix-backprop - hmatrix-vector-sized - lens-typelevel - list-witnesses - nonempty-containers - - one-liner-instances - servant-cli - tagged-binary - type-combinators-singletons @@ -2531,6 +2608,23 @@ packages: - uri-templater - data-sketches - data-sketches-core + - honeycomb + - hs-opentelemetry-api + - hs-opentelemetry-api-types + - hs-opentelemetry-exporter-handle + - hs-opentelemetry-exporter-in-memory + - hs-opentelemetry-exporter-otlp + - hs-opentelemetry-otlp + - hs-opentelemetry-propagator-b3 + - hs-opentelemetry-propagator-datadog + - hs-opentelemetry-propagator-jaeger + - hs-opentelemetry-propagator-w3c + - hs-opentelemetry-propagator-xray + - hs-opentelemetry-semantic-conventions + - hs-opentelemetry-sdk + - hs-opentelemetry-vendor-honeycomb + - thread-utils-context + - thread-utils-finalizers "Michael Xavier @MichaelXavier": - uri-bytestring @@ -2547,7 +2641,6 @@ packages: - random-bytestring "Sam Rijs @srijs": - - operational-class < 0 # 0.3.0.0 compile fail https://github.com/srijs/haskell-operational-class/issues/1 - result "Daniel Patterson @dbp": @@ -2558,7 +2651,6 @@ packages: - distributed-closure - inline-java - inline-r - - jni < 0 # 0.8.0 compile fail - jvm - jvm-streaming - H @@ -2577,7 +2669,7 @@ packages: "Kai Zhang @kaizhang": - matrices - - haskell-igraph < 0 # 0.8.0 compile fail ghc 8.10.1 #5440/closed + - haskell-igraph "Michel Boucey @MichelBoucey": - IPv6Addr @@ -2589,6 +2681,8 @@ packages: - IPv6DB - gothic - NanoID + - bytestring-encodings # as a dependency of NanoID + - stakhanov "koral koral@mailoo.org @k0ral": - atom-conduit @@ -2596,7 +2690,6 @@ packages: - dublincore-xml-conduit - euler-tour-tree - opml-conduit - - rss-conduit - timerep - xml-conduit-parse @@ -2638,19 +2731,13 @@ packages: "John Lenz @wuzzeb": - yesod-static-angular - - hspec-webdriver - webdriver-angular "Sven Heyll @sheyll": - type-spec - - pretty-types < 0 # 0.4.0.0 # fails to compile https://github.com/sheyll/pretty-types/issues/2 - function-builder - bytestring-to-vector - "Jakub Fijałkowski @jakubfijalkowski": - - hlibsass - - hsass - "Robert Massaioli @robertmassaioli": - range @@ -2667,7 +2754,6 @@ packages: - hapistrano - hspec-golden - inflections - - stache - scalendar "Sergey Alirzaev @l29ah": @@ -2679,12 +2765,6 @@ packages: - stringprep - ranges - "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 @@ -2746,7 +2826,6 @@ packages: - monad-logger-prefix - monad-metrics - prairie - - ekg-cloudwatch < 0 # 0.0.1.6 fails to compile we amazonka 2.0 - liboath-hs - servant-quickcheck - esqueleto @@ -2779,8 +2858,7 @@ packages: "Timo von Holtz @tvh": - ekg-wai - - haxl-amazonka - - hasql-migration + - hasql-migration < 0 # 0.3.1 fails to compile against hasql-1.10 - servant-JuicyPixels "Steven Fontanella @stevenfontanella": @@ -2844,7 +2922,10 @@ packages: - from-sum - natural-transformation - password + - password-aeson + - password-http-api-data - password-instances + - password-persistent - password-types - pretty-simple - print-console-colors @@ -2853,7 +2934,6 @@ packages: - servant-checked-exceptions-core - servant-rawm - servant-static-th - - termonad < 0 # dropped until moved to gtk4 (see #7540) - world-peace - xml-html-qq - xml-indexed-cursor @@ -2869,7 +2949,6 @@ packages: - apecs-gloss - apecs-physics - aeson-commit - - calligraphy < 0 # 0.1.6 ghc-9.8.4 https://github.com/jonascarpay/calligraphy/issues/40 - js-chart - safe-gen - tasty-focus @@ -2890,7 +2969,7 @@ packages: - chronologique - http-common - http-streams - - locators + - locators < 0 # crypton-1.1 https://github.com/aesiniath/locators-haskell/issues/7 - core-data - core-program - core-telemetry @@ -2931,7 +3010,6 @@ packages: - parsec-class - prim-uniq - random-fu - - rvar - SafeSemaphore - stringsearch # for cgi - titlecase @@ -2969,7 +3047,7 @@ packages: - flac - flac-picture - forma - - ghc-syntax-highlighter < 0.0.13 # drop bound for ghc-9.12 + - ghc-syntax-highlighter - hspec-megaparsec - htaglib - html-entity-map @@ -2981,7 +3059,7 @@ packages: - mmark-cli - mmark-ext - modern-uri - - ormolu < 0.8 # drop bound for ghc-9.12 + - ormolu - pagination - parser-combinators - parser-combinators-tests @@ -2989,7 +3067,7 @@ packages: - path-io - req - req-conduit - - stache + - stache < 2.4.0 # https://github.com/commercialhaskell/stackage/issues/8046 - tagged-identity - text-metrics - wave @@ -3007,22 +3085,39 @@ packages: - rzk - free-foil - "Jared Tobin @jtobin": - - mwc-probability + "Jared Tobin @jtobin": + - declarative + - flat-mcmc + - hasty-hamiltonian + - hnock - mcmc-types - mighty-metropolis - - speedy-slice - - hasty-hamiltonian - - declarative + - mwc-probability + - ppad-aead + - ppad-base16 + - ppad-base58 + - ppad-bech32 + - ppad-bip32 + - ppad-bip39 + - ppad-chacha + - ppad-fixed + - ppad-hkdf + - ppad-hmac-drbg + - ppad-pbkdf + - ppad-poly1305 + - ppad-ripemd160 + - ppad-script + - ppad-secp256k1 + - ppad-sha256 + - ppad-sha512 - sampling - - flat-mcmc + - speedy-slice - urbit-hob - - hnock "Facundo Domínguez @facundominguez": - inline-c - - jvm-batching - pthread + - timestats "Dave Tapley @dukedave": - inline-c-cpp @@ -3052,7 +3147,7 @@ packages: - pathwalk "John Galt @centromere": - - cacophony + - cacophony < 0 # 0.11.0 https://github.com/haskell-cryptography/cacophony/issues/19 - blake2 - nfc @@ -3083,12 +3178,10 @@ packages: - eventsource-stub-store "Sebastian Dröge slomo@coaxion.net @sdroege": - - conduit-iconv < 0 # 0.1.1.3 compile fail MonadFail - conduit-connection "Andrew Rademacher @AndrewRademacher": - aeson-casing - - graylog < 0 # 0.1.0.1 compile fail Couldn't find module Network.BSD - parsec-numeric - mallard - gdax @@ -3098,8 +3191,6 @@ packages: "Mihaly Barasz klao@nilcons.com @klao": - lens-datetime - - tz - - tzdata "Timothy Klim @TimothyKlim": - pkcs10 @@ -3136,33 +3227,28 @@ packages: - file-modules - frontmatter - read-editor - - 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 - - questioner - - language-dockerfile < 0 # 0.3.6.0 compile fail https://github.com/beijaflor-io/haskell-language-dockerfile/issues/11 "Pascal Hartig @passy": - giphy-api - optparse-text - "rightfold @rightfold": [] - "Denis Redozubov @dredozubov": - hreader-lens "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 + - main-tester + - network-messagepack-rpc + - network-messagepack-rpc-websocket + - skews + - strip-ansi-escape + - th-strict-compat + - unicode-show + - wss-client + - yes-precure5-command "Hans-Christian Esperer @hce": - avwx @@ -3188,7 +3274,6 @@ packages: # Stackage server uses Ubuntu 20.04 which ships libzip-?. # Haskell packages should match major.minor versions of the C library. - bindings-libzip - - LibZip < 0 # 1.0.1 undefined reference to 'zip_archive_set_tempdir' "Anthony Cowley @acowley": - vinyl @@ -3208,9 +3293,6 @@ packages: - tao - tao-example - "Suhail Shergill @suhailshergill": - - extensible-effects < 0 # 5.0.0.1 https://github.com/suhailshergill/extensible-effects/issues/135 - "Justus Adam @JustusAdam": - mustache - exit-codes @@ -3232,6 +3314,7 @@ packages: - emojis - pandoc - pandoc-cli + - pandoc-lua-engine - pandoc-server - citeproc - commonmark @@ -3246,6 +3329,8 @@ packages: - skylighting-format-typst - typst - typst-symbols + - gitit + - filestore "Karun Ramakrishnan @karun012": - doctest-discover @@ -3260,7 +3345,6 @@ packages: - hs-GeoIP - retry - katip - - katip-elasticsearch < 0 # 0.7.0.0 compile fail https://github.com/commercialhaskell/stackage/issues/6341 "Sid Kapur sidharthkapur1@gmail.com @sid-kap": - tuple @@ -3269,9 +3353,6 @@ packages: "Aaron Levin @aaronmblevin": - free-vl - "Kazuo Koga @kkazuo": - - xlsx-tabular < 0 # 0.2.2.1 https://github.com/kkazuo/xlsx-tabular/issues/9 - "Alex McLean @yaxu": - tidal - tidal-core @@ -3293,7 +3374,7 @@ packages: - debian-build - aeson-generic-compat - json-rpc-generic - - protocol-radius + - protocol-radius < 0 # crypton-1.1 https://github.com/khibino/haskell-protocol-radius/issues/1 - protocol-radius-test "wren romano @wrengr": @@ -3327,7 +3408,6 @@ packages: - zasni-gerna - exception-hierarchy - simplest-sqlite - - warp-tls-uid < 0 # 0.2.0.6 https://github.com/YoshikuniJujo/warp-tls-uid/issues/1 - nowdoc - typecheck-plugin-nat-simple - ranged-list @@ -3341,7 +3421,7 @@ packages: - extra-data-yj - moffy-samples-events - moffy-samples - - moffy-samples-gtk4-run < 0 # 0.2.1.3 requires newer glib https://github.com/YoshikuniJujo/moffy-samples-gtk4-run/issues/1 + - moffy-samples-gtk4-run - moffy-samples-gtk4 - simple-cairo - simple-pango @@ -3366,6 +3446,10 @@ packages: - swizzle-modify - swizzle-lens - glfw-group + - ftcqueue + - freer-base-classes + - higher-order-freer-monad + - higher-order-open-union "Jan Gerlinger @JanGe": - irc-dcc @@ -3375,15 +3459,8 @@ packages: "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens - - antiope-core < 0 # 7.5.3 fails to compile we amazonka 2.0 - - antiope-dynamodb - - antiope-messages < 0 # 7.5.3 https://github.com/arbor/antiope/issues/112 - - antiope-s3 - - 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 - arbor-postgres - - asif < 0 # 6.0.4 compile fail - https://github.com/arbor/asif/issues/48 - avro - bits-extra - hw-balancedparens @@ -3391,7 +3468,6 @@ packages: - hw-conduit - hw-conduit-merges - hw-diagnostics - - hw-dsv - hw-eliasfano - hw-excess - hw-fingertree @@ -3399,7 +3475,6 @@ packages: - hw-hedgehog - hw-hspec-hedgehog - hw-int - - hw-ip < 0 # 2.4.2.1 requires hedgehog - but commenter isn't able to spot this - hw-json - hw-json-simple-cursor - hw-json-standard-cursor @@ -3420,11 +3495,7 @@ packages: - hedgehog-fn - tasty-hedgehog - "Ismail Mustafa @ismailmustafa": - - handwriting - "Stephen Diehl @sdiehl": - - llvm-hs-pretty - protolude - repline - picosat @@ -3434,7 +3505,6 @@ packages: - merkle-tree - oblivious-transfer - pairing - - libraft < 0 # 0.5.0.0 No instance for ‘ConvertText ByteString [Char]’ - galois-field "Daishi Nakajima @nakaji-dayo": @@ -3444,7 +3514,6 @@ packages: - postgresql-transactional "Tom Murphy ": - - gingersnap < 0 # 0.3.1.0 compile fail aeson 2 - microspec - midair - nano-erl @@ -3485,6 +3554,7 @@ packages: - gi-cairo - gi-dbusmenu - gi-dbusmenugtk3 + - gi-freetype2 - gi-gdk - gi-gdk3 - gi-gdk4 @@ -3494,29 +3564,26 @@ packages: - gi-gdkx114 - gi-gio - gi-glib + - gi-gmodule - gi-gobject - gi-graphene - gi-gsk - gi-gtk + - gi-gtk-hs + - gi-gtk-layer-shell - gi-gtk3 - gi-gtk4 - - gi-gtk-hs - - gi-gmodule - - gi-pango - - gi-xlib - - gi-harfbuzz - gi-gtksource - - gi-gtksource3 < 0 # needs Ubuntu package in image - gi-gtksource5 + - gi-harfbuzz - gi-javascriptcore - - gi-javascriptcore4 - gi-javascriptcore6 - - gi-vte - - gi-webkit2 < 0 # needs Ubuntu package in image - - gi-freetype2 + - gi-pango + - gi-pangocairo - gi-soup - - gi-soup2 - gi-soup3 + - gi-vte + - gi-xlib "Brandon Simmons @jberryman": - directory-tree @@ -3554,9 +3621,6 @@ packages: - xxhash-ffi - zeromq4-patterns - "Tebello Thejane @tebello-thejane": - - bitx-bitcoin < 0 # 0.12.0.0 compile fail - "Andrew Lelechenko @Bodigrim": - parser-regex - exp-pairs @@ -3594,6 +3658,10 @@ packages: - cabal-install-parsers - alfred-margaret - hackage-revdeps + - COrdering + - AvlTree + - temporary-ospath + - from-text "Ashley Yakeley @AshleyYakeley": - countable @@ -3617,7 +3685,6 @@ packages: "Patrick Chilton @chpatrick": - webrtc-vad - - clang-pure < 0 # 0.2.0.6 missing system libraries #3810/closed "Michal Konecny @michalkonecny": - hmpfr @@ -3638,7 +3705,6 @@ packages: "Dominic Orchard @dorchard": - array-memoize - - codo-notation < 0 # 0.5.2 compile fail MonadFail - fortran-src "Cheng Shao @TerrorJack": @@ -3655,20 +3721,15 @@ packages: "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 # 0.1.0.2 compile fail https://github.com/louispan/writer-cps-morph/issues/2 - writer-cps-lens - - writer-cps-full - writer-cps-exceptions - wl-pprint-annotated - wl-pprint-console @@ -3691,6 +3752,7 @@ packages: - data-compat - linear-geo - vector-fftw + - uhd "Michael Swan @michael-swan": - pcf-font @@ -3725,7 +3787,6 @@ packages: "Tony Day @tonyday567": - box - box-socket - - cabal-fix - chart-svg - dotparse - formatn @@ -3734,7 +3795,6 @@ packages: - markup-parse - mealy - numhask - - numhask-array - numhask-space - perf - prettychart @@ -3745,8 +3805,10 @@ packages: - network-msgpack-rpc "Dino Morelli @dino-": + - co-log-simple - epub-metadata - hsinstall + - optparse-applicative-dex - tce-conf "Jonathan Fischoff @jfischoff": @@ -3762,8 +3824,10 @@ packages: - bech32 - bech32-th - cardano-coin-selection + - hspec-quickcheck-classes - monoidmap - monoidmap-aeson + - monoidmap-examples - monoidmap-internal - monoidmap-quickcheck - quickcheck-groups @@ -3771,15 +3835,21 @@ packages: - quickcheck-quid - quiet - roc-id + - taiwan-id "Mahdi Dibaiee @mdibaiee": - picedit - mathexpr - termcolor - "XT @xtendo-org": + "XT @xtendo-org": + - from + - from-string - rawfilepath + "Xiaoyu Zhang @yellowbean": + - Hastructure + "Konstantin Zudov @zudov": - html-email-validate @@ -3823,7 +3893,6 @@ packages: - printcess "Alexey Kuleshevich @lehins": - - hip < 0 # 1.5.6.0 Simplifier ticks exhausted https://github.com/lehins/hip/issues/56 - massiv - massiv-io - massiv-test @@ -3839,16 +3908,13 @@ packages: - FailT - mempack - ImpSpec + - cuddle "Hans-Peter Deifel @hpdeifel": - hledger-iadd - "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 - - references < 0 # 0.3.3.1 compile fail "Michael Bock @m-bock": - fields-and-cases @@ -3864,7 +3930,7 @@ packages: - influxdb "Dylan Simon @dylex": - - postgresql-typed + - postgresql-typed < 0 # https://github.com/dylex/postgresql-typed/issues/38 - invertible - ztail - zip-stream @@ -3873,12 +3939,8 @@ packages: - alternators - arrow-extras - data-diverse - - data-diverse-lens < 0 # 4.3.0.0 compile fail (lens) - ghcjs-base-stub - glaze - - glazier < 0 # 1.0.0.0 compile fail (lens) - - glazier-react - - glazier-react-widget - javascript-extras - lens-misc - l10n @@ -3887,8 +3949,6 @@ packages: - pipes-misc - stm-extras - "Siniša Biđin @sbidin": [] - "Aditya Manthramurthy @donatello": - minio-hs - webby @@ -3896,6 +3956,7 @@ packages: "ncaq @ncaq": - debug-trace-var - haskell-import-graph + - himari - string-transform - uniq-deep - yesod-form-bootstrap4 @@ -3923,7 +3984,6 @@ packages: "Pavel Yakovlev @zmactep": - hasbolt - uniprot-kb - - mmtf < 0 # 0.1.3.1 compile fail MonadFail "Christopher A. Gorski @cgorski": - general-games @@ -3934,7 +3994,6 @@ packages: "Peter Trško @trskop": - between - - connection-pool < 0 # 0.2.2 compile fail https://github.com/trskop/connection-pool/issues/2 - verbosity "Devon Hollowood @devonhollowood": @@ -3981,12 +4040,14 @@ packages: - lpeg - lua - lua-arbitrary - - pandoc-lua-engine - pandoc-lua-marshal - tasty-hslua - tasty-lua - gridtables + "Ryan Hendrickson @rhendric": + - coerce-with-substitution + "Judah Jacobson @judah": - proto-lens-protobuf-types - proto-lens-protoc @@ -4042,6 +4103,7 @@ packages: "Alex Biehl @alexbiehl": - haddock-library - http-client-openssl + - testcontainers "Steven Vandevelde @icidasset": - shikensu @@ -4075,6 +4137,10 @@ packages: - uncaught-exception - tztime + "Diogo Castro @dcastro": + - linear-locks + - sqlite-simple-effectful + "Holmusk @arbus": - elm-street @@ -4098,6 +4164,7 @@ packages: - blas-hs "Eitan Chatav @echatav": + - distributors - free-categories - indexed-transformers - squeal-postgresql @@ -4107,7 +4174,6 @@ packages: "typeable.io ": - dom-parser - - xml-isogen < 0 # 0.3.0 compile fail "Jeremy Huffman @jeremyjh": - higher-leveldb @@ -4150,7 +4216,6 @@ packages: - ascii-th - attoparsec-run - aws-cloudfront-signed-cookies - - d10 < 0 # 1.0.1.3 builds fine with cabal-install, stack issue? - data-forest - hedgehog-optics - hex-text @@ -4213,10 +4278,10 @@ packages: - appendful-persistent - autodocodec - autodocodec-nix - - autodocodec-openapi3 + - autodocodec-openapi3 < 0 # 0.3.0.1 https://github.com/NorfairKing/autodocodec/issues/68 - autodocodec-schema - autodocodec-servant-multipart - - autodocodec-swagger2 + - autodocodec-swagger2 < 0 # 0.1.0.0 https://github.com/NorfairKing/autodocodec/issues/68 - autodocodec-yaml - cursor - cursor-brick @@ -4266,6 +4331,7 @@ packages: - safe-coloured-text-gen - safe-coloured-text-layout - safe-coloured-text-layout-gen + # - safe-coloured-text-parsing # missing on hackage and needed by safe-coloured-text-gen-0.0.0.4 testsuite - safe-coloured-text-terminfo - sydtest - sydtest-aeson @@ -4273,7 +4339,7 @@ packages: - sydtest-autodocodec - sydtest-discover - sydtest-hedgehog - - sydtest-hedis + - sydtest-hedis < 0 # https://github.com/NorfairKing/sydtest/issues/132 - sydtest-hspec - sydtest-mongo - sydtest-persistent @@ -4284,9 +4350,6 @@ packages: - sydtest-servant - sydtest-typed-process - sydtest-wai - - sydtest-webdriver - - sydtest-webdriver-screenshot - - sydtest-webdriver-yesod - sydtest-yesod - typed-uuid - validity @@ -4316,11 +4379,7 @@ packages: - effectful-th - strict-mutable-base - "Stevan Andjelkovic @stevana": - - quickcheck-state-machine - "Sebastian Nagel @ch1bo": - - hdevtools < 0 # 0.1.8.0 compile fail - servant-exceptions - servant-exceptions-server @@ -4334,11 +4393,10 @@ packages: "Alexandre Peyroux @apeyroux": - HSlippyMap - google-isbn - - nuxeo "Andrey Sverdlichenko @rblaze": - dbus - - re2 < 0 # 0.3 Compilation failure with GHC 9.8.1, /usr/bin/ar: .stack-work/dist/x86_64-linux-tinfo6/ghc-9.8.1/build/cbits/haskell-re2.o: No such file or directory + - re2 "Bardur Arantsson @BardurArantsson": - peregrin @@ -4350,12 +4408,9 @@ packages: "Alexey Kotlyarov @koterpillar": - appendmap - - serverless-haskell < 0 # 0.12.6 https://github.com/seek-oss/serverless-haskell/issues/188 "Guru Devanla @gdevanla": - pptable - - 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 @@ -4388,7 +4443,6 @@ packages: - ixset-typed-hashable-instance - lucid-cdn - natural-arithmetic - - pandoc-dhall-decoder - pandoc-throw - path-binary-instance - path-dhall-instance @@ -4437,7 +4491,6 @@ packages: "Domen Kozar @domenkozar": - elm2nix - - mixpanel-client < 0 # 0.3.0 aeson 2, https://github.com/commercialhaskell/stackage/issues/6443 - pretty-sop - servant-auth - servant-auth-server @@ -4463,20 +4516,17 @@ packages: - th-nowq "Dan Fithian @dfithian": - - oauthenticated < 0 # 0.3.0.0 compile fail https://github.com/tel/oauthenticated/issues/33 - - datadog - interpolator - file-path-th "Raghu Kaippully @rkaippully": - webgear-core - - webgear-openapi + - webgear-openapi < 0 # 1.5.0 fails to compile - webgear-server - webgear-swagger - webgear-swagger-ui "Alex Washburn @recursion-ninja": - - bv-little < 0 # needs mono-traversable-keys - mono-traversable-keys "Avi Press @aviaviavi": @@ -4510,20 +4560,26 @@ packages: "Chris Coffey @ChrisCoffey": - servant-tracing - cuckoo-filter - - confcrypt "Rick Owens @rickowens": + - om-doh - om-elm + - om-fail + - om-fork + - om-http + - om-logging - om-show + - om-time - elm-syntax - json-spec - json-spec-elm - json-spec-openapi - json-spec-elm-servant + - generic-enumeration + - crdt-event-fold "ALeX Kazik @alexkazik": - exomizer - - qnap-decrypt - qrcode-core - qrcode-juicypixels @@ -4531,8 +4587,6 @@ packages: - fuzzy-dates "Matthew Farkas-Dyck @strake": - - 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 - natural-induction - peano @@ -4592,9 +4646,9 @@ packages: - rocksdb-haskell - rocksdb-haskell-jprupp - rocksdb-query - - haskoin-core + - haskoin-core < 0 # 1.2.2 https://github.com/jprupp/haskoin-core/issues/424 - haskoin-node - - haskoin-store + - haskoin-store < 0 # 1.5.16 https://github.com/jprupp/haskoin-store/issues/32 "asakamirai @asakamirai": - kazura-queue @@ -4612,9 +4666,6 @@ packages: "Takenobu Tani @takenobu-hs": - ghci-hexcalc - "Nikos Karagianndis @nkarag": - - DBFunctor - "Marat Khafizov @xafizoff": - n2o - n2o-nitro @@ -4696,18 +4747,23 @@ packages: "Ivan Malison @IvanMalison": - ConfigFile - dbus-hslogger + - dbus-menu - gi-cairo-connector - gi-cairo-render + - gi-gtk-layer-shell + - gi-wireplumber < 0 # Did not find a GI repository for Wp-0.5 in ["/usr/local/share/gir-1.0","/usr/share/gir-1.0","/opt/homebrew/share/gir-1.0"] + - gtk-scaling-image - gtk-sni-tray - gtk-strut - rate-limit - status-notifier-item - - taffybar + - taffybar < 7.2 - time-units - xml-helpers - xdg-desktop-entry "ARATA Mizuki @minoki": + - fp-ieee - unboxing-vector "Brandon Chinn @brandonchinn178": @@ -4717,6 +4773,7 @@ packages: - graphql-client - hpc-lcov - http-api-data-qq + - kdl-hs - persistent-mtl - recover-rtti - skeletest @@ -4808,7 +4865,7 @@ packages: - multi-containers "Vaclav Svejcar @vaclavsvejcar": - - headroom < 0 # 0.4.3.0 compile fail + - headroom - vcs-ignore "Adrian Sieber @ad-si": @@ -4919,10 +4976,16 @@ packages: "Brooklyn Zelenka @expede": - rescue - "Artem Pelenitsyn @ulysses4ever": + "Artem Pelenitsyn @ulysses4ever": + - BNFC-meta - alex-meta - happy-meta - - BNFC-meta + - liquidhaskell + - liquidhaskell-boot + - liquid-fixpoint + - smtlib-backends + - smtlib-backends-process + - smtlib-backends-tests - vector-hashtables "Tomasz Maciosowski @t4ccer": @@ -4979,6 +5042,7 @@ packages: "Jan Synacek @jsynacek": - hpqtypes + - hpqtypes-effectful - hpqtypes-extras - fields-json - log-base @@ -5027,6 +5091,10 @@ packages: - wai-middleware-delegate - web-cookiejar + "Alice Rixte @AliceRixte": + - lr-acts + - ghci4luatex + "Francisco Vallarino @fjvallarino": - monomer - nanovg @@ -5053,6 +5121,7 @@ packages: - reorder-expression "konsumlamm @konsumlamm": + - parallel - pqueue - rrb-vector @@ -5101,7 +5170,9 @@ packages: - trie-simple - PSQueue - matchable - - wherefrom-compat < 0.2.0.0 # https://github.com/commercialhaskell/stackage/issues/7430 + - wherefrom-compat + - template-haskell-lift + - template-haskell-quasiquoter - th-deepstrict "Fabricio Olivetti de Franca @folivetti": @@ -5118,10 +5189,19 @@ packages: - ansi-terminal - ansi-terminal-types - companion + - crypton-asn1-encoding + - crypton-asn1-parse + - crypton-asn1-types + - crypton-pem + - crypton-socks + - hi-file-parser + - http-download < 0 # https://github.com/commercialhaskell/http-download/issues/6 - open-browser - pantry + - rio-prettyprint - stack < 9 - static-bytes + - time-hourglass "Torsten Schmits @tek": - exon @@ -5141,9 +5221,12 @@ packages: - crypton-x509-store - crypton-x509-system - crypton-x509-validation + - ech-config + - hpke - http-semantics - http2 - network-control + - quic - tls "Patrick Nielsen @patrickmn": @@ -5159,24 +5242,66 @@ packages: - co-log-polysemy - wled-json # Packages that I personally like to be on Stackage - but I do not maintain them! - # Feel free to snatch them from me! Just remove them if they are casusing trouble! + # Feel free to snatch them from me! Just remove them if they are causing trouble! + - asciidoc + - AesonBson - array-chunks - bowtie - - clash-shake + - cauldron + - coco - constrained-categories - consumers - - easyplot - data-prometheus - delta-types + - diagrams-braille - digraph + - easyplot + - effectful-poolboy + - exact-real + - fgl-visualize + - firebase-hs + - fx + - gb-vector + - generic-case + - geoip2 + - gloss-juicy + - haal + - happy-dot + - hash-tree + - http3 + - idn + - iri + - jsaddle-warp + - kubernetes-api + - kubernetes-api-client + - layoutz - lifted-threads + - linenoise - manifolds-core + - mime - nerd-font-icons + - nix-narinfo + - oidc-client + - optparse-declarative + - packstream-bolt + - pgmq-core - pinecone + - poolboy - probability-polynomial - pseudo-boolean + - quickcheck-dynamic + - quic-simple < 0 # https://gitlab.com/dpwiz/quic-simple/-/work_items/1 + - recaptcha - refined-containers + - safe-wild-cards + - servant-prometheus - smith + - sockaddr + - streaming-binary + - tls-sslkeylogfile + - Unique + - variant + - webp "Alexander Esgen @amesgen": - ghc-hs-meta @@ -5215,8 +5340,15 @@ packages: "Taimoor Zaeem @taimoorzaeem": - aeson-jsonpath + - fuzzystrmatch-pg - "Sayo Koyoneda ": + "Renato Garcia @renatoGarcia": + - hakyll-diagrams + + "Tom Wells @drshade": + - mcp-server + + "Riyo @ymdryo": - data-effects-core - data-effects-th - data-effects @@ -5244,6 +5376,7 @@ packages: - cli-arguments - end-of-exe - intermediate-structures + - keter-rate-limiting-plugin - lists-flines - minmax - mmsyn2-array @@ -5256,6 +5389,16 @@ packages: - rhythmic-sequences - uniqueness-periods-vector-stats + "Jan Hrček @jhrcek": + - ini + + "Joosep Jääger @Soupstraw": + - antigen + + "Carl Wernhoff @carlwr": + - effable + - hspec-tidy-formatter + "Grandfathered dependencies": - BiobaseNewick - Boolean @@ -5289,6 +5432,7 @@ packages: - aeson-optics - alsa-mixer - animalcase + - ansigraph - appar - arrows - asn1-encoding @@ -5317,10 +5461,7 @@ packages: - blaze-textual - bloomfilter - boring - - box - - box-csv - brick - - broadcast-chan < 0 # 0.3.0 Cabal-8010: Encountered missing or private dependencies. Not sure is this the fault of the package or Cabal. - byte-order - byteable - bytehash @@ -5336,9 +5477,10 @@ packages: - cereal-text - cereal-vector - character-ps # dependency of 'aeson' & 'attoparsec-aeson' as of 2.2.2.0 + - chell + - chell-hunit + - chell-quickcheck - chunked-data - - cipher-aes128 < 0 # 0.7.0.6 compile fail - - cipher-blowfish < 0 # 0.0.3 compile fail - cipher-camellia - cipher-des - classy-prelude @@ -5347,32 +5489,28 @@ packages: - cmark-gfm - colour - colourista - - commutative-semigroups - concurrent-extra - conduit - config-ini - configurator - - constraints-extras + - contra-tracer - 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-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 - crypto-token # required by tls-session-manager >= 0.0.5 - cryptohash-cryptoapi - css-text - csv - cubicbezier + - daemons - data-binary-ieee754 - data-bword - data-checked @@ -5427,6 +5565,7 @@ packages: - filemanip - fin - fingertree + - finitary - fmlist - friendly-time - functor-classes-compat @@ -5440,14 +5579,14 @@ packages: - ghc-events - ghc-paths - ghc-prof + - ghc-tcplugin-api + - ghcjs-dom - ghcjs-dom-jsaddle - git-lfs - - gitlib - - gitlib-libgit2 - - gitlib-test - groom - groups - gtk + - hackernews - haha - hamlet - harp @@ -5456,13 +5595,16 @@ packages: - haskell-src-exts - haskell-src-exts-simple - haskoin-store-data + - hasktorch - hasql-dynamic-statements - hasql-implicits - - haxl - heap - here - hex + - hie-compat + - hiedb - hlibgit2 + - hls-graph - hmatrix - hmatrix-gsl - hmatrix-special @@ -5471,7 +5613,6 @@ packages: - hsc2hs - hscolour - hse-cpp - - hsp < 0 # 0.10.0 ghc-9.6 - hspec-attoparsec - hspec-contrib - hspec-expectations @@ -5486,7 +5627,6 @@ packages: - http-reverse-proxy - http-types - httpd-shed - - hw-json-simd - hw-string-parse - hxt - hxt-charproperties @@ -5495,6 +5635,7 @@ packages: - hxt-unicode - iconv - ieee754 + - implicit-hie - incremental - indexed - infer-license @@ -5519,11 +5660,12 @@ packages: - lazysmallcheck - leb128-cereal - libBF + - libtorch-ffi + - libtorch-ffi-helper - libyaml - libyaml-clib + - lifted-async - lifted-base - - liquidhaskell == 0.9.10.1 - - liquidhaskell-boot == 0.9.10.1 - loch-th - lockfree-queue - log-base @@ -5541,8 +5683,10 @@ packages: - mersenne-random-pure64 - mfsolve - microstache + - minisat - minisat-solver - missing-foreign + - mlkem - mmap - mmorph - mockery @@ -5552,7 +5696,6 @@ packages: - monad-logger - monad-loops - monad-time - - monadloc < 0 # 0.7.1 compile fail https://github.com/pepeiborra/monadloc/issues/4 - monads-tf - mono-traversable-instances - mono-traversable-keys @@ -5575,7 +5718,6 @@ packages: - nicify-lib - normaldistribution - nothunks - - numhask-prelude - old-locale - old-time - operational @@ -5583,12 +5725,11 @@ packages: - options - optparse-applicative - optparse-simple - - parallel - parallel-io - paramtree - path-pieces + - patience - pcg-random - - pdc - peggy - pipes-bytestring - pipes-group @@ -5610,19 +5751,19 @@ packages: - protobuf < 0.2.1.4 || > 0.2.1.4 # deprecated version - ptr - pureMD5 + - puresat - quickcheck-instances - quickcheck-io - quickcheck-simple - quickcheck-unicode - quicklz - ral # req'd by boring - - random < 1.3.0 # https://github.com/commercialhaskell/stackage/issues/7648 + - random - random-shuffle - range-set-list - ratio-int - raw-strings-qq - readable - - readline < 0 # 1.0.3.0 setup fail - recv - regex-applicative-text - regex-tdfa-text @@ -5649,7 +5790,7 @@ packages: - servant-multipart-client - servant-swagger-ui-redoc - setenv - - shakespeare < 2.1.1 || > 2.1.1 # deprecated version + - shakespeare - shakespeare-text - shell-escape - simple-reflect @@ -5669,6 +5810,7 @@ packages: - stateref - static-canvas - statistics + - statsd-rupp - step-function - stm-delay - storable-complex @@ -5684,6 +5826,9 @@ packages: - structured - sundown - syb + - system-fileio + - system-filepath + - table-layout - tabular - tar - tasty-th @@ -5733,6 +5878,8 @@ packages: - unbounded-delays - unfoldable - unicode-collation + - unicode-data-names + - unicode-data-scripts - universe - universe-base - universe-dependent-sum @@ -5751,7 +5898,6 @@ packages: - vector - vector-algorithms - vector-space - - vector-th-unbox - verset - vty - vty-crossplatform @@ -5770,19 +5916,37 @@ packages: - word8 - xml - xml-conduit - - xml-conduit-writer < 0 # 0.1.1.5 fails to compile - - xml-hamlet + - xml-conduit-writer - xml-types - xss-sanitize - yeshql-core - yeshql-hdbc - - yesod-core + - yesod-core < 1.7 # https://github.com/commercialhaskell/stackage/issues/8045 - yesod-form - yesod-persistent - zlib - zlib-clib - zlib-bindings + # recently grandfathered + - aeson-gadt-th + - bytestring-aeson-orphans + - commutative-semigroups + - constraints-extras + - dependent-monoidal-map + - dependent-sum-aeson-orphans + - haveibeenpwned + - monad-logger-extras + - monoid-map + - patch + - reflex + - reflex-dom-core + - reflex-fsnotify + - reflex-gadt-api + - reflex-vty + - vessel + - which + # 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. @@ -5791,13 +5955,10 @@ packages: # # When disabling one of these packages, move it to "Removed packages". "Abandoned packages": - - cheapskate-highlight - cheapskate-lucid - cmark-lucid - - cmark-highlight - Spock-lucid - - charsetdetect-ae < 0 # 1.1.0.4 /usr/bin/ar: .stack-work/dist/x86_64-linux-tinfo6/ghc-9.8.1/build/libcharsetdetect/charsetdetect.o: No such file or directory - - text-all + - charsetdetect-ae - Earley - bower-json - boxes @@ -5805,11 +5966,16 @@ packages: - compiler-warnings # #6326/closed - curl - first-class-patterns # #5965/closed + - ftp-client + # This should match GHC version, but maintainer also asked to be + # removed from notifications, see + # https://github.com/commercialhaskell/stackage/issues/7861 + - ghc-exactprint - ghc-trace-events # #6326/closed - hashing # #6271 - - hnix-store-core # #6271 - ilist # #5965/closed - io-storage # #6326/closed + - MissingH - monadlist # #6271 - non-empty-sequence - numeric-limits # #6326/closed @@ -5822,7 +5988,6 @@ packages: - pattern-arrows - planb-token-introspection # #6326/closed - pointedlist # #6326/closed - - relude # #5965/closed - shellmet # #5965/closed - slist # #5965/closed - syb-with-class @@ -5842,15 +6007,21 @@ packages: # 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 + - box-csv < 0 # 0.2.0 deprecated + - cabal-fix < 0 # 0.1.0.0 deprecated - cli < 0 # 0.2.0 removed + - cryptohash < 0 # deprecated: https://github.com/commercialhaskell/stackage/issues/7474 + - cryptonite < 0 # deprecated: https://github.com/commercialhaskell/stackage/issues/7474 - 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 + - hnix-store-core < 0 # 0.8.0.0 #6271 https://github.com/haskell-nix/hnix-store/issues/317 - 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 + - numhask-array <0 # 0.11.1.0 deprecated in favour of harpie + - numhask-prelude < 0 # 0.5.0 deprecated - preprocessor-tools < 0 # 2.0.2 - present < 0 # 4.1.0 compile fail #6271 - prim-array < 0 # 0.2.2 bounds @@ -5874,13 +6045,11 @@ packages: # they are working. "Compilation failures": - HDBC-mysql < 0 # 0.7.1.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 @@ -5895,14 +6064,11 @@ packages: - 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 - 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 @@ -5912,7 +6078,6 @@ packages: - hbeanstalk < 0 # 0.2.4 - hexstring < 0 # 0.11.1 - highjson < 0 # 0.5.0.0 compile fail aeson 2.0 - - 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 @@ -5922,23 +6087,17 @@ packages: - 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 - 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 - pdfinfo < 0 # 1.5.4 - pencil < 0 # 1.0.1 - - 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 - record-wrangler < 0 # 0.1.1.0 @@ -5951,12 +6110,10 @@ packages: - 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 - timemap < 0 # 0.0.7 https://github.com/athanclark/timemap/issues/1 @@ -5967,7 +6124,6 @@ packages: - 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 - xml-conduit-parse < 0 # 0.3.1.2 @@ -5984,620 +6140,574 @@ packages: # verify if they have been fixeq. # Recheck with: commenter clear && commenter add-loop "Library and exe bounds failures": - - Clipboard < 0 # tried Clipboard-2.3.2.2, but its *library* requires the disabled package: X11 - - ConfigFile < 0 # tried ConfigFile-1.1.4, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.20.0.0 - - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires hashable >=1.3 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires template-haskell >=2.10 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 + - ConfigFile < 0 # tried ConfigFile-1.1.4, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.2 + - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.21.2.0 + - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires ghc-prim >=0.3 && < 0.12 and the snapshot contains ghc-prim-0.13.0 + - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires hashable >=1.3 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - Frames < 0 # tried Frames-0.7.4.2, but its *library* requires template-haskell >=2.10 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires gl >=0.8 && < =0.9 and the snapshot contains gl-0.9.1 - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires hashtables >=1.2 && < 1.3 and the snapshot contains hashtables-1.4.2 - - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires linear >=1.18 && < 1.21 and the snapshot contains linear-1.23.1 - - 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.1 - - H < 0 # tried H-1.0.0, but its *executable* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires base >=4.11.0 && < 4.20 and the snapshot contains base-4.20.0.0 - - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires extra >=1.7.9 && < 1.8 and the snapshot contains extra-1.8 - - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires template-haskell >=2.14 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - HaskellNet < 0 # tried HaskellNet-0.6.1.2, but its *library* requires base >=4.3 && < 4.19 and the snapshot contains base-4.20.0.0 - - HaskellNet < 0 # tried HaskellNet-0.6.1.2, but its *library* requires base64 < 0.5 and the snapshot contains base64-1.0 - - HaskellNet < 0 # tried HaskellNet-0.6.1.2, but its *library* requires bytestring >=0.10.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - HaskellNet < 0 # tried HaskellNet-0.6.1.2, but its *library* requires network >=2.6.3.1 && < 3.2 and the snapshot contains network-3.2.7.0 - - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.4.0.2, but its *library* requires the disabled package: HaskellNet + - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires linear >=1.18 && < 1.21 and the snapshot contains linear-1.23.3 + - GPipe < 0 # tried GPipe-2.2.5, but its *library* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - H < 0 # tried H-1.0.0, but its *executable* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires base >=4.11.0 && < 4.20 and the snapshot contains base-4.21.2.0 + - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires extra >=1.7.9 && < 1.8 and the snapshot contains extra-1.8.1 + - HMock < 0 # tried HMock-0.5.1.2, but its *library* requires template-haskell >=2.14 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 + - Hastructure < 0 # tried Hastructure-0.50.4, but its *library* requires generic-lens >=2.2.2 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - Hastructure < 0 # tried Hastructure-0.50.4, but its *library* requires parallel >=3.2.2 && < 3.3 and the snapshot contains parallel-3.3.0.0 + - Hastructure < 0 # tried Hastructure-0.50.4, but its *library* requires swagger2 >=2.8.9 && < 2.9 and the snapshot contains swagger2-2.9 - Hoed < 0 # tried Hoed-0.5.1, but its *library* requires the disabled package: regex-tdfa-text - - Imlib < 0 # tried Imlib-0.1.2, but its *library* requires the disabled package: X11 - - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *executable* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 + - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *executable* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.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.12.1.0 - - 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.5.0.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.11.1 + - 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.12.2.0 + - 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.5.1.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.11.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.2.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.12.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.19.0.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.12.2.0 - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires containers >=0.4.2 && < 0.7 and the snapshot contains containers-0.7 - - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires filepath >=1.4.1.1 && < 1.5 and the snapshot contains filepath-1.5.2.0 + - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* requires filepath >=1.4.1.1 && < 1.5 and the snapshot contains filepath-1.5.5.0 - 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.2.0 - - JuicyPixels-scale-dct < 0 # tried JuicyPixels-scale-dct-0.1.2, but its *library* requires base >=4.7 && < 4.20 and the snapshot contains base-4.20.0.0 - - JuicyPixels-scale-dct < 0 # tried JuicyPixels-scale-dct-0.1.2, but its *library* requires base-compat >=0.6.0 && < 0.14 and the snapshot contains base-compat-0.14.1 - - 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 + - LPFP < 0 # tried LPFP-1.2.1, but its *library* requires the disabled package: diagrams-cairo - Network-NineP < 0 # tried Network-NineP-0.4.7.4, but its *library* requires containers >=0.4.2.1 && < 0.7 and the snapshot contains containers-0.7 - - Network-NineP < 0 # tried Network-NineP-0.4.7.4, but its *library* requires network >=3.0 && < 3.2 and the snapshot contains network-3.2.7.0 - - Rattus < 0 # tried Rattus-0.5.1.1, but its *library* requires ghc >=8.6 && < 9.9 and the snapshot contains ghc-9.10.1 - - SpatialMath < 0 # tried SpatialMath-0.2.7.1, but its *library* requires lens >=5.2.3 && < 5.3 and the snapshot contains lens-5.3.4 - - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core + - Network-NineP < 0 # tried Network-NineP-0.4.7.4, but its *library* requires network >=3.0 && < 3.2 and the snapshot contains network-3.2.8.0 + - Rattus < 0 # tried Rattus-0.5.1.1, but its *library* requires ghc >=8.6 && < 9.9 and the snapshot contains ghc-9.12.4 + - SpatialMath < 0 # tried SpatialMath-0.2.7.1, but its *library* requires lens >=5.2.3 && < 5.3 and the snapshot contains lens-5.3.6 + - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: cryptonite - Spock-api-server < 0 # tried Spock-api-server-0.14.0.0, but its *library* requires the disabled package: Spock-core - - Spock-core < 0 # tried Spock-core-0.14.0.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.1 + - Spock-core < 0 # tried Spock-core-0.14.0.1, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.2 - 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 - - X11 < 0 # tried X11-1.10.3, but its *library* requires data-default-class >=0.1 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - X11-xft < 0 # tried X11-xft-0.3.4, but its *library* requires the disabled package: X11 - - 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.2.3.0 - - 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 aeson >=1.4 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - aeson-commit < 0 # tried aeson-commit-1.6.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.1 - - aeson-extra < 0 # tried aeson-extra-0.5.1.3, but its *library* requires base >=4.7 && < 4.20 and the snapshot contains base-4.20.0.0 + - Unique < 0 # tried Unique-0.4.8.0, but its *library* requires extra >=1.6.2 && < =1.8 and the snapshot contains extra-1.8.1 + - Yampa < 0 # tried Yampa-0.15, but its *library* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 + - aeson-commit < 0 # tried aeson-commit-1.6.0, but its *library* requires aeson >=1.4 && < 2.2 and the snapshot contains aeson-2.2.5.0 + - aeson-commit < 0 # tried aeson-commit-1.6.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.4 + - aeson-extra < 0 # tried aeson-extra-0.5.1.3, but its *library* requires base >=4.7 && < 4.20 and the snapshot contains base-4.21.2.0 - aeson-extra < 0 # tried aeson-extra-0.5.1.3, but its *library* requires base-compat-batteries >=0.11.2 && < 0.14 and the snapshot contains base-compat-batteries-0.14.1 - - aeson-extra < 0 # tried aeson-extra-0.5.1.3, but its *library* requires template-haskell >=2.8 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires aeson >=2.1 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - 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.20.0.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.3.4 + - aeson-extra < 0 # tried aeson-extra-0.5.1.3, but its *library* requires template-haskell >=2.8 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 + - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires aeson >=2.1 && < 2.2 and the snapshot contains aeson-2.2.5.0 + - 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.21.2.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.3.6 - 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.1 - - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.1 - - aeson-optics < 0 # tried aeson-optics-1.2.1, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.20.0.0 - - aeson-picker < 0 # tried aeson-picker-0.1.0.6, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.1 - - airship < 0 # tried airship-0.9.5, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - 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.5.1 - - 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.1.1 - - amazonka < 0 # tried amazonka-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-accessanalyzer < 0 # tried amazonka-accessanalyzer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-account < 0 # tried amazonka-account-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-amp < 0 # tried amazonka-amp-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-amplify < 0 # tried amazonka-amplify-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-amplifybackend < 0 # tried amazonka-amplifybackend-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-amplifyuibuilder < 0 # tried amazonka-amplifyuibuilder-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-apigateway < 0 # tried amazonka-apigateway-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-apigatewaymanagementapi < 0 # tried amazonka-apigatewaymanagementapi-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-apigatewayv2 < 0 # tried amazonka-apigatewayv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-appconfig < 0 # tried amazonka-appconfig-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-appconfigdata < 0 # tried amazonka-appconfigdata-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-appflow < 0 # tried amazonka-appflow-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-appintegrations < 0 # tried amazonka-appintegrations-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-application-autoscaling < 0 # tried amazonka-application-autoscaling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-application-insights < 0 # tried amazonka-application-insights-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-applicationcostprofiler < 0 # tried amazonka-applicationcostprofiler-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-appmesh < 0 # tried amazonka-appmesh-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-apprunner < 0 # tried amazonka-apprunner-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-appstream < 0 # tried amazonka-appstream-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-arc-zonal-shift < 0 # tried amazonka-arc-zonal-shift-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-athena < 0 # tried amazonka-athena-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-auditmanager < 0 # tried amazonka-auditmanager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-autoscaling < 0 # tried amazonka-autoscaling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-backup < 0 # tried amazonka-backup-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-backup-gateway < 0 # tried amazonka-backup-gateway-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-backupstorage < 0 # tried amazonka-backupstorage-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-billingconductor < 0 # tried amazonka-billingconductor-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-braket < 0 # tried amazonka-braket-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-budgets < 0 # tried amazonka-budgets-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-certificatemanager < 0 # tried amazonka-certificatemanager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-chime < 0 # tried amazonka-chime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-chime-sdk-identity < 0 # tried amazonka-chime-sdk-identity-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-chime-sdk-media-pipelines < 0 # tried amazonka-chime-sdk-media-pipelines-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-chime-sdk-meetings < 0 # tried amazonka-chime-sdk-meetings-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-chime-sdk-messaging < 0 # tried amazonka-chime-sdk-messaging-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-chime-sdk-voice < 0 # tried amazonka-chime-sdk-voice-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudcontrol < 0 # tried amazonka-cloudcontrol-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudformation < 0 # tried amazonka-cloudformation-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudfront < 0 # tried amazonka-cloudfront-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudhsm < 0 # tried amazonka-cloudhsm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudsearch < 0 # tried amazonka-cloudsearch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudsearch-domains < 0 # tried amazonka-cloudsearch-domains-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudtrail < 0 # tried amazonka-cloudtrail-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudwatch < 0 # tried amazonka-cloudwatch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudwatch-events < 0 # tried amazonka-cloudwatch-events-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cloudwatch-logs < 0 # tried amazonka-cloudwatch-logs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codeartifact < 0 # tried amazonka-codeartifact-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codebuild < 0 # tried amazonka-codebuild-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codecommit < 0 # tried amazonka-codecommit-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codedeploy < 0 # tried amazonka-codedeploy-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codeguru-reviewer < 0 # tried amazonka-codeguru-reviewer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codeguruprofiler < 0 # tried amazonka-codeguruprofiler-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codepipeline < 0 # tried amazonka-codepipeline-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codestar-connections < 0 # tried amazonka-codestar-connections-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-codestar-notifications < 0 # tried amazonka-codestar-notifications-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cognito-identity < 0 # tried amazonka-cognito-identity-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cognito-idp < 0 # tried amazonka-cognito-idp-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-cognito-sync < 0 # tried amazonka-cognito-sync-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-comprehendmedical < 0 # tried amazonka-comprehendmedical-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-compute-optimizer < 0 # tried amazonka-compute-optimizer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-config < 0 # tried amazonka-config-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-connect-contact-lens < 0 # tried amazonka-connect-contact-lens-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-connectcampaigns < 0 # tried amazonka-connectcampaigns-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-connectcases < 0 # tried amazonka-connectcases-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-connectparticipant < 0 # tried amazonka-connectparticipant-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-controltower < 0 # tried amazonka-controltower-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-core < 0 # tried amazonka-core-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 + - aeson-injector < 0 # tried aeson-injector-2.0.0.0, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.4 + - aeson-optics < 0 # tried aeson-optics-1.2.1, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.21.2.0 + - aeson-picker < 0 # tried aeson-picker-0.1.0.6, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.4 + - airship < 0 # tried airship-0.9.5, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - 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.2 + - airship < 0 # tried airship-0.9.5, but its *library* requires the disabled package: cryptohash + - airship < 0 # tried airship-0.9.5, but its *library* requires unix >=2.7 && < 2.8 and the snapshot contains unix-2.8.8.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.2 + - amazonka < 0 # tried amazonka-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-accessanalyzer < 0 # tried amazonka-accessanalyzer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-account < 0 # tried amazonka-account-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-amp < 0 # tried amazonka-amp-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-amplify < 0 # tried amazonka-amplify-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-amplifybackend < 0 # tried amazonka-amplifybackend-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-amplifyuibuilder < 0 # tried amazonka-amplifyuibuilder-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-apigateway < 0 # tried amazonka-apigateway-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-apigatewaymanagementapi < 0 # tried amazonka-apigatewaymanagementapi-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-apigatewayv2 < 0 # tried amazonka-apigatewayv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-appconfig < 0 # tried amazonka-appconfig-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-appconfigdata < 0 # tried amazonka-appconfigdata-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-appflow < 0 # tried amazonka-appflow-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-appintegrations < 0 # tried amazonka-appintegrations-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-application-autoscaling < 0 # tried amazonka-application-autoscaling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-application-insights < 0 # tried amazonka-application-insights-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-applicationcostprofiler < 0 # tried amazonka-applicationcostprofiler-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-appmesh < 0 # tried amazonka-appmesh-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-apprunner < 0 # tried amazonka-apprunner-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-appstream < 0 # tried amazonka-appstream-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-arc-zonal-shift < 0 # tried amazonka-arc-zonal-shift-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-athena < 0 # tried amazonka-athena-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-auditmanager < 0 # tried amazonka-auditmanager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-autoscaling < 0 # tried amazonka-autoscaling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-backup < 0 # tried amazonka-backup-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-backup-gateway < 0 # tried amazonka-backup-gateway-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-backupstorage < 0 # tried amazonka-backupstorage-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-billingconductor < 0 # tried amazonka-billingconductor-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-braket < 0 # tried amazonka-braket-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-budgets < 0 # tried amazonka-budgets-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-certificatemanager < 0 # tried amazonka-certificatemanager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-chime < 0 # tried amazonka-chime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-chime-sdk-identity < 0 # tried amazonka-chime-sdk-identity-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-chime-sdk-media-pipelines < 0 # tried amazonka-chime-sdk-media-pipelines-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-chime-sdk-meetings < 0 # tried amazonka-chime-sdk-meetings-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-chime-sdk-messaging < 0 # tried amazonka-chime-sdk-messaging-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-chime-sdk-voice < 0 # tried amazonka-chime-sdk-voice-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudcontrol < 0 # tried amazonka-cloudcontrol-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudformation < 0 # tried amazonka-cloudformation-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudfront < 0 # tried amazonka-cloudfront-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudhsm < 0 # tried amazonka-cloudhsm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudsearch < 0 # tried amazonka-cloudsearch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudsearch-domains < 0 # tried amazonka-cloudsearch-domains-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudtrail < 0 # tried amazonka-cloudtrail-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudwatch < 0 # tried amazonka-cloudwatch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudwatch-events < 0 # tried amazonka-cloudwatch-events-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cloudwatch-logs < 0 # tried amazonka-cloudwatch-logs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codeartifact < 0 # tried amazonka-codeartifact-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codebuild < 0 # tried amazonka-codebuild-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codecommit < 0 # tried amazonka-codecommit-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codedeploy < 0 # tried amazonka-codedeploy-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codeguru-reviewer < 0 # tried amazonka-codeguru-reviewer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codeguruprofiler < 0 # tried amazonka-codeguruprofiler-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codepipeline < 0 # tried amazonka-codepipeline-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codestar-connections < 0 # tried amazonka-codestar-connections-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-codestar-notifications < 0 # tried amazonka-codestar-notifications-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cognito-identity < 0 # tried amazonka-cognito-identity-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cognito-idp < 0 # tried amazonka-cognito-idp-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-cognito-sync < 0 # tried amazonka-cognito-sync-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-comprehendmedical < 0 # tried amazonka-comprehendmedical-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-compute-optimizer < 0 # tried amazonka-compute-optimizer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-config < 0 # tried amazonka-config-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-connect-contact-lens < 0 # tried amazonka-connect-contact-lens-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-connectcampaigns < 0 # tried amazonka-connectcampaigns-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-connectcases < 0 # tried amazonka-connectcases-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-connectparticipant < 0 # tried amazonka-connectparticipant-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-controltower < 0 # tried amazonka-controltower-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-core < 0 # tried amazonka-core-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 - amazonka-core < 0 # tried amazonka-core-2.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - amazonka-customer-profiles < 0 # tried amazonka-customer-profiles-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-databrew < 0 # tried amazonka-databrew-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-dataexchange < 0 # tried amazonka-dataexchange-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-datapipeline < 0 # tried amazonka-datapipeline-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-datasync < 0 # tried amazonka-datasync-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-detective < 0 # tried amazonka-detective-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-devicefarm < 0 # tried amazonka-devicefarm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-devops-guru < 0 # tried amazonka-devops-guru-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-directconnect < 0 # tried amazonka-directconnect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-discovery < 0 # tried amazonka-discovery-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-dlm < 0 # tried amazonka-dlm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-dms < 0 # tried amazonka-dms-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-docdb < 0 # tried amazonka-docdb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-docdb-elastic < 0 # tried amazonka-docdb-elastic-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-drs < 0 # tried amazonka-drs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ds < 0 # tried amazonka-ds-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-dynamodb < 0 # tried amazonka-dynamodb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-dynamodb < 0 # tried amazonka-dynamodb-2.0, but its *library* requires hashable >=1.3.4.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-2.0, but its *library* requires hashable >=1.3.4.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - amazonka-ebs < 0 # tried amazonka-ebs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ec2 < 0 # tried amazonka-ec2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ec2-instance-connect < 0 # tried amazonka-ec2-instance-connect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ecr < 0 # tried amazonka-ecr-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ecr-public < 0 # tried amazonka-ecr-public-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ecs < 0 # tried amazonka-ecs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-efs < 0 # tried amazonka-efs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-eks < 0 # tried amazonka-eks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elastic-inference < 0 # tried amazonka-elastic-inference-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elasticache < 0 # tried amazonka-elasticache-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elasticbeanstalk < 0 # tried amazonka-elasticbeanstalk-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elasticsearch < 0 # tried amazonka-elasticsearch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elastictranscoder < 0 # tried amazonka-elastictranscoder-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elb < 0 # tried amazonka-elb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-elbv2 < 0 # tried amazonka-elbv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-emr < 0 # tried amazonka-emr-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-emr-containers < 0 # tried amazonka-emr-containers-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-emr-serverless < 0 # tried amazonka-emr-serverless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-evidently < 0 # tried amazonka-evidently-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-finspace < 0 # tried amazonka-finspace-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-finspace-data < 0 # tried amazonka-finspace-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-fis < 0 # tried amazonka-fis-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-forecast < 0 # tried amazonka-forecast-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-forecastquery < 0 # tried amazonka-forecastquery-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-frauddetector < 0 # tried amazonka-frauddetector-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-fsx < 0 # tried amazonka-fsx-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-gamelift < 0 # tried amazonka-gamelift-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-gamesparks < 0 # tried amazonka-gamesparks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-glacier < 0 # tried amazonka-glacier-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-globalaccelerator < 0 # tried amazonka-globalaccelerator-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-glue < 0 # tried amazonka-glue-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-grafana < 0 # tried amazonka-grafana-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-greengrassv2 < 0 # tried amazonka-greengrassv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-groundstation < 0 # tried amazonka-groundstation-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-health < 0 # tried amazonka-health-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-healthlake < 0 # tried amazonka-healthlake-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-honeycode < 0 # tried amazonka-honeycode-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iam < 0 # tried amazonka-iam-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-identitystore < 0 # tried amazonka-identitystore-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-imagebuilder < 0 # tried amazonka-imagebuilder-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-importexport < 0 # tried amazonka-importexport-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-inspector < 0 # tried amazonka-inspector-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-inspector2 < 0 # tried amazonka-inspector2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iot < 0 # tried amazonka-iot-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iot-dataplane < 0 # tried amazonka-iot-dataplane-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iot-roborunner < 0 # tried amazonka-iot-roborunner-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iot1click-devices < 0 # tried amazonka-iot1click-devices-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iot1click-projects < 0 # tried amazonka-iot1click-projects-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotdeviceadvisor < 0 # tried amazonka-iotdeviceadvisor-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotevents < 0 # tried amazonka-iotevents-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotevents-data < 0 # tried amazonka-iotevents-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotfleethub < 0 # tried amazonka-iotfleethub-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotfleetwise < 0 # tried amazonka-iotfleetwise-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotsecuretunneling < 0 # tried amazonka-iotsecuretunneling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotsitewise < 0 # tried amazonka-iotsitewise-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotthingsgraph < 0 # tried amazonka-iotthingsgraph-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iottwinmaker < 0 # tried amazonka-iottwinmaker-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-iotwireless < 0 # tried amazonka-iotwireless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ivs < 0 # tried amazonka-ivs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ivschat < 0 # tried amazonka-ivschat-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kafka < 0 # tried amazonka-kafka-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kafkaconnect < 0 # tried amazonka-kafkaconnect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kendra < 0 # tried amazonka-kendra-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-keyspaces < 0 # tried amazonka-keyspaces-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kinesis < 0 # tried amazonka-kinesis-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kinesis-analytics < 0 # tried amazonka-kinesis-analytics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kinesis-firehose < 0 # tried amazonka-kinesis-firehose-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kinesis-video-signaling < 0 # tried amazonka-kinesis-video-signaling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kinesis-video-webrtc-storage < 0 # tried amazonka-kinesis-video-webrtc-storage-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kinesisanalyticsv2 < 0 # tried amazonka-kinesisanalyticsv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-kms < 0 # tried amazonka-kms-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lakeformation < 0 # tried amazonka-lakeformation-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lambda < 0 # tried amazonka-lambda-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lexv2-models < 0 # tried amazonka-lexv2-models-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-license-manager < 0 # tried amazonka-license-manager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-license-manager-linux-subscriptions < 0 # tried amazonka-license-manager-linux-subscriptions-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-license-manager-user-subscriptions < 0 # tried amazonka-license-manager-user-subscriptions-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lightsail < 0 # tried amazonka-lightsail-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-location < 0 # tried amazonka-location-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lookoutequipment < 0 # tried amazonka-lookoutequipment-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lookoutmetrics < 0 # tried amazonka-lookoutmetrics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-lookoutvision < 0 # tried amazonka-lookoutvision-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-m2 < 0 # tried amazonka-m2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-macie < 0 # tried amazonka-macie-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-maciev2 < 0 # tried amazonka-maciev2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-managedblockchain < 0 # tried amazonka-managedblockchain-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-marketplace-analytics < 0 # tried amazonka-marketplace-analytics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-marketplace-catalog < 0 # tried amazonka-marketplace-catalog-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-marketplace-metering < 0 # tried amazonka-marketplace-metering-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-mediaconnect < 0 # tried amazonka-mediaconnect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-mediapackage-vod < 0 # tried amazonka-mediapackage-vod-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-mediatailor < 0 # tried amazonka-mediatailor-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-memorydb < 0 # tried amazonka-memorydb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-mgn < 0 # tried amazonka-mgn-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-migration-hub-refactor-spaces < 0 # tried amazonka-migration-hub-refactor-spaces-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-migrationhub-config < 0 # tried amazonka-migrationhub-config-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-migrationhuborchestrator < 0 # tried amazonka-migrationhuborchestrator-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-migrationhubstrategy < 0 # tried amazonka-migrationhubstrategy-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ml < 0 # tried amazonka-ml-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-mwaa < 0 # tried amazonka-mwaa-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-neptune < 0 # tried amazonka-neptune-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-network-firewall < 0 # tried amazonka-network-firewall-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-networkmanager < 0 # tried amazonka-networkmanager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-nimble < 0 # tried amazonka-nimble-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-oam < 0 # tried amazonka-oam-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-omics < 0 # tried amazonka-omics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-opensearch < 0 # tried amazonka-opensearch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-opensearchserverless < 0 # tried amazonka-opensearchserverless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-opsworks < 0 # tried amazonka-opsworks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-opsworks-cm < 0 # tried amazonka-opsworks-cm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-outposts < 0 # tried amazonka-outposts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-panorama < 0 # tried amazonka-panorama-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-personalize < 0 # tried amazonka-personalize-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-personalize-events < 0 # tried amazonka-personalize-events-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-personalize-runtime < 0 # tried amazonka-personalize-runtime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-pi < 0 # tried amazonka-pi-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-pinpoint < 0 # tried amazonka-pinpoint-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-pinpoint-email < 0 # tried amazonka-pinpoint-email-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-pinpoint-sms-voice < 0 # tried amazonka-pinpoint-sms-voice-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-pinpoint-sms-voice-v2 < 0 # tried amazonka-pinpoint-sms-voice-v2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-pipes < 0 # tried amazonka-pipes-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-polly < 0 # tried amazonka-polly-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-privatenetworks < 0 # tried amazonka-privatenetworks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-proton < 0 # tried amazonka-proton-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-qldb < 0 # tried amazonka-qldb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-qldb-session < 0 # tried amazonka-qldb-session-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-quicksight < 0 # tried amazonka-quicksight-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ram < 0 # tried amazonka-ram-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-rbin < 0 # tried amazonka-rbin-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-rds < 0 # tried amazonka-rds-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-rds-data < 0 # tried amazonka-rds-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-redshift < 0 # tried amazonka-redshift-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-redshift-data < 0 # tried amazonka-redshift-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-redshift-serverless < 0 # tried amazonka-redshift-serverless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-rekognition < 0 # tried amazonka-rekognition-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-resiliencehub < 0 # tried amazonka-resiliencehub-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-resource-explorer-v2 < 0 # tried amazonka-resource-explorer-v2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-robomaker < 0 # tried amazonka-robomaker-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-rolesanywhere < 0 # tried amazonka-rolesanywhere-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-route53 < 0 # tried amazonka-route53-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-route53-domains < 0 # tried amazonka-route53-domains-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-route53-recovery-cluster < 0 # tried amazonka-route53-recovery-cluster-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-route53-recovery-control-config < 0 # tried amazonka-route53-recovery-control-config-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-route53-recovery-readiness < 0 # tried amazonka-route53-recovery-readiness-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-route53resolver < 0 # tried amazonka-route53resolver-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-rum < 0 # tried amazonka-rum-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-s3 < 0 # tried amazonka-s3-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-s3outposts < 0 # tried amazonka-s3outposts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sagemaker-a2i-runtime < 0 # tried amazonka-sagemaker-a2i-runtime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sagemaker-edge < 0 # tried amazonka-sagemaker-edge-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sagemaker-featurestore-runtime < 0 # tried amazonka-sagemaker-featurestore-runtime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sagemaker-geospatial < 0 # tried amazonka-sagemaker-geospatial-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sagemaker-metrics < 0 # tried amazonka-sagemaker-metrics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-savingsplans < 0 # tried amazonka-savingsplans-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-scheduler < 0 # tried amazonka-scheduler-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-schemas < 0 # tried amazonka-schemas-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sdb < 0 # tried amazonka-sdb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-securityhub < 0 # tried amazonka-securityhub-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-securitylake < 0 # tried amazonka-securitylake-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-service-quotas < 0 # tried amazonka-service-quotas-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-servicecatalog < 0 # tried amazonka-servicecatalog-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-servicecatalog-appregistry < 0 # tried amazonka-servicecatalog-appregistry-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ses < 0 # tried amazonka-ses-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sesv2 < 0 # tried amazonka-sesv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-shield < 0 # tried amazonka-shield-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-signer < 0 # tried amazonka-signer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-simspaceweaver < 0 # tried amazonka-simspaceweaver-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sms < 0 # tried amazonka-sms-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sms-voice < 0 # tried amazonka-sms-voice-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-snow-device-management < 0 # tried amazonka-snow-device-management-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-snowball < 0 # tried amazonka-snowball-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sns < 0 # tried amazonka-sns-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sqs < 0 # tried amazonka-sqs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ssm < 0 # tried amazonka-ssm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ssm-contacts < 0 # tried amazonka-ssm-contacts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ssm-incidents < 0 # tried amazonka-ssm-incidents-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-ssm-sap < 0 # tried amazonka-ssm-sap-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sso < 0 # tried amazonka-sso-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sso-admin < 0 # tried amazonka-sso-admin-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sso-oidc < 0 # tried amazonka-sso-oidc-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-stepfunctions < 0 # tried amazonka-stepfunctions-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-storagegateway < 0 # tried amazonka-storagegateway-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-sts < 0 # tried amazonka-sts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-support < 0 # tried amazonka-support-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-support-app < 0 # tried amazonka-support-app-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-swf < 0 # tried amazonka-swf-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-synthetics < 0 # tried amazonka-synthetics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 + - amazonka-customer-profiles < 0 # tried amazonka-customer-profiles-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-databrew < 0 # tried amazonka-databrew-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-dataexchange < 0 # tried amazonka-dataexchange-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-datapipeline < 0 # tried amazonka-datapipeline-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-datasync < 0 # tried amazonka-datasync-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-detective < 0 # tried amazonka-detective-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-devicefarm < 0 # tried amazonka-devicefarm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-devops-guru < 0 # tried amazonka-devops-guru-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-directconnect < 0 # tried amazonka-directconnect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-discovery < 0 # tried amazonka-discovery-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-dlm < 0 # tried amazonka-dlm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-dms < 0 # tried amazonka-dms-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-docdb < 0 # tried amazonka-docdb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-docdb-elastic < 0 # tried amazonka-docdb-elastic-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-drs < 0 # tried amazonka-drs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ds < 0 # tried amazonka-ds-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-dynamodb < 0 # tried amazonka-dynamodb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-dynamodb < 0 # tried amazonka-dynamodb-2.0, but its *library* requires hashable >=1.3.4.0 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-dynamodb-streams < 0 # tried amazonka-dynamodb-streams-2.0, but its *library* requires hashable >=1.3.4.0 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - amazonka-ebs < 0 # tried amazonka-ebs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ec2 < 0 # tried amazonka-ec2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ec2-instance-connect < 0 # tried amazonka-ec2-instance-connect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ecr < 0 # tried amazonka-ecr-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ecr-public < 0 # tried amazonka-ecr-public-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ecs < 0 # tried amazonka-ecs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-efs < 0 # tried amazonka-efs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-eks < 0 # tried amazonka-eks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elastic-inference < 0 # tried amazonka-elastic-inference-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elasticache < 0 # tried amazonka-elasticache-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elasticbeanstalk < 0 # tried amazonka-elasticbeanstalk-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elasticsearch < 0 # tried amazonka-elasticsearch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elastictranscoder < 0 # tried amazonka-elastictranscoder-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elb < 0 # tried amazonka-elb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-elbv2 < 0 # tried amazonka-elbv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-emr < 0 # tried amazonka-emr-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-emr-containers < 0 # tried amazonka-emr-containers-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-emr-serverless < 0 # tried amazonka-emr-serverless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-evidently < 0 # tried amazonka-evidently-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-finspace < 0 # tried amazonka-finspace-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-finspace-data < 0 # tried amazonka-finspace-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-fis < 0 # tried amazonka-fis-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-forecast < 0 # tried amazonka-forecast-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-forecastquery < 0 # tried amazonka-forecastquery-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-frauddetector < 0 # tried amazonka-frauddetector-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-fsx < 0 # tried amazonka-fsx-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-gamelift < 0 # tried amazonka-gamelift-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-gamesparks < 0 # tried amazonka-gamesparks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-glacier < 0 # tried amazonka-glacier-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-globalaccelerator < 0 # tried amazonka-globalaccelerator-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-glue < 0 # tried amazonka-glue-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-grafana < 0 # tried amazonka-grafana-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-greengrassv2 < 0 # tried amazonka-greengrassv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-groundstation < 0 # tried amazonka-groundstation-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-health < 0 # tried amazonka-health-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-healthlake < 0 # tried amazonka-healthlake-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-honeycode < 0 # tried amazonka-honeycode-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iam < 0 # tried amazonka-iam-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-identitystore < 0 # tried amazonka-identitystore-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-imagebuilder < 0 # tried amazonka-imagebuilder-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-importexport < 0 # tried amazonka-importexport-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-inspector < 0 # tried amazonka-inspector-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-inspector2 < 0 # tried amazonka-inspector2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iot < 0 # tried amazonka-iot-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iot-dataplane < 0 # tried amazonka-iot-dataplane-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iot-roborunner < 0 # tried amazonka-iot-roborunner-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iot1click-devices < 0 # tried amazonka-iot1click-devices-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iot1click-projects < 0 # tried amazonka-iot1click-projects-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotdeviceadvisor < 0 # tried amazonka-iotdeviceadvisor-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotevents < 0 # tried amazonka-iotevents-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotevents-data < 0 # tried amazonka-iotevents-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotfleethub < 0 # tried amazonka-iotfleethub-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotfleetwise < 0 # tried amazonka-iotfleetwise-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotsecuretunneling < 0 # tried amazonka-iotsecuretunneling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotsitewise < 0 # tried amazonka-iotsitewise-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotthingsgraph < 0 # tried amazonka-iotthingsgraph-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iottwinmaker < 0 # tried amazonka-iottwinmaker-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-iotwireless < 0 # tried amazonka-iotwireless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ivs < 0 # tried amazonka-ivs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ivschat < 0 # tried amazonka-ivschat-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kafka < 0 # tried amazonka-kafka-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kafkaconnect < 0 # tried amazonka-kafkaconnect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kendra < 0 # tried amazonka-kendra-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-keyspaces < 0 # tried amazonka-keyspaces-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kinesis < 0 # tried amazonka-kinesis-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kinesis-analytics < 0 # tried amazonka-kinesis-analytics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kinesis-firehose < 0 # tried amazonka-kinesis-firehose-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kinesis-video-signaling < 0 # tried amazonka-kinesis-video-signaling-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kinesis-video-webrtc-storage < 0 # tried amazonka-kinesis-video-webrtc-storage-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kinesisanalyticsv2 < 0 # tried amazonka-kinesisanalyticsv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-kms < 0 # tried amazonka-kms-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lakeformation < 0 # tried amazonka-lakeformation-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lambda < 0 # tried amazonka-lambda-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lexv2-models < 0 # tried amazonka-lexv2-models-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-license-manager < 0 # tried amazonka-license-manager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-license-manager-linux-subscriptions < 0 # tried amazonka-license-manager-linux-subscriptions-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-license-manager-user-subscriptions < 0 # tried amazonka-license-manager-user-subscriptions-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lightsail < 0 # tried amazonka-lightsail-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-location < 0 # tried amazonka-location-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lookoutequipment < 0 # tried amazonka-lookoutequipment-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lookoutmetrics < 0 # tried amazonka-lookoutmetrics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-lookoutvision < 0 # tried amazonka-lookoutvision-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-m2 < 0 # tried amazonka-m2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-macie < 0 # tried amazonka-macie-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-maciev2 < 0 # tried amazonka-maciev2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-managedblockchain < 0 # tried amazonka-managedblockchain-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-marketplace-analytics < 0 # tried amazonka-marketplace-analytics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-marketplace-catalog < 0 # tried amazonka-marketplace-catalog-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-marketplace-metering < 0 # tried amazonka-marketplace-metering-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-mediaconnect < 0 # tried amazonka-mediaconnect-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-mediapackage-vod < 0 # tried amazonka-mediapackage-vod-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-mediatailor < 0 # tried amazonka-mediatailor-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-memorydb < 0 # tried amazonka-memorydb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-mgn < 0 # tried amazonka-mgn-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-migration-hub-refactor-spaces < 0 # tried amazonka-migration-hub-refactor-spaces-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-migrationhub-config < 0 # tried amazonka-migrationhub-config-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-migrationhuborchestrator < 0 # tried amazonka-migrationhuborchestrator-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-migrationhubstrategy < 0 # tried amazonka-migrationhubstrategy-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ml < 0 # tried amazonka-ml-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-mwaa < 0 # tried amazonka-mwaa-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-neptune < 0 # tried amazonka-neptune-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-network-firewall < 0 # tried amazonka-network-firewall-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-networkmanager < 0 # tried amazonka-networkmanager-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-nimble < 0 # tried amazonka-nimble-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-oam < 0 # tried amazonka-oam-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-omics < 0 # tried amazonka-omics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-opensearch < 0 # tried amazonka-opensearch-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-opensearchserverless < 0 # tried amazonka-opensearchserverless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-opsworks < 0 # tried amazonka-opsworks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-opsworks-cm < 0 # tried amazonka-opsworks-cm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-outposts < 0 # tried amazonka-outposts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-panorama < 0 # tried amazonka-panorama-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-personalize < 0 # tried amazonka-personalize-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-personalize-events < 0 # tried amazonka-personalize-events-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-personalize-runtime < 0 # tried amazonka-personalize-runtime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-pi < 0 # tried amazonka-pi-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-pinpoint < 0 # tried amazonka-pinpoint-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-pinpoint-email < 0 # tried amazonka-pinpoint-email-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-pinpoint-sms-voice < 0 # tried amazonka-pinpoint-sms-voice-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-pinpoint-sms-voice-v2 < 0 # tried amazonka-pinpoint-sms-voice-v2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-pipes < 0 # tried amazonka-pipes-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-polly < 0 # tried amazonka-polly-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-privatenetworks < 0 # tried amazonka-privatenetworks-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-proton < 0 # tried amazonka-proton-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-qldb < 0 # tried amazonka-qldb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-qldb-session < 0 # tried amazonka-qldb-session-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-quicksight < 0 # tried amazonka-quicksight-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ram < 0 # tried amazonka-ram-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-rbin < 0 # tried amazonka-rbin-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-rds < 0 # tried amazonka-rds-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-rds-data < 0 # tried amazonka-rds-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-redshift < 0 # tried amazonka-redshift-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-redshift-data < 0 # tried amazonka-redshift-data-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-redshift-serverless < 0 # tried amazonka-redshift-serverless-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-rekognition < 0 # tried amazonka-rekognition-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-resiliencehub < 0 # tried amazonka-resiliencehub-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-resource-explorer-v2 < 0 # tried amazonka-resource-explorer-v2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-robomaker < 0 # tried amazonka-robomaker-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-rolesanywhere < 0 # tried amazonka-rolesanywhere-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-route53 < 0 # tried amazonka-route53-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-route53-domains < 0 # tried amazonka-route53-domains-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-route53-recovery-cluster < 0 # tried amazonka-route53-recovery-cluster-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-route53-recovery-control-config < 0 # tried amazonka-route53-recovery-control-config-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-route53-recovery-readiness < 0 # tried amazonka-route53-recovery-readiness-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-route53resolver < 0 # tried amazonka-route53resolver-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-rum < 0 # tried amazonka-rum-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-s3 < 0 # tried amazonka-s3-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-s3outposts < 0 # tried amazonka-s3outposts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sagemaker-a2i-runtime < 0 # tried amazonka-sagemaker-a2i-runtime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sagemaker-edge < 0 # tried amazonka-sagemaker-edge-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sagemaker-featurestore-runtime < 0 # tried amazonka-sagemaker-featurestore-runtime-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sagemaker-geospatial < 0 # tried amazonka-sagemaker-geospatial-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sagemaker-metrics < 0 # tried amazonka-sagemaker-metrics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-savingsplans < 0 # tried amazonka-savingsplans-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-scheduler < 0 # tried amazonka-scheduler-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-schemas < 0 # tried amazonka-schemas-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sdb < 0 # tried amazonka-sdb-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-securityhub < 0 # tried amazonka-securityhub-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-securitylake < 0 # tried amazonka-securitylake-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-service-quotas < 0 # tried amazonka-service-quotas-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-servicecatalog < 0 # tried amazonka-servicecatalog-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-servicecatalog-appregistry < 0 # tried amazonka-servicecatalog-appregistry-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ses < 0 # tried amazonka-ses-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sesv2 < 0 # tried amazonka-sesv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-shield < 0 # tried amazonka-shield-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-signer < 0 # tried amazonka-signer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-simspaceweaver < 0 # tried amazonka-simspaceweaver-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sms < 0 # tried amazonka-sms-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sms-voice < 0 # tried amazonka-sms-voice-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-snow-device-management < 0 # tried amazonka-snow-device-management-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-snowball < 0 # tried amazonka-snowball-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sns < 0 # tried amazonka-sns-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sqs < 0 # tried amazonka-sqs-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ssm < 0 # tried amazonka-ssm-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ssm-contacts < 0 # tried amazonka-ssm-contacts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ssm-incidents < 0 # tried amazonka-ssm-incidents-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-ssm-sap < 0 # tried amazonka-ssm-sap-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sso < 0 # tried amazonka-sso-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sso-admin < 0 # tried amazonka-sso-admin-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sso-oidc < 0 # tried amazonka-sso-oidc-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-stepfunctions < 0 # tried amazonka-stepfunctions-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-storagegateway < 0 # tried amazonka-storagegateway-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-sts < 0 # tried amazonka-sts-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-support < 0 # tried amazonka-support-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-support-app < 0 # tried amazonka-support-app-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-swf < 0 # tried amazonka-swf-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-synthetics < 0 # tried amazonka-synthetics-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 - amazonka-test < 0 # tried amazonka-test-2.0, but its *library* requires the disabled package: amazonka-core - - amazonka-textract < 0 # tried amazonka-textract-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-timestream-query < 0 # tried amazonka-timestream-query-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-timestream-write < 0 # tried amazonka-timestream-write-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-transfer < 0 # tried amazonka-transfer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-voice-id < 0 # tried amazonka-voice-id-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-waf < 0 # tried amazonka-waf-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-wafv2 < 0 # tried amazonka-wafv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-wellarchitected < 0 # tried amazonka-wellarchitected-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-wisdom < 0 # tried amazonka-wisdom-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-worklink < 0 # tried amazonka-worklink-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-workmailmessageflow < 0 # tried amazonka-workmailmessageflow-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-workspaces < 0 # tried amazonka-workspaces-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-workspaces-web < 0 # tried amazonka-workspaces-web-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - amazonka-xray < 0 # tried amazonka-xray-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.20.0.0 - - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.1.1 - - 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 - - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: protolude + - amazonka-textract < 0 # tried amazonka-textract-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-timestream-query < 0 # tried amazonka-timestream-query-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-timestream-write < 0 # tried amazonka-timestream-write-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-transfer < 0 # tried amazonka-transfer-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-voice-id < 0 # tried amazonka-voice-id-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-waf < 0 # tried amazonka-waf-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-wafv2 < 0 # tried amazonka-wafv2-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-wellarchitected < 0 # tried amazonka-wellarchitected-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-wisdom < 0 # tried amazonka-wisdom-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-worklink < 0 # tried amazonka-worklink-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-workmailmessageflow < 0 # tried amazonka-workmailmessageflow-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-workspaces < 0 # tried amazonka-workspaces-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-workspaces-web < 0 # tried amazonka-workspaces-web-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - amazonka-xray < 0 # tried amazonka-xray-2.0, but its *library* requires base >=4.12 && < 4.19 and the snapshot contains base-4.21.2.0 + - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - animalcase < 0 # tried animalcase-0.1.0.2, but its *library* requires text >=1.0 && < 1.3 and the snapshot contains text-2.1.4 + - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* requires base >=4.6 && < 4.21 and the snapshot contains base-4.21.2.0 + - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: cryptonite - app-settings < 0 # tried app-settings-0.2.0.12, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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 - - apply-refact < 0 # tried apply-refact-0.15.0.0, but its *library* requires the disabled package: ghc-exactprint + - 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.2 - arbor-lru-cache < 0 # tried arbor-lru-cache-0.1.1.1, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires lens >=4.16 && < 5 and the snapshot contains lens-5.3.4 - - 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.1.1 - - arbtt < 0 # tried arbtt-0.12.0.3, but its *executable* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires lens >=4.16 && < 5 and the snapshot contains lens-5.3.6 + - 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.19.0.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.1 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.4 + - 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 containers >=0.6.0 && < 0.7 and the snapshot contains containers-0.7 - - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 + - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.2 - 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.22.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.1 - - ascii < 0 # tried ascii-1.7.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-case < 0 # tried ascii-case-1.0.1.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-case < 0 # tried ascii-case-1.0.1.4, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.0.0 - - ascii-caseless < 0 # tried ascii-caseless-0.0.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-caseless < 0 # tried ascii-caseless-0.0.0.2, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.0.0 - - ascii-char < 0 # tried ascii-char-1.0.1.0, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-char < 0 # tried ascii-char-1.0.1.0, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.0.0 - - ascii-group < 0 # tried ascii-group-1.0.0.17, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-group < 0 # tried ascii-group-1.0.0.17, but its *library* requires hashable ^>=1.4.0 and the snapshot contains hashable-1.5.0.0 - - ascii-numbers < 0 # tried ascii-numbers-1.2.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-numbers < 0 # tried ascii-numbers-1.2.0.2, but its *library* requires hashable ^>=1.4 and the snapshot contains hashable-1.5.0.0 - - ascii-predicates < 0 # tried ascii-predicates-1.0.1.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-superset < 0 # tried ascii-superset-1.3.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-superset < 0 # tried ascii-superset-1.3.0.2, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.0.0 - - ascii-th < 0 # tried ascii-th-1.2.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - ascii-th < 0 # tried ascii-th-1.2.0.2, but its *library* requires template-haskell ^>=2.18 || ^>=2.19 || ^>=2.20 || ^>=2.21 and the snapshot contains template-haskell-2.22.0.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.1.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.23.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.3.0 + - ascii < 0 # tried ascii-1.7.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-case < 0 # tried ascii-case-1.0.1.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-case < 0 # tried ascii-case-1.0.1.4, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.1.0 + - ascii-caseless < 0 # tried ascii-caseless-0.0.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-caseless < 0 # tried ascii-caseless-0.0.0.2, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.1.0 + - ascii-group < 0 # tried ascii-group-1.0.0.17, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-group < 0 # tried ascii-group-1.0.0.17, but its *library* requires hashable ^>=1.4.0 and the snapshot contains hashable-1.5.1.0 + - ascii-numbers < 0 # tried ascii-numbers-1.2.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-numbers < 0 # tried ascii-numbers-1.2.0.2, but its *library* requires hashable ^>=1.4 and the snapshot contains hashable-1.5.1.0 + - ascii-predicates < 0 # tried ascii-predicates-1.0.1.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-superset < 0 # tried ascii-superset-1.3.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-superset < 0 # tried ascii-superset-1.3.0.2, but its *library* requires hashable ^>=1.3.5 || ^>=1.4 and the snapshot contains hashable-1.5.1.0 + - ascii-th < 0 # tried ascii-th-1.2.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - ascii-th < 0 # tried ascii-th-1.2.0.2, but its *library* requires template-haskell ^>=2.18 || ^>=2.19 || ^>=2.20 || ^>=2.21 and the snapshot contains template-haskell-2.23.0.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.2 + - asciidiagram < 0 # tried asciidiagram-1.3.3.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.4 - 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 - - attoparsec-run < 0 # tried attoparsec-run-0.0.2.0, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.20.0.0 - - attoparsec-run < 0 # tried attoparsec-run-0.0.2.0, but its *library* requires bytestring ^>=0.10.12 || ^>=0.11 and the snapshot contains bytestring-0.12.1.0 - - attoparsec-run < 0 # tried attoparsec-run-0.0.2.0, but its *library* requires text ^>=1.2.4 || ^>=2.0 and the snapshot contains text-2.1.1 - - aur < 0 # tried aur-7.0.7, but its *library* requires aeson >=0.9 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - aur < 0 # tried aur-7.0.7, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 - - aura < 0 # tried aura-3.2.10, 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.10, but its *library* requires bytestring ^>=0.11 and the snapshot contains bytestring-0.12.1.0 + - attoparsec-run < 0 # tried attoparsec-run-0.0.2.0, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.21.2.0 + - attoparsec-run < 0 # tried attoparsec-run-0.0.2.0, but its *library* requires bytestring ^>=0.10.12 || ^>=0.11 and the snapshot contains bytestring-0.12.2.0 + - attoparsec-run < 0 # tried attoparsec-run-0.0.2.0, but its *library* requires text ^>=1.2.4 || ^>=2.0 and the snapshot contains text-2.1.4 + - aur < 0 # tried aur-7.0.7, but its *library* requires aeson >=0.9 && < 2.2 and the snapshot contains aeson-2.2.5.0 + - aur < 0 # tried aur-7.0.7, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.4 + - aura < 0 # tried aura-3.2.10, but its *executable* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.19.0.0 + - aura < 0 # tried aura-3.2.10, but its *library* requires algebraic-graphs >=0.1 && < 0.8 and the snapshot contains algebraic-graphs-0.8 + - aura < 0 # tried aura-3.2.10, but its *library* requires bytestring ^>=0.11 and the snapshot contains bytestring-0.12.2.0 - aura < 0 # tried aura-3.2.10, but its *library* requires containers ^>=0.6 and the snapshot contains containers-0.7 - - aura < 0 # tried aura-3.2.10, but its *library* requires filepath ^>=1.4 and the snapshot contains filepath-1.5.2.0 - - aura < 0 # tried aura-3.2.10, but its *library* requires hashable ^>=1.4 and the snapshot contains hashable-1.5.0.0 + - aura < 0 # tried aura-3.2.10, but its *library* requires filepath ^>=1.4 and the snapshot contains filepath-1.5.5.0 + - aura < 0 # tried aura-3.2.10, but its *library* requires hashable ^>=1.4 and the snapshot contains hashable-1.5.1.0 - aura < 0 # tried aura-3.2.10, but its *library* requires language-bash >=0.8 && < 0.10 and the snapshot contains language-bash-0.11.1 - - aura < 0 # tried aura-3.2.10, but its *library* requires text >=1.2 && < 1.3 || ^>=2.0 and the snapshot contains text-2.1.1 - - aura < 0 # tried aura-3.2.10, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.1.1 - - aura < 0 # tried aura-3.2.10, but its *library* requires unix ^>=2.7.2.2 and the snapshot contains unix-2.8.5.1 - - autodocodec-openapi3 < 0 # tried autodocodec-openapi3-0.2.1.4, but its *library* requires the disabled package: insert-ordered-containers - - autodocodec-openapi3 < 0 # tried autodocodec-openapi3-0.2.1.4, but its *library* requires the disabled package: openapi3 - - autodocodec-swagger2 < 0 # tried autodocodec-swagger2-0.1.0.0, but its *library* requires the disabled package: insert-ordered-containers - - avwx < 0 # tried avwx-0.3.0.3, but its *library* requires lens >=4.1 && < 5 and the snapshot contains lens-5.3.4 - - 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.1.1 - - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 + - aura < 0 # tried aura-3.2.10, but its *library* requires text >=1.2 && < 1.3 || ^>=2.0 and the snapshot contains text-2.1.4 + - aura < 0 # tried aura-3.2.10, but its *library* requires time >=1.8 && < 1.13 and the snapshot contains time-1.14 + - aura < 0 # tried aura-3.2.10, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.3.0 + - aura < 0 # tried aura-3.2.10, but its *library* requires unix ^>=2.7.2.2 and the snapshot contains unix-2.8.8.0 + - avwx < 0 # tried avwx-0.3.0.3, but its *library* requires lens >=4.1 && < 5 and the snapshot contains lens-5.3.6 + - 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.1.4 + - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires cookie ^>=0.4.5 and the snapshot contains cookie-0.5.1 - - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires lens ^>=5.0.1 || ^>=5.1 || ^>=5.2 and the snapshot contains lens-5.3.4 - - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient - - barrier < 0 # tried barrier-0.1.1, but its *library* requires text >=1.1 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.1 - - 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.20.0.0 + - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires lens ^>=5.0.1 || ^>=5.1 || ^>=5.2 and the snapshot contains lens-5.3.6 + - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires optparse-applicative ^>=0.16.1 || ^>=0.17 || ^>=0.18 and the snapshot contains optparse-applicative-0.19.0.0 + - aws-cloudfront-signed-cookies < 0 # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *library* requires time ^>=1.9.3 || ^>=1.10 || ^>=1.11 || ^>=1.12 and the snapshot contains time-1.14 + - barrier < 0 # tried barrier-0.1.1, but its *library* requires text >=1.1 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.4 + - 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.21.2.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.12.1.0 - - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires lens >=4 && < 5.1 and the snapshot contains lens-5.3.4 - - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 - - base32 < 0 # tried base32-0.4, but its *library* requires base >=4.15 && < 4.20 and the snapshot contains base-4.20.0.0 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.12.2.0 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires lens >=4 && < 5.1 and the snapshot contains lens-5.3.6 + - base16-lens < 0 # tried base16-lens-0.1.3.2, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.4 - 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.12.1.0 - - 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.3.4 - - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 - - base64-bytestring-type < 0 # tried base64-bytestring-type-1.0.1, but its *library* requires base-compat >=0.9.3 && < 0.14 and the snapshot contains base-compat-0.14.1 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires base >=4.14 && < 4.17 and the snapshot contains base-4.20.0.0 + - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.12.2.0 + - 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.3.6 + - base32-lens < 0 # tried base32-lens-0.1.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.4 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires base >=4.14 && < 4.17 and the snapshot contains base-4.21.2.0 - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires base64 ^>=0.4 and the snapshot contains base64-1.0 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.12.1.0 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.3.4 - - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 - - battleship-combinatorics < 0 # tried battleship-combinatorics-0.0.1, but its *library* requires containers >=0.4.2 && < 0.7 and the snapshot contains containers-0.7 - - bhoogle < 0 # tried bhoogle-0.1.4.3, but its *executable* requires the disabled package: protolude - - binary-parsers < 0 # tried binary-parsers-0.2.4.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - binary-tagged < 0 # tried binary-tagged-0.3.1, but its *library* requires base >=4.7.0.2 && < 4.20 and the snapshot contains base-4.20.0.0 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires bytestring ^>=0.10 and the snapshot contains bytestring-0.12.2.0 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires lens >=4.0 && < 5.1 and the snapshot contains lens-5.3.6 + - base64-lens < 0 # tried base64-lens-0.3.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.4 + - bench < 0 # tried bench-1.0.13, but its *executable* requires optparse-applicative >=0.14.0.0 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - bin < 0 # tried bin-0.1.4.1, but its *library* requires QuickCheck ^>=2.14.2 || ^>=2.15 || ^>=2.18.0.0 and the snapshot contains QuickCheck-2.16.0.0 + - binary-tagged < 0 # tried binary-tagged-0.3.1, but its *library* requires base >=4.7.0.2 && < 4.20 and the snapshot contains base-4.21.2.0 - binary-tagged < 0 # tried binary-tagged-0.3.1, but its *library* requires containers >=0.5.5.1 && < 0.7 and the snapshot contains containers-0.7 - 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: cryptohash - 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: cryptohash - 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 - - blake2 < 0 # tried blake2-0.3.0.1, but its *library* requires base ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.20.0.0 - - blake2 < 0 # tried blake2-0.3.0.1, but its *library* requires bytestring ^>=0.10.12 || ^>=0.11 and the snapshot contains bytestring-0.12.1.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.1.1 - - boomerang < 0 # tried boomerang-1.4.9.3, but its *library* requires template-haskell < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - 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 + - blake2 < 0 # tried blake2-0.3.0.1, but its *library* requires base ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.21.2.0 + - blake2 < 0 # tried blake2-0.3.0.1, but its *library* requires bytestring ^>=0.10.12 || ^>=0.11 and the snapshot contains bytestring-0.12.2.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.1.4 + - boomerang < 0 # tried boomerang-1.4.9.4, but its *library* requires template-haskell < 2.23 and the snapshot contains template-haskell-2.23.0.0 + - 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.2 - 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.3.2 - - box-csv < 0 # tried box-csv-0.2.0, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 - - 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.2.3.0 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires base ^>=4.15.0 and the snapshot contains base-4.20.0.0 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires bytestring ^>=0.10.12 and the snapshot contains bytestring-0.12.1.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires aeson ^>=2.0.1 and the snapshot contains aeson-2.2.5.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires base ^>=4.15.0 and the snapshot contains base-4.21.2.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires bytestring ^>=0.10.12 and the snapshot contains bytestring-0.12.2.0 - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires containers ^>=0.6.4 and the snapshot contains containers-0.7 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires deepseq ^>=1.4.5 and the snapshot contains deepseq-1.5.0.0 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires extra ^>=1.7.10 and the snapshot contains extra-1.8 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires filepath ^>=1.4.2 and the snapshot contains filepath-1.5.2.0 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc ^>=9.0.1 and the snapshot contains ghc-9.10.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-boot ^>=9.0.1 and the snapshot contains ghc-boot-9.10.1 - - 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.10.1 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires deepseq ^>=1.4.5 and the snapshot contains deepseq-1.5.1.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires extra ^>=1.7.10 and the snapshot contains extra-1.8.1 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires filepath ^>=1.4.2 and the snapshot contains filepath-1.5.5.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc ^>=9.0.1 and the snapshot contains ghc-9.12.4 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-boot ^>=9.0.1 and the snapshot contains ghc-boot-9.12.4 + - 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.12.4 - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires ghc-exactprint ^>=0.6.4 and the snapshot contains ghc-exactprint-1.12.0.0 - - 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 mtl ^>=2.2.2 and the snapshot contains mtl-2.3.2 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires random ^>=1.2.1 and the snapshot contains random-1.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.1 - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires strict ^>=0.4.0 and the snapshot contains strict-0.5.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires text ^>=1.2.5 and the snapshot contains text-2.1.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires transformers ^>=0.5.6 and the snapshot contains transformers-0.6.1.1 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires text ^>=1.2.5 and the snapshot contains text-2.1.4 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* requires transformers ^>=0.5.6 and the snapshot contains transformers-0.6.3.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 - - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: protolude - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.20.0.0 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires bifunctors < 5.6 and the snapshot contains bifunctors-5.6.2 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires containers < 0.7 and the snapshot contains containers-0.7 - - butcher < 0 # tried butcher-1.3.3.2, but its *library* requires extra < 1.8 and the snapshot contains extra-1.8 - - 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.1 - - 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.2.3.0 - - 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.12.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.2.5.0 + - 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.12.2.0 - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires containers >=0.6.2.1 && < 0.7 and the snapshot contains containers-0.7 - - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires network >=3.1.1.1 && < 3.2 and the snapshot contains network-3.2.7.0 - - 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.1.1 + - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires network >=3.1.1.1 && < 3.2 and the snapshot contains network-3.2.8.0 + - 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.1.4 - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* requires websockets >=0.12.7.2 && < 0.13 and the snapshot contains websockets-0.13.0.0 - - 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.2.3 - - 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.1.1 - - cabal-install < 0 # tried cabal-install-3.12.1.0, but its *library* requires Cabal ^>=3.12.1.0 and the snapshot contains Cabal-3.12.0.0 - - cabal-install < 0 # tried cabal-install-3.12.1.0, but its *library* requires Cabal-syntax ^>=3.12.1.0 and the snapshot contains Cabal-syntax-3.12.0.0 - - cabal-install < 0 # tried cabal-install-3.12.1.0, but its *library* requires hashable >=1.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - cabal-install < 0 # tried cabal-install-3.12.1.0, but its *library* requires open-browser >=0.2.1.0 && < 0.3 and the snapshot contains open-browser-0.4.0.0 - - cabal-install-solver < 0 # tried cabal-install-solver-3.12.1.0, but its *library* requires Cabal ^>=3.12.1.0 and the snapshot contains Cabal-3.12.0.0 - - cabal-install-solver < 0 # tried cabal-install-solver-3.12.1.0, but its *library* requires Cabal-syntax ^>=3.12.1.0 and the snapshot contains Cabal-syntax-3.12.0.0 + - 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.2.7 + - 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.1.4 + - bytezap < 0 # tried bytezap-1.6.0, but its *library* requires base >=4.18.0.0 && < 4.21 and the snapshot contains base-4.21.2.0 + - cabal-add < 0 # tried cabal-add-0.2, but its *executable* requires the disabled package: cabal-install-parsers + - cabal-install-parsers < 0 # tried cabal-install-parsers-0.6.3, but its *library* requires tar ^>=0.5.1.1 || ^>=0.6.0.0 and the snapshot contains tar-0.7.1.0 + - cardano-coin-selection < 0 # tried cardano-coin-selection-1.0.1, but its *library* requires the disabled package: cryptonite + - caster < 0 # tried caster-0.0.3.0, but its *library* requires the disabled package: fast-builder - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires data-default >=0.5 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - 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.1.1 - - cheapskate-highlight < 0 # tried cheapskate-highlight-0.1.0.0, but its *library* requires the disabled package: highlighting-kate + - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires data-default >=0.5 && < 0.8 and the snapshot contains data-default-0.8.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.2 + - cheapskate < 0 # tried cheapskate-0.1.1.2, but its *library* requires text >=0.9 && < 1.3 and the snapshot contains text-2.1.4 - cheapskate-lucid < 0 # tried cheapskate-lucid-0.1.0.0, but its *library* requires the disabled package: cheapskate - - chell-quickcheck < 0 # tried chell-quickcheck-0.2.5.4, but its *library* requires QuickCheck ^>=2.14.2 and the snapshot contains QuickCheck-2.15.0.1 - - 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.5.0.0 + - chell-quickcheck < 0 # tried chell-quickcheck-0.2.5.4, but its *library* requires QuickCheck ^>=2.14.2 and the snapshot contains QuickCheck-2.16.0.0 + - 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.5.1.0 - chiphunk < 0 # tried chiphunk-0.1.4.0, but its *library* requires vector-space >=0.13 && < 0.17 and the snapshot contains vector-space-0.19 - - chronos < 0 # tried chronos-1.1.6.2, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires base >=4.12 && < 4.20 and the snapshot contains base-4.20.0.0 + - classy-prelude-yesod < 0 # tried classy-prelude-yesod-1.5.0, but its *library* requires the disabled package: yesod-static + - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires base >=4.12 && < 4.20 and the snapshot contains base-4.21.2.0 - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires primitive >=0.6.4 && < 0.9 and the snapshot contains primitive-0.9.1.0 - - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires template-haskell >=2.14 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires th-abstraction >=0.2 && < 0.6 and the snapshot contains th-abstraction-0.7.1.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.20.0.0 + - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires template-haskell >=2.14 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 + - cleff < 0 # tried cleff-0.3.3.0, but its *library* requires th-abstraction >=0.2 && < 0.6 and the snapshot contains th-abstraction-0.7.2.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.21.2.0 - cleff-plugin < 0 # tried cleff-plugin-0.1.0.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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.10.1 + - 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.12.4 + - cleff-plugin < 0 # tried cleff-plugin-0.1.0.0, but its *library* requires ghc-tcplugins-extra >=0.3 && < 0.5 and the snapshot contains ghc-tcplugins-extra-0.5 - 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 && < 0.6 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 - - co-log-concurrent < 0 # tried co-log-concurrent-0.5.1.0, but its *library* requires base >=4.10.1.0 && < 4.19 and the snapshot contains base-4.20.0.0 - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.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.1 - - compdata < 0 # tried compdata-0.13.1, but its *library* requires QuickCheck >=2.14.3 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - compdata < 0 # tried compdata-0.13.1, but its *library* requires base >=4.16 && < 4.20 and the snapshot contains base-4.20.0.0 - - compdata < 0 # tried compdata-0.13.1, but its *library* requires template-haskell >=2.17 && < 2.22 and the snapshot contains template-haskell-2.22.0.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.2.3.0 + - comonad-extras < 0 # tried comonad-extras-4.0.1, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.2 + - 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.3.0 + - compdata < 0 # tried compdata-0.13.1, but its *library* requires QuickCheck >=2.14.3 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - compdata < 0 # tried compdata-0.13.1, but its *library* requires base >=4.16 && < 4.20 and the snapshot contains base-4.21.2.0 + - compdata < 0 # tried compdata-0.13.1, but its *library* requires template-haskell >=2.17 && < 2.22 and the snapshot contains template-haskell-2.23.0.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.2.5.0 - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires containers >=0.5.7.0 && < 0.7 and the snapshot contains containers-0.7 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires hashable >=1.2.6.1 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires lens >=4.15.4 && < 5.3 and the snapshot contains lens-5.3.4 - - 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.22.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.1.1 - - 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 hashable >=1.2.6.1 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - composite-aeson < 0 # tried composite-aeson-0.8.2.2, but its *library* requires lens >=4.15.4 && < 5.3 and the snapshot contains lens-5.3.6 + - 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.2 + - 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.2 + - 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.23.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.1.4 + - 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.14 - 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.2.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.6 - - 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 mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.2 - 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.2 - - 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.8.3.0, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires lens >=4.15.4 && < 5.3 and the snapshot contains lens-5.3.4 - - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires template-haskell >=2.11.1.0 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires text >=1.2.2.2 && < 2.1 and the snapshot contains text-2.1.1 + - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires lens >=4.15.4 && < 5.3 and the snapshot contains lens-5.3.6 + - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires template-haskell >=2.11.1.0 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 + - composite-base < 0 # tried composite-base-0.8.3.0, but its *library* requires text >=1.2.2.2 && < 2.1 and the snapshot contains text-2.1.4 - composite-binary < 0 # tried composite-binary-0.8.2.2, but its *library* requires the disabled package: composite-base - - composite-ekg < 0 # tried composite-ekg-0.8.2.2, but its *library* requires lens >=4.15.4 && < 5.3 and the snapshot contains lens-5.3.4 - - 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.1.1 - - composite-hashable < 0 # tried composite-hashable-0.8.2.2, but its *library* requires hashable >=1.1.1 && < 1.5 and the snapshot contains hashable-1.5.0.0 + - composite-ekg < 0 # tried composite-ekg-0.8.2.2, but its *library* requires lens >=4.15.4 && < 5.3 and the snapshot contains lens-5.3.6 + - 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.1.4 + - composite-hashable < 0 # tried composite-hashable-0.8.2.2, but its *library* requires hashable >=1.1.1 && < 1.5 and the snapshot contains hashable-1.5.1.0 - 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* requires containers >=0.3 && < 0.6 and the snapshot contains containers-0.7 - - compressed < 0 # tried compressed-3.11, but its *library* requires hashable >=1.1.2.1 && < 1.3 and the snapshot contains hashable-1.5.0.0 - - compressed < 0 # tried compressed-3.11, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.1 - - concurrent-supply < 0 # tried concurrent-supply-0.1.8, but its *library* requires hashable >=1.1 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - 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.12.1.0 + - compressed < 0 # tried compressed-3.11, but its *library* requires hashable >=1.1.2.1 && < 1.3 and the snapshot contains hashable-1.5.1.0 + - compressed < 0 # tried compressed-3.11, but its *library* requires semigroupoids >=4 && < 6 and the snapshot contains semigroupoids-6.0.2 + - 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.12.2.0 - 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.1 + - 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.3.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.12.1.0 - - 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 < 0 # tried conferer-1.1.0.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - conferer-aeson < 0 # tried conferer-aeson-1.1.0.2, but its *library* requires the disabled package: conferer - - 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.12 - - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* requires text >=1.1 && < 2.1 and the snapshot contains text-2.1.1 - - 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 - - conferer-warp < 0 # tried conferer-warp-1.1.0.1, but its *library* requires text >=1.1 && < 2.1 and the snapshot contains text-2.1.1 - - configurator-pg < 0 # tried configurator-pg-0.2.10, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 - - configurator-pg < 0 # tried configurator-pg-0.2.10, but its *library* requires containers >=0.5.6.2 && < 0.7 and the snapshot contains containers-0.7 + - 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.17 + - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* requires text >=1.1 && < 2.1 and the snapshot contains text-2.1.4 + - conferer-snap < 0 # tried conferer-snap-1.1.0.0, but its *library* requires text >=1.1 && < 1.3 and the snapshot contains text-2.1.4 + - conferer-warp < 0 # tried conferer-warp-1.1.0.1, but its *library* requires text >=1.1 && < 2.1 and the snapshot contains text-2.1.4 - connection < 0 # tried connection-0.3.1, but its *library* requires the disabled package: x509 - connection < 0 # tried connection-0.3.1, but its *library* requires the disabled package: x509-store - connection < 0 # tried connection-0.3.1, but its *library* requires the disabled package: x509-system - connection < 0 # tried connection-0.3.1, but its *library* requires the disabled package: x509-validation - - connection < 0 # tried connection-0.3.1, but its *library* requires tls >=1.4 && < 1.7 and the snapshot contains tls-2.1.8 - - 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.1 - - construct < 0 # tried construct-0.3.2, but its *library* requires the disabled package: rank2classes + - connection < 0 # tried connection-0.3.1, but its *library* requires tls >=1.4 && < 1.7 and the snapshot contains tls-2.1.14 + - 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.3.0 - 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.7 - - cprng-aes < 0 # tried cprng-aes-0.6.1, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 - - cprng-aes < 0 # tried cprng-aes-0.6.1, but its *library* requires the disabled package: crypto-random - - crypt-sha512 < 0 # tried crypt-sha512-0, but its *library* requires base >=4.5 && < 4.20 and the snapshot contains base-4.20.0.0 - - 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 + - crypt-sha512 < 0 # tried crypt-sha512-0, but its *library* requires base >=4.5 && < 4.20 and the snapshot contains base-4.21.2.0 + - cryptohash-cryptoapi < 0 # tried cryptohash-cryptoapi-0.1.4, but its *library* requires the disabled package: cryptonite + - cryptonite-conduit < 0 # tried cryptonite-conduit-0.2.2, but its *library* requires the disabled package: cryptonite + - cryptonite-openssl < 0 # tried cryptonite-openssl-0.7, but its *library* requires the disabled package: cryptonite - 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.15.0.1 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires QuickCheck < 2.13 and the snapshot contains QuickCheck-2.16.0.0 - 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.12.1.0 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.12.2.0 - csg < 0 # tried csg-0.1.0.6, but its *library* requires containers < 0.7 and the snapshot contains containers-0.7 - csg < 0 # tried csg-0.1.0.6, but its *library* requires simple-vec3 >=0.4 && < 0.5 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.1 - - csg < 0 # tried csg-0.1.0.6, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.1 - - css-syntax < 0 # tried css-syntax-0.1.0.2, but its *library* requires text >=2.0 && < 2.1 and the snapshot contains text-2.1.1 - - cuda < 0 # tried cuda-0.11.0.1, but its *library* requires Cabal >=1.24 && < 3.11 and the snapshot contains Cabal-3.12.0.0 + - csg < 0 # tried csg-0.1.0.6, but its *library* requires transformers < 0.6 and the snapshot contains transformers-0.6.3.0 - 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 - - curly-expander < 0 # tried curly-expander-0.3.0.4, but its *library* requires base >=4.14 && < 4.20 and the snapshot contains base-4.20.0.0 - - currencies < 0 # tried currencies-0.2.0.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.1 - - czipwith < 0 # tried czipwith-1.0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.20.0.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.22.0.0 - - darcs < 0 # tried darcs-2.18.5, but its *library* requires Cabal >=2.4 && < 3.11 and the snapshot contains Cabal-3.12.0.0 - - darcs < 0 # tried darcs-2.18.5, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.20.0.0 - - darcs < 0 # tried darcs-2.18.5, but its *library* requires filepath >=1.4.1 && < 1.5.0.0 and the snapshot contains filepath-1.5.2.0 - - darcs < 0 # tried darcs-2.18.5, but its *library* requires hashable >=1.2.3.3 && < 1.5 and the snapshot contains hashable-1.5.0.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.22.0.0 + - curly-expander < 0 # tried curly-expander-0.3.0.4, but its *library* requires base >=4.14 && < 4.20 and the snapshot contains base-4.21.2.0 + - currencies < 0 # tried currencies-0.2.0.0, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.4 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires Cabal >=2.4 && < 3.11 and the snapshot contains Cabal-3.14.2.0 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.21.2.0 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires filepath >=1.4.1 && < 1.5.0.0 and the snapshot contains filepath-1.5.5.0 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires hashable >=1.2.3.3 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires http-types >=0.12.1 && < 0.12.5 and the snapshot contains http-types-0.12.5 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires tar >=0.5 && < 0.7 and the snapshot contains tar-0.7.1.0 + - darcs < 0 # tried darcs-2.18.5, but its *library* requires the disabled package: cryptonite + - 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.23.0.0 - data-default-extra < 0 # tried data-default-extra-0.1.0, but its *library* requires data-default-class >=0.0.1 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - data-default-extra < 0 # tried data-default-extra-0.1.0, but its *library* requires data-default-instances-containers >=0.0 && < 0.1 and the snapshot contains data-default-instances-containers-0.1.0.3 - data-default-extra < 0 # tried data-default-extra-0.1.0, but its *library* requires the disabled package: data-default-instances-new-base @@ -6608,78 +6718,73 @@ packages: - data-default-instances-dlist < 0 # tried data-default-instances-dlist-0.0.1.2, but its *library* requires data-default-class ^>=0.1.2.0 and the snapshot contains data-default-class-0.2.0.0 - data-default-instances-old-locale < 0 # tried data-default-instances-old-locale-0.0.1.2, but its *library* requires data-default-class ^>=0.1.2.0 and the snapshot contains data-default-class-0.2.0.0 - data-default-instances-text < 0 # tried data-default-instances-text-0.0.1, but its *library* requires data-default-class >=0.0 && < 0.1 || >=0.1 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - 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.1.1 + - 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.1.4 - data-default-instances-unordered-containers < 0 # tried data-default-instances-unordered-containers-0.0.1, but its *library* requires data-default-class >=0.0 && < 0.1 || >=0.1 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - data-default-instances-vector < 0 # tried data-default-instances-vector-0.0.1, but its *library* requires data-default-class >=0.0 && < 0.1 || >=0.1 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - data-effects < 0 # tried data-effects-0.3.0.1, but its *library* requires the disabled package: data-effects-th - - data-effects-core < 0 # tried data-effects-core-0.2.0.0, but its *library* requires the disabled package: compdata - - data-effects-th < 0 # tried data-effects-th-0.2.0.0, but its *library* requires extra ^>=1.7.14 and the snapshot contains extra-1.8 - - data-forest < 0 # tried data-forest-0.1.0.13, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - data-functor-logistic < 0 # tried data-functor-logistic-0.0, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 - - 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.20.0.0 - - datadog < 0 # tried datadog-0.3.0.0, but its *library* requires the disabled package: buffer-builder + - data-forest < 0 # tried data-forest-0.1.0.13, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - 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.21.2.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 containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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.1 + - 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.2 + - 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.3.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.2.0 - - dhall < 0 # tried dhall-1.42.2, but its *library* requires the disabled package: repline - - dhall-bash < 0 # tried dhall-bash-1.0.41, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 - - dhall-bash < 0 # tried dhall-bash-1.0.41, but its *library* requires text >=0.2 && < 2.1 and the snapshot contains text-2.1.1 - - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires aeson >=1.4.6.0 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 - - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires text >=0.11.1.0 && < 2.1 and the snapshot contains text-2.1.1 - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.4, but its *library* requires data-default >=0.7.1.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 + - dhall-bash < 0 # tried dhall-bash-1.0.41, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 + - dhall-bash < 0 # tried dhall-bash-1.0.41, but its *library* requires text >=0.2 && < 2.1 and the snapshot contains text-2.1.4 + - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires aeson >=1.4.6.0 && < 2.2 and the snapshot contains aeson-2.2.5.0 + - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 + - dhall-json < 0 # tried dhall-json-1.7.12, but its *library* requires text >=0.11.1.0 && < 2.1 and the snapshot contains text-2.1.4 - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.4, but its *library* requires lsp >=2.1.0.0 && < 2.2 and the snapshot contains lsp-2.7.0.1 - dhall-nix < 0 # tried dhall-nix-1.1.27, but its *library* requires the disabled package: hnix - - dhall-yaml < 0 # tried dhall-yaml-1.2.12, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 - - dhall-yaml < 0 # tried dhall-yaml-1.2.12, but its *library* requires text >=0.11.1.0 && < 2.1 and the snapshot contains text-2.1.1 - - diagrams-builder < 0 # tried diagrams-builder-0.8.0.6, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.20.0.0 - - diagrams-gtk < 0 # tried diagrams-gtk-1.4, but its *library* requires base >=4.2 && < 4.19 and the snapshot contains base-4.20.0.0 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires base >=4.7 && < 4.19 and the snapshot contains base-4.20.0.0 + - dhall-yaml < 0 # tried dhall-yaml-1.2.12, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 + - dhall-yaml < 0 # tried dhall-yaml-1.2.12, but its *library* requires text >=0.11.1.0 && < 2.1 and the snapshot contains text-2.1.4 + - diagrams-cairo < 0 # tried diagrams-cairo-1.5, but its *library* requires the disabled package: pango + - diagrams-gtk < 0 # tried diagrams-gtk-1.4, but its *library* requires the disabled package: gtk + - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires base >=4.7 && < 4.19 and the snapshot contains base-4.21.2.0 - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires containers >=0.3 && < 0.7 and the snapshot contains containers-0.7 - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires data-default-class >=0.0.1 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires lens >=4.0 && < 5.3 and the snapshot contains lens-5.3.4 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires text >=1.0 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.1 - - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires Cabal >=2.0 && < 2.2 and the snapshot contains Cabal-3.12.0.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires lens >=4.0 && < 5.3 and the snapshot contains lens-5.3.6 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires optparse-applicative >=0.10 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.2, but its *library* requires text >=1.0 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.4 + - dice < 0 # tried dice-0.1.1, but its *library* requires the disabled package: random-fu + - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires Cabal >=2.0 && < 2.2 and the snapshot contains Cabal-3.14.2.0 - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires the disabled package: cabal-toolkit - - discrimination < 0 # tried discrimination-0.5, but its *library* requires hashable >=1.2.7.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires deepseq >=1.2 && < 1.5 and the snapshot contains deepseq-1.5.0.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.1 + - distributed-process-lifted < 0 # tried distributed-process-lifted-0.3.0.1, but its *library* requires deepseq >=1.2 && < 1.5 and the snapshot contains deepseq-1.5.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.2 + - 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.3.0 - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.7 - - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires random >=1.1 && < 1.2 and the snapshot contains random-1.2.1.3 + - distribution < 0 # tried distribution-1.1.1.0, but its *library* requires random >=1.1 && < 1.2 and the snapshot contains random-1.3.1 + - distribution-opensuse < 0 # tried distribution-opensuse-1.1.4, but its *library* requires the disabled package: turtle - diversity < 0 # tried diversity-0.8.1.0, but its *library* requires the disabled package: fasta - - dlist-nonempty < 0 # tried dlist-nonempty-0.1.3, but its *library* requires base >=4.5 && < 4.20 and the snapshot contains base-4.20.0.0 - - docker < 0 # tried docker-0.7.0.1, but its *library* requires bytestring >=0.10.0 && < 0.12.0 and the snapshot contains bytestring-0.12.1.0 + - dlist-nonempty < 0 # tried dlist-nonempty-0.1.3, but its *library* requires base >=4.5 && < 4.20 and the snapshot contains base-4.21.2.0 + - docker < 0 # tried docker-0.7.0.1, but its *library* requires bytestring >=0.10.0 && < 0.12.0 and the snapshot contains bytestring-0.12.2.0 - docker < 0 # tried docker-0.7.0.1, but its *library* requires data-default-class >=0.0.1 && < 0.2.0 and the snapshot contains data-default-class-0.2.0.0 - - 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.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.1.4 - docker < 0 # tried docker-0.7.0.1, but its *library* requires the disabled package: x509 - docker < 0 # tried docker-0.7.0.1, but its *library* requires the disabled package: x509-store - docker < 0 # tried docker-0.7.0.1, but its *library* requires the disabled package: x509-system - - docker < 0 # tried docker-0.7.0.1, but its *library* requires tls >=1.3.7 && < 1.7.0 and the snapshot contains tls-2.1.8 - - 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-14.0.1 - - dom-parser < 0 # tried dom-parser-3.2.0, but its *library* requires the disabled package: xml-conduit-writer + - docker < 0 # tried docker-0.7.0.1, but its *library* requires tls >=1.3.7 && < 1.7.0 and the snapshot contains tls-2.1.14 + - 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-15.0.0 + - dom-parser < 0 # tried dom-parser-3.2.0, but its *library* requires text < 2.1.2 and the snapshot contains text-2.1.4 + - dotenv < 0 # tried dotenv-0.12.0.0, but its *executable* requires optparse-applicative >=0.11 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 - dotenv < 0 # tried dotenv-0.12.0.0, but its *library* requires data-default-class >=0.1.2 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - download < 0 # tried download-0.3.2.7, but its *library* requires the disabled package: feed - - download-curl < 0 # tried download-curl-0.1.4, but its *library* requires the disabled package: feed - drawille < 0 # tried drawille-0.1.3.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - dualizer < 0 # tried dualizer-0.2.0.0, but its *library* requires Cabal ^>=3.0.0 || ^>=3.2.0 || ^>=3.4.0 || ^>=3.6.0 || ^>=3.8.0 || ^>=3.10.0 || ^>=3.12.0 and the snapshot contains Cabal-3.14.2.0 + - dualizer < 0 # tried dualizer-0.2.0.0, but its *library* requires base ^>=4.8.2 || ^>=4.9.0 || ^>=4.10.0 || ^>=4.11.0 || ^>=4.12.0 || ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0 and the snapshot contains base-4.21.2.0 + - dualizer < 0 # tried dualizer-0.2.0.0, but its *library* requires template-haskell ^>=2.16.0 || ^>=2.17.0 || ^>=2.18.0 || ^>=2.19.0 || ^>=2.20.0 || ^>=2.21.0 || ^>=2.22.0 and the snapshot contains template-haskell-2.23.0.0 - dvorak < 0 # tried dvorak-0.1.0.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - easytest < 0 # tried easytest-0.3, but its *library* requires hedgehog >=0.6 && < =0.6.1 and the snapshot contains hedgehog-1.5 + - eap < 0 # tried eap-0.9.0.2, but its *library* requires the disabled package: cryptonite + - easytest < 0 # tried easytest-0.3, but its *library* requires hedgehog >=0.6 && < =0.6.1 and the snapshot contains hedgehog-1.7 - 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 containers >=0.6 && < 0.7 and the snapshot contains containers-0.7 - - egison < 0 # tried egison-4.1.3, but its *library* requires text >=0.2 && < 1.3 and the snapshot contains text-2.1.1 - - egison < 0 # tried egison-4.1.3, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.1 - - egison < 0 # tried egison-4.1.3, but its *library* requires vector >=0.12 && < 0.13 and the snapshot contains vector-0.13.2.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.22.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.1.1 - - 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.4 - - elm-street < 0 # tried elm-street-0.2.2.1, but its *library* requires base >=4.11.1.0 && < 4.20 and the snapshot contains base-4.20.0.0 + - egison < 0 # tried egison-5.0.0, but its *library* requires the disabled package: sweet-egison + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.2.0, but its *library* requires egison-pattern-src ^>=0.2.2 and the snapshot contains egison-pattern-src-0.2.1.2 + - egison-pattern-src-th-mode < 0 # tried egison-pattern-src-th-mode-0.2.2.0, but its *library* requires template-haskell >=2.2.0 && < 2.23 and the snapshot contains template-haskell-2.23.0.0 + - 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.5 + - errata < 0 # tried errata-0.4.0.3, but its *library* requires base >=4.12 && < 4.21 and the snapshot contains base-4.21.2.0 + - esqueleto-postgis < 0 # tried esqueleto-postgis-4.1.0, but its *library* requires the disabled package: geojson - 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.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.1 + - event < 0 # tried event-0.1.4, but its *library* requires semigroups >=0.16 && < 0.19 and the snapshot contains semigroups-0.20.1 + - event < 0 # tried event-0.1.4, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.3.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: amazonka - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: amazonka-dynamodb @@ -6692,1172 +6797,1066 @@ packages: - 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-stub-store < 0 # tried eventsource-stub-store-1.1.1, but its *library* requires the disabled package: eventsource-api - - exception-via < 0 # tried exception-via-0.2.0.0, but its *library* requires template-haskell >=2.9.0.0 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 - - explainable-predicates < 0 # tried explainable-predicates-0.1.2.4, but its *library* requires QuickCheck >=2.8 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - explainable-predicates < 0 # tried explainable-predicates-0.1.2.4, but its *library* requires base >=4.12.0 && < 4.20 and the snapshot contains base-4.20.0.0 - - explainable-predicates < 0 # tried explainable-predicates-0.1.2.4, but its *library* requires template-haskell >=2.13.0 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - extensible < 0 # tried extensible-0.9.2, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - 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.1 - - fakedata-quickcheck < 0 # tried fakedata-quickcheck-0.2.0, but its *library* requires QuickCheck >=2.6 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 + - exception-via < 0 # tried exception-via-0.2.0.0, but its *library* requires template-haskell >=2.9.0.0 && < 2.21 and the snapshot contains template-haskell-2.23.0.0 + - executable-hash < 0 # tried executable-hash-0.2.0.4, but its *library* requires the disabled package: cryptohash + - explainable-predicates < 0 # tried explainable-predicates-0.1.2.4, but its *library* requires QuickCheck >=2.8 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - explainable-predicates < 0 # tried explainable-predicates-0.1.2.4, but its *library* requires base >=4.12.0 && < 4.20 and the snapshot contains base-4.21.2.0 + - explainable-predicates < 0 # tried explainable-predicates-0.1.2.4, but its *library* requires template-haskell >=2.13.0 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 + - extensible < 0 # tried extensible-0.9.2, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - failable < 0 # tried failable-1.2.4.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.2 + - 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.3.0 + - fakedata-quickcheck < 0 # tried fakedata-quickcheck-0.2.0, but its *library* requires QuickCheck >=2.6 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - fast-builder < 0 # tried fast-builder-0.1.5.0, but its *library* requires base >=4.8 && < 4.21 and the snapshot contains base-4.21.2.0 - fasta < 0 # tried fasta-0.10.4.2, but its *library* requires the disabled package: pipes-text - - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.20.0.0 - - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires base >=4.7 && < 4.18 and the snapshot contains base-4.21.2.0 + - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - fastmemo < 0 # tried fastmemo-0.1.1, but its *library* requires containers >=0.6 && < 0.7 and the snapshot contains containers-0.7 - - fclabels < 0 # tried fclabels-2.0.5.1, but its *library* requires base >=4.5 && < 4.19 and the snapshot contains base-4.20.0.0 - - fclabels < 0 # tried fclabels-2.0.5.1, but its *library* requires template-haskell >=2.2 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 - - feed < 0 # tried feed-1.3.2.1, but its *library* requires base >=4 && < 4.20 and the snapshot contains base-4.20.0.0 - - feed < 0 # tried feed-1.3.2.1, but its *library* requires base-compat >=0.9 && < 0.14 and the snapshot contains base-compat-0.14.1 - - feed < 0 # tried feed-1.3.2.1, but its *library* requires xml-conduit >=1.3 && < 1.10 and the snapshot contains xml-conduit-1.10.0.0 - - fgl-arbitrary < 0 # tried fgl-arbitrary-0.2.0.6, but its *library* requires QuickCheck >=2.3 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 + - fclabels < 0 # tried fclabels-2.0.5.1, but its *library* requires base >=4.5 && < 4.19 and the snapshot contains base-4.21.2.0 + - fclabels < 0 # tried fclabels-2.0.5.1, but its *library* requires template-haskell >=2.2 && < 2.21 and the snapshot contains template-haskell-2.23.0.0 + - fgl-arbitrary < 0 # tried fgl-arbitrary-0.2.0.6, but its *library* requires QuickCheck >=2.3 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude - - fields-and-cases < 0 # tried fields-and-cases-0.2.0.0, but its *library* requires base >=4.17.2.0 && < 4.20 and the snapshot contains base-4.20.0.0 - - filtrable < 0 # tried filtrable-0.1.6.0, but its *library* requires containers >=0.5.11 && < 0.7 and the snapshot contains containers-0.7 - - 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.1 - - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.1 - - 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.1 - - fortran-src < 0 # tried fortran-src-0.16.3, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - fortran-src < 0 # tried fortran-src-0.16.3, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - fortran-src < 0 # tried fortran-src-0.16.3, but its *library* requires singletons-base >=3.0 && < 3.4 and the snapshot contains singletons-base-3.4 - - fortran-src < 0 # tried fortran-src-0.16.3, but its *library* requires singletons-th >=3.0 && < 3.4 and the snapshot contains singletons-th-3.4 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires aeson >=1.5 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires filepath >=1.4.1.2 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires fortran-src >=0.14 && < 0.16 and the snapshot contains fortran-src-0.16.3 - - 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 - - fortran-src-extras < 0 # tried fortran-src-extras-0.5.0, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.1 - - fourmolu < 0 # tried fourmolu-0.18.0.0, but its *library* requires Cabal-syntax >=3.14 && < 3.15 and the snapshot contains Cabal-syntax-3.12.0.0 - - fourmolu < 0 # tried fourmolu-0.18.0.0, but its *library* requires ghc-lib-parser >=9.12 && < 9.13 and the snapshot contains ghc-lib-parser-9.10.1.20250103 - - freer-simple < 0 # tried freer-simple-1.2.1.2, but its *library* requires template-haskell >=2.11 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 + - fields-and-cases < 0 # tried fields-and-cases-0.2.0.0, but its *library* requires base >=4.17.2.0 && < 4.20 and the snapshot contains base-4.21.2.0 + - fin < 0 # tried fin-0.3.2, but its *library* requires QuickCheck ^>=2.14.2 || ^>=2.15 || ^>=2.18.0.0 and the snapshot contains QuickCheck-2.16.0.0 + - firebase-hs < 0 # tried firebase-hs-0.2.0.0, but its *library* requires http-client-tls >=0.3 && < 0.4 and the snapshot contains http-client-tls-0.4.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.3.0 + - flat-mcmc < 0 # tried flat-mcmc-1.5.2, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.4 + - 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.3.0 + - fortran-src < 0 # tried fortran-src-0.16.9, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - fortran-src < 0 # tried fortran-src-0.16.9, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.5, but its *library* requires aeson >=1.5 && < 2.2 and the snapshot contains aeson-2.2.5.0 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.5, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.5, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.5, but its *library* requires filepath >=1.4.1.2 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.5, but its *library* requires optparse-applicative >=0.14 && < 0.18 and the snapshot contains optparse-applicative-0.19.0.0 + - fortran-src-extras < 0 # tried fortran-src-extras-0.5.5, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.4 + - freer-simple < 0 # tried freer-simple-1.2.1.2, but its *library* requires template-haskell >=2.11 && < 2.22 and the snapshot contains template-haskell-2.23.0.0 - friday < 0 # tried friday-0.2.3.2, but its *library* requires primitive >=0.5.2.1 && < 0.9 and the snapshot contains primitive-0.9.1.0 - friday-juicypixels < 0 # tried friday-juicypixels-0.1.2.4, but its *library* requires the disabled package: friday - - functor-classes-compat < 0 # tried functor-classes-compat-2.0.0.2, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 + - functor-classes-compat < 0 # tried functor-classes-compat-2.0.0.2, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.21.2.0 - functor-classes-compat < 0 # tried functor-classes-compat-2.0.0.2, but its *library* requires containers >=0.5.9.1 && < 0.7 and the snapshot contains containers-0.7 - - 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.2 - - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires QuickCheck >=2.13 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - 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 MonadRandom >=0.5.1 && < 0.6 and the snapshot contains MonadRandom-0.6.2.1 + - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires QuickCheck >=2.13 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - 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.1.0 - 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.4 + - 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.5 - galois-field < 0 # tried galois-field-1.0.2, but its *library* requires semirings >=0.5 && < 0.7 and the snapshot contains semirings-0.7 - 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.2.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 aeson >=0.6 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - 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.20.0.0 - - generic-aeson < 0 # tried generic-aeson-0.2.0.14, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - 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.2.0 - - geniplate-mirror < 0 # tried geniplate-mirror-0.7.10, but its *library* requires template-haskell < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - geojson < 0 # tried geojson-4.1.1, but its *library* requires containers >=0.5.7.1 && < 0.7 and the snapshot contains containers-0.7 - - geojson < 0 # tried geojson-4.1.1, but its *library* requires deepseq >=1.4.2.0 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - geojson < 0 # tried geojson-4.1.1, but its *library* requires text >=1.2.3.0 && < 2.1 and the snapshot contains text-2.1.1 - - 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.2 - - 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.10.1 - - 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.1.1 + - gdax < 0 # tried gdax-0.6.0.0, but its *library* requires the disabled package: cryptohash + - generics-sop-lens < 0 # tried generics-sop-lens-0.2.1, but its *library* requires base >=4.12.0.0 && < 4.21 and the snapshot contains base-4.21.2.0 + - geniplate-mirror < 0 # tried geniplate-mirror-0.7.10, but its *library* requires template-haskell < 2.22 and the snapshot contains template-haskell-2.23.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.3 + - 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.12.4 + - 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.1.4 - 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.5 - - ghc-compact < 0 # tried ghc-compact-0.1.0.0, but its *library* requires base >=4.9.0 && < 4.19 and the snapshot contains base-4.20.0.0 - - ghc-compact < 0 # tried ghc-compact-0.1.0.0, but its *library* requires bytestring >=0.10.6.0 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - ghc-compact < 0 # tried ghc-compact-0.1.0.0, but its *library* requires ghc-prim >=0.5.3 && < 0.11 and the snapshot contains ghc-prim-0.11.0 - - ghc-exactprint < 0 # tried ghc-exactprint-1.12.0.0, but its *library* requires base >=4.21 && < 4.22 and the snapshot contains base-4.20.0.0 - - ghc-exactprint < 0 # tried ghc-exactprint-1.12.0.0, but its *library* requires ghc >=9.12 && < 9.13 and the snapshot contains ghc-9.10.1 - - ghc-exactprint < 0 # tried ghc-exactprint-1.12.0.0, but its *library* requires ghc-boot >=9.12 && < 9.13 and the snapshot contains ghc-boot-9.10.1 - - 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.20.0.0 - - ghc-prof < 0 # tried ghc-prof-1.4.1.12, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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.10.1 - - gi-gtk-hs < 0 # tried gi-gtk-hs-0.3.17, but its *library* requires gi-gdk >=3.0.6 && < 3.1 and the snapshot contains gi-gdk-4.0.10 - - gi-gtk-hs < 0 # tried gi-gtk-hs-0.3.17, but its *library* requires gi-gtk >=3.0.26 && < 3.1 and the snapshot contains gi-gtk-4.0.12 - - git < 0 # tried git-0.3.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - git-annex < 0 # tried git-annex-10.20250320, but its *executable* requires the disabled package: feed - - glaze < 0 # tried glaze-0.3.0.1, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.3.4 - - 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-examples < 0 # tried gloss-examples-1.13.0.4, but its *executable* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - ghc-prof < 0 # tried ghc-prof-1.4.1.14, but its *library* requires base >=4.6 && < 4.20 and the snapshot contains base-4.21.2.0 + - ghc-prof < 0 # tried ghc-prof-1.4.1.14, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - 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.12.4 + - gio < 0 # tried gio-0.13.12.0, but its *library* requires the disabled package: glib + - git < 0 # tried git-0.3.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - git < 0 # tried git-0.3.0, but its *library* requires the disabled package: cryptonite + - github-rest < 0 # tried github-rest-1.2.1, but its *library* requires the disabled package: jose-jwt + - github-webhooks < 0 # tried github-webhooks-0.18.0, but its *library* requires the disabled package: cryptonite + - gitit < 0 # tried gitit-0.16, but its *library* requires the disabled package: hoauth2 + - glaze < 0 # tried glaze-0.3.0.1, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.3.6 + - gloss-examples < 0 # tried gloss-examples-1.13.0.4, but its *executable* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - gloss-examples < 0 # tried gloss-examples-1.13.0.4, but its *executable* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - gloss-examples < 0 # tried gloss-examples-1.13.0.4, but its *executable* requires random >=1.2 && < 1.3 and the snapshot contains random-1.3.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.2.0 - gloss-raster < 0 # tried gloss-raster-1.13.1.2, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - 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.6.2 - - 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.19 - - google-translate < 0 # tried google-translate-0.5, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.1 - - 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.1 - - gothic < 0 # tried gothic-0.1.8.2, but its *library* requires hashable >=1.4.3 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - 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.20.0.0 - - gtk-sni-tray < 0 # tried gtk-sni-tray-0.1.8.1, but its *library* requires gi-gdk >=3.0.25 && < 4 and the snapshot contains gi-gdk-4.0.10 - - gtk-sni-tray < 0 # tried gtk-sni-tray-0.1.8.1, but its *library* requires gi-gtk >=3.0.38 && < 4 and the snapshot contains gi-gtk-4.0.12 - - gtk-strut < 0 # tried gtk-strut-0.1.3.2, but its *library* requires gi-gdk >=3.0.25 && < 4 and the snapshot contains gi-gdk-4.0.10 - - gtk-strut < 0 # tried gtk-strut-0.1.3.2, but its *library* requires gi-gtk >=3.0.38 && < 4 and the snapshot contains gi-gtk-4.0.12 + - gogol < 0 # tried gogol-1.0.0.0, but its *library* requires crypton >=0.34 && < 1.1 and the snapshot contains crypton-1.1.4 + - gogol < 0 # tried gogol-1.0.0.0, but its *library* requires crypton-x509 >=1.5 && < 1.8 and the snapshot contains crypton-x509-1.9.1 + - gogol < 0 # tried gogol-1.0.0.0, but its *library* requires crypton-x509-store >=1.5 && < 1.7 and the snapshot contains crypton-x509-store-1.9.0 + - 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.21.2.0 + - gtk < 0 # tried gtk-0.15.10, but its *library* requires the disabled package: glib + - gtk3 < 0 # tried gtk3-0.15.10, but its *library* requires the disabled package: glib - hOpenPGP < 0 # tried hOpenPGP-2.10.1, but its *library* requires the disabled package: ixset-typed - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires http-client >=0.5 && < 0.6 and the snapshot contains http-client-0.7.19 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires servant >=0.9 && < 0.13 and the snapshot contains servant-0.20.2 - - 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.2 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.1 - - hadolint < 0 # tried hadolint-2.12.0, but its *library* requires deepseq >=1.4.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hadolint < 0 # tried hadolint-2.12.0, but its *library* requires language-docker >=11.0.0 && < 12 and the snapshot contains language-docker-14.0.1 - - 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.12.1.0 - - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires extra >=1.6.18 && < 1.8 and the snapshot contains extra-1.8 - - 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.1.1 - - hakyll-convert < 0 # tried hakyll-convert-0.3.0.5, but its *library* requires the disabled package: feed - - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires bytestring >=0.11.3 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires pandoc >=3.0.1 && < 3.2 and the snapshot contains pandoc-3.6.4 - - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires text >=2.0.2 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1.2 - - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires filepath >=1.2 && < 1.5 and the snapshot contains filepath-1.5.2.0 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires servant >=0.9 && < 0.13 and the snapshot contains servant-0.20.3.0 + - 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.3.0 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.4 + - haddock-library < 0 # tried haddock-library-1.11.0, but its *library* requires base >=4.5 && < 4.21 and the snapshot contains base-4.21.2.0 + - hadolint < 0 # tried hadolint-2.14.0, but its *library* requires Cabal >=3.12.1 && < 3.13 and the snapshot contains Cabal-3.14.2.0 + - hadolint < 0 # tried hadolint-2.14.0, but its *library* requires parallel >=3.2.2 && < 3.3 and the snapshot contains parallel-3.3.0.0 + - hadolint < 0 # tried hadolint-2.14.0, but its *library* requires time >=1.12.2 && < 1.13 and the snapshot contains time-1.14 + - 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.12.2.0 + - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* requires extra >=1.6.18 && < 1.8 and the snapshot contains extra-1.8.1 + - 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.1.4 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires bytestring >=0.11.3 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires hakyll >=4.16.1 && < 4.17 and the snapshot contains hakyll-4.17.0.0 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires pandoc >=3.0.1 && < 3.2 and the snapshot contains pandoc-3.10 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires text >=2.0.2 && < 2.1 and the snapshot contains text-2.1.4 + - hakyllbars < 0 # tried hakyllbars-1.0.1.0, but its *library* requires time >=1.12.2 && < 1.13 and the snapshot contains time-1.14 + - 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.19.0.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.1.5 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires filepath >=1.2 && < 1.5 and the snapshot contains filepath-1.5.5.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.6 - 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.2 - - 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.1 - - happstack-hsp < 0 # tried happstack-hsp-7.3.7.7, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - happstack-hsp < 0 # tried happstack-hsp-7.3.7.7, but its *library* requires happstack-server >=6.0 && < 7.9 and the snapshot contains happstack-server-7.9.2.1 - - happstack-hsp < 0 # tried happstack-hsp-7.3.7.7, but its *library* requires text >=0.10 && < 2.1 and the snapshot contains text-2.1.1 - - 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.20.0.0 - - hasbolt < 0 # tried hasbolt-0.1.7.0, but its *library* requires bytestring >=0.10.8.1 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - hasbolt < 0 # tried hasbolt-0.1.7.0, but its *library* requires containers >=0.5.7.1 && < 0.7 and the snapshot contains containers-0.7 - - hasbolt < 0 # tried hasbolt-0.1.7.0, but its *library* requires data-default >=0.7.1.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - hasbolt < 0 # tried hasbolt-0.1.7.0, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hasbolt < 0 # tried hasbolt-0.1.7.0, but its *library* requires network >=2.6.3.1 && < 3.2 and the snapshot contains network-3.2.7.0 - - hasbolt < 0 # tried hasbolt-0.1.7.0, but its *library* requires text >=1.2.2.1 && < 2.1 and the snapshot contains text-2.1.1 - - hashing < 0 # tried hashing-0.1.1.0, but its *library* requires bytestring >=0.10.6.0 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - haskey < 0 # tried haskey-0.3.1.0, but its *library* requires unix >=2.7.1.0 && < 2.8 and the snapshot contains unix-2.8.5.1 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires time >=1.5 && < 1.11 and the snapshot contains time-1.14 + - hapistrano < 0 # tried hapistrano-0.4.8.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - happstack-hsp < 0 # tried happstack-hsp-7.3.7.8, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - happstack-hsp < 0 # tried happstack-hsp-7.3.7.8, but its *library* requires text >=0.10 && < 2.1 and the snapshot contains text-2.1.4 + - happstack-hsp < 0 # tried happstack-hsp-7.3.7.8, 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.21.2.0 + - hashids < 0 # tried hashids-1.1.1.0, but its *library* requires bytestring >=0.10.8.1 && < =0.12.1.0 and the snapshot contains bytestring-0.12.2.0 + - hashing < 0 # tried hashing-0.1.1.0, but its *library* requires bytestring >=0.10.6.0 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - haskey < 0 # tried haskey-0.3.1.0, but its *library* requires unix >=2.7.1.0 && < 2.8 and the snapshot contains unix-2.8.8.0 - 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-node < 0 # tried haskoin-node-1.1.3, but its *library* requires the disabled package: nqe - - haskoin-store < 0 # tried haskoin-store-1.5.14, 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.12.1.0 - - 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 + - haskoin-node < 0 # tried haskoin-node-1.1.4, but its *library* requires the disabled package: haskoin-core + - haskoin-store-data < 0 # tried haskoin-store-data-1.5.16, but its *library* requires the disabled package: haskoin-core + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* requires bytestring >=0.10.2.0 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* requires optparse-applicative >=0.11 && < 0.16 and the snapshot contains optparse-applicative-0.19.0.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 containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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.1.1 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires mtl >=2.2.1 && < 2.3 and the snapshot contains mtl-2.3.2 + - hasmin < 0 # tried hasmin-1.0.3, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.4 + - hasql-listen-notify < 0 # tried hasql-listen-notify-0.1.0.1, but its *library* requires hasql ^>=1.6 || ^>=1.7 || ^>=1.8 || ^>=1.9 and the snapshot contains hasql-1.10.3.5 - hasql-queue < 0 # tried hasql-queue-1.2.0.2, but its *executable* requires the disabled package: tmp-postgres - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires aeson >=0.6 && < 2.1 and the snapshot contains aeson-2.2.3.0 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires text >=1.2.1.0 && < 1.3 and the snapshot contains text-2.1.1 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires time >=1.4 && < 1.12 and the snapshot contains time-1.12.2 - - haxl < 0 # tried haxl-2.5.1.0, but its *library* requires vector >=0.10 && < 0.13 and the snapshot contains vector-0.13.2.0 - - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: amazonka - - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: amazonka-core - - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: haxl - - hedgehog-optics < 0 # tried hedgehog-optics-1.0.0.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - heftia < 0 # tried heftia-0.5.0.0, but its *library* requires the disabled package: data-effects - - heftia-effects < 0 # tried heftia-effects-0.5.0.0, but its *library* requires the disabled package: data-effects - - hegg < 0 # tried hegg-0.5.0.0, but its *library* requires containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - 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.1.2 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires brick >=0.19 && < =0.39 and the snapshot contains brick-2.8.3 - - herms < 0 # tried herms-1.9.0.4, but its *executable* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - 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.4 + - haveibeenpwned < 0 # tried haveibeenpwned-0.2.0.3, but its *library* requires the disabled package: cryptonite + - hedgehog-classes < 0 # tried hedgehog-classes-0.2.5.4, but its *library* requires hedgehog >=1 && < 1.6 and the snapshot contains hedgehog-1.7 + - hedgehog-optics < 0 # tried hedgehog-optics-1.0.0.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - hedgehog-optics < 0 # tried hedgehog-optics-1.0.0.4, but its *library* requires hedgehog ^>=1.1.2 || ^>=1.2 || ^>=1.3 || ^>=1.4 || ^>=1.5 and the snapshot contains hedgehog-1.7 + - 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.1.5 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires brick >=0.19 && < =0.39 and the snapshot contains brick-2.12 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - 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.2 + - 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.19.0.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.1 + - herms < 0 # tried herms-1.9.0.4, but its *executable* requires vty >=5.15 && < =5.23 and the snapshot contains vty-6.6 - 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 - - hid < 0 # tried hid-0.2.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - hid < 0 # tried hid-0.2.2, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.1 - - 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.12.1.0 - - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires data-default >=0.5.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - 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 + - hid < 0 # tried hid-0.2.2, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - hid < 0 # tried hid-0.2.2, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - 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.12.2.0 + - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* requires data-default >=0.5.1 && < 0.8 and the snapshot contains data-default-0.8.0.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.2 - 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.1 + - 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.3.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 - - hindent < 0 # tried hindent-6.2.1, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.0 - hit < 0 # tried hit-0.7.0, but its *executable* requires the disabled package: git - - hlint < 0 # tried hlint-3.10, but its *library* requires ghc-lib-parser >=9.12 && < 9.13 and the snapshot contains ghc-lib-parser-9.10.1.20250103 - - hlint < 0 # tried hlint-3.10, but its *library* requires ghc-lib-parser-ex >=9.12.0.0 && < 9.13.0 and the snapshot contains ghc-lib-parser-ex-9.10.0.0 - - hmm-lapack < 0 # tried hmm-lapack-0.5.0.1, but its *library* requires the disabled package: lapack - - hnix-store-core < 0 # tried hnix-store-core-0.8.0.0, but its *library* requires the disabled package: nix-derivation - - hnock < 0 # tried hnock-0.4.0, but its *library* requires text >=1.2.3.0 && < 1.3 and the snapshot contains text-2.1.1 - - hocilib < 0 # tried hocilib-0.2.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - 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.2 - - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires parsec < =3.1.14.0 and the snapshot contains parsec-3.1.17.0 + - hledger-web < 0 # tried hledger-web-1.52.1, but its *library* requires the disabled package: yesod-static + - 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.1.4 + - hoauth2 < 0 # tried hoauth2-2.15.1, but its *library* requires crypton >=0.32 && < 1.1 and the snapshot contains crypton-1.1.4 + - 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.3 + - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires parsec < =3.1.14.0 and the snapshot contains parsec-3.1.18.0 - hocon < 0 # tried hocon-0.1.0.4, but its *library* requires split < =0.2.3.4 and the snapshot contains split-0.2.5 - 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.11, but its *executable* requires the disabled package: ixset-typed - - hopfli < 0 # tried hopfli-0.2.2.1, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - hopfli < 0 # tried hopfli-0.2.2.1, but its *library* requires zlib >=0.5.4 && < 0.7 and the snapshot contains zlib-0.7.1.0 - - hpack-dhall < 0 # tried hpack-dhall-0.5.7, but its *library* requires hpack >=0.35 && < 0.36 and the snapshot contains hpack-0.38.1 - - 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.15.0.1 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - hopfli < 0 # tried hopfli-0.2.2.1, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - hopfli < 0 # tried hopfli-0.2.2.1, but its *library* requires zlib >=0.5.4 && < 0.7 and the snapshot contains zlib-0.7.1.1 + - hpack-dhall < 0 # tried hpack-dhall-0.6.0, but its *library* requires the disabled package: dhall-json + - 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.19.0.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.16.0.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires bytestring >=0.10.4 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires containers >=0.5.5 && < 0.7 and the snapshot contains containers-0.7 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires filepath >=1.3.0 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - 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 && < 0.3 and the snapshot contains protolude-0.3.4 - - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.1.1 - - 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.1 - - 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.5.1 - - 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.3 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires filepath >=1.3.0 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - 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.2 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.5 + - hpio < 0 # tried hpio-0.9.0.7, but its *library* requires text >=1.2.0 && < 1.3 and the snapshot contains text-2.1.4 + - 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.3.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.8.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.4 - hprotoc < 0 # tried hprotoc-2.4.17, but its *library* requires the disabled package: protocol-buffers - - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires hquantlib-time >=0.0.5.1 && < 0.0.6.0 and the snapshot contains hquantlib-time-0.1.1 - - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires statistics >=0.15.0.0 && < 0.16.0.0 and the snapshot contains statistics-0.16.3.0 + - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires hquantlib-time >=0.0.5.1 && < 0.0.6.0 and the snapshot contains hquantlib-time-0.1.2 + - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires parallel >=3.2.0.0 && < 3.3.0.0 and the snapshot contains parallel-3.3.0.0 + - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires statistics >=0.15.0.0 && < 0.16.0.0 and the snapshot contains statistics-0.16.5.0 - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires vector >=0.11.0.0 && < 0.13.0.0 and the snapshot contains vector-0.13.2.0 - hquantlib < 0 # tried hquantlib-0.0.5.2, but its *library* requires vector-algorithms >=0.8.0.0 && < 0.9.0.0 and the snapshot contains vector-algorithms-0.9.1.0 + - hquantlib-time < 0 # tried hquantlib-time-0.1.2, but its *library* requires time >=1.12.2 && < 1.13 and the snapshot contains time-1.14 - 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 - - hsexif < 0 # tried hsexif-0.6.1.10, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - hsexif < 0 # tried hsexif-0.6.1.10, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - hsexif < 0 # tried hsexif-0.6.1.10, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.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 text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 + - hsexif < 0 # tried hsexif-0.6.1.10, but its *library* requires time >=1.4 && < 1.13 and the snapshot contains time-1.14 + - 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.2 + - hsx-jmacro < 0 # tried hsx-jmacro-7.3.8.2, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.4 - 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.22.0.0 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.12.1.0 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires network >=3.0 && < 3.2 and the snapshot contains network-3.2.7.0 - - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires text < 1.3 and the snapshot contains text-2.1.1 - - 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.5.1 - - html-parse < 0 # tried html-parse-0.2.1.0, but its *library* requires base >=4.7 && < 4.20 and the snapshot contains base-4.20.0.0 - - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.3, but its *library* requires the disabled package: hw-fingertree - - hw-conduit < 0 # tried hw-conduit-0.2.1.1, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - hw-dsv < 0 # tried hw-dsv-0.4.1.2, but its *executable* requires hedgehog >=0.5 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-dsv < 0 # tried hw-dsv-0.4.1.2, but its *executable* requires the disabled package: hw-ip - - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.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 + - 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.23.0.0 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.12.2.0 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires network >=3.0 && < 3.2 and the snapshot contains network-3.2.8.0 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires text < 1.3 and the snapshot contains text-2.1.4 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires time < 1.10 and the snapshot contains time-1.14 + - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* requires unix < 2.8 and the snapshot contains unix-2.8.8.0 + - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.3, but its *executable* requires generic-lens >=1.2.0.0 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.3, but its *executable* requires optparse-applicative >=0.14 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - hw-conduit < 0 # tried hw-conduit-0.2.1.1, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - hw-conduit < 0 # tried hw-conduit-0.2.1.1, but its *library* requires time >=1.4 && < 1.13 and the snapshot contains time-1.14 + - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *executable* requires generic-lens >=2.2 && < 2.3 and the snapshot contains generic-lens-2.3.0.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.19.0.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-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hw-fingertree < 0 # tried hw-fingertree-0.1.2.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hw-fingertree-strict < 0 # tried hw-fingertree-strict-0.1.2.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.1, but its *library* requires hedgehog >=0.5 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-json < 0 # tried hw-json-1.3.3.0, but its *library* requires the disabled package: hw-balancedparens - - hw-json < 0 # tried hw-json-1.3.3.0, but its *library* requires the disabled package: hw-rankselect - - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *library* requires the disabled package: hw-balancedparens - - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *library* requires the disabled package: hw-rankselect - - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *library* requires the disabled package: hw-balancedparens - - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *library* requires the disabled package: hw-rankselect - - 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-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - hw-rankselect < 0 # tried hw-rankselect-0.13.4.1, but its *library* requires the disabled package: hw-fingertree + - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - hw-fingertree < 0 # tried hw-fingertree-0.1.2.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - hw-fingertree-strict < 0 # tried hw-fingertree-strict-0.1.2.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.1, but its *library* requires hedgehog >=0.5 && < 1.5 and the snapshot contains hedgehog-1.7 + - hw-json < 0 # tried hw-json-1.3.3.1, but its *executable* requires generic-lens >=1.2.0.1 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - hw-json < 0 # tried hw-json-1.3.3.1, but its *executable* requires optparse-applicative >=0.14 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - hw-json < 0 # tried hw-json-1.3.3.1, but its *executable* requires the disabled package: hw-json-simd + - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *executable* requires generic-lens >=2.2.0.0 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *executable* requires optparse-applicative >=0.14 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.1, but its *executable* requires the disabled package: hw-json-simd + - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *executable* requires generic-lens >=2.2.0.0 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *executable* requires optparse-applicative >=0.14 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.2, but its *library* requires the disabled package: hw-json-simd + - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *executable* requires generic-lens >=1.1.0.0 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - 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.19.0.0 + - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - hw-rankselect < 0 # tried hw-rankselect-0.13.4.1, but its *executable* requires generic-lens >=1.2.0.1 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - hw-rankselect < 0 # tried hw-rankselect-0.13.4.1, but its *executable* requires optparse-applicative >=0.11 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 - hw-simd < 0 # tried hw-simd-0.1.2.2, but its *library* requires the disabled package: hw-rankselect + - hw-streams < 0 # tried hw-streams-0.0.1.1, but its *library* requires ghc-prim >=0.4 && < 0.12 and the snapshot contains ghc-prim-0.13.0 - 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.2, but its *library* requires the disabled package: hw-balancedparens - - hw-xml < 0 # tried hw-xml-0.5.1.2, but its *library* requires the disabled package: hw-rankselect - - hyper < 0 # tried hyper-0.2.1.1, but its *library* requires base >=4.5 && < 4.20 and the snapshot contains base-4.20.0.0 - - ihaskell < 0 # tried ihaskell-0.12.0.0, but its *library* requires the disabled package: hlint - - ihaskell-hvega < 0 # tried ihaskell-hvega-0.5.0.6, but its *library* requires the disabled package: ihaskell - - ilist < 0 # tried ilist-0.4.0.1, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.20.0.0 - - incremental-parser < 0 # tried incremental-parser-0.5.1, but its *library* requires the disabled package: rank2classes - - inflections < 0 # tried inflections-0.4.0.7, but its *library* requires text >=0.2 && < 2.1 and the snapshot contains text-2.1.1 - - 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.10.1 + - hw-xml < 0 # tried hw-xml-0.5.1.2, but its *executable* requires generic-lens >=2.2 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - hw-xml < 0 # tried hw-xml-0.5.1.2, but its *executable* requires optparse-applicative >=0.15.1.0 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - hyperbole < 0 # tried hyperbole-0.6.1, but its *library* requires http-client-tls >=0.3 && < 0.4 and the snapshot contains http-client-tls-0.4.0 + - ilist < 0 # tried ilist-0.4.0.1, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.21.2.0 + - influxdb < 0 # tried influxdb-1.9.3.2, but its *library* requires Cabal >=1.24 && < 3.13 and the snapshot contains Cabal-3.14.2.0 + - influxdb < 0 # tried influxdb-1.9.3.2, but its *library* requires base >=4.11 && < 4.21 and the snapshot contains base-4.21.2.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.12.4 - inline-java < 0 # tried inline-java-0.10.0, but its *library* requires the disabled package: jni - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires aeson >=0.6 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires data-default-class >=0.1.2.0 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires deepseq >=1.3 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires primitive >=0.5 && < 0.9 and the snapshot contains primitive-0.9.1.0 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires singletons-th >=3 && < 3.3 and the snapshot contains singletons-th-3.4 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires template-haskell >=2.8 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 - - inline-r < 0 # tried inline-r-1.0.1, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 + - inline-r < 0 # tried inline-r-1.0.2, but its *library* requires singletons-th >=3 && < 3.5 and the snapshot contains singletons-th-3.5 + - inline-r < 0 # tried inline-r-1.0.2, but its *library* requires template-haskell >=2.8 && < 2.23 and the snapshot contains template-haskell-2.23.0.0 - inliterate < 0 # tried inliterate-0.1.0, but its *library* requires the disabled package: cheapskate - - insert-ordered-containers < 0 # tried insert-ordered-containers-0.2.6, but its *library* requires hashable >=1.4.7.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - 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.1 - - integer-types < 0 # tried integer-types-0.1.4.1, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - integer-types < 0 # tried integer-types-0.1.4.1, but its *library* requires hashable ^>=1.4.1 and the snapshot contains hashable-1.5.0.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.12.1.0 - - 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.22.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.1.1 - - intro < 0 # tried intro-0.9.0.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - 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.2 + - 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.3.0 + - integer-types < 0 # tried integer-types-0.1.4.1, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - integer-types < 0 # tried integer-types-0.1.4.1, but its *library* requires hashable ^>=1.4.1 and the snapshot contains hashable-1.5.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.12.2.0 + - 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.23.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.1.4 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires bytestring >=0.9 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - intro < 0 # tried intro-0.9.0.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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.1.1 - - 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.1 - - invert < 0 # tried invert-1.0.0.5, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.2 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires text >=0.7 && < 1.3 and the snapshot contains text-2.1.4 + - intro < 0 # tried intro-0.9.0.0, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - invert < 0 # tried invert-1.0.0.5, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 - invert < 0 # tried invert-1.0.0.5, but its *library* requires containers ^>=0.6.5 and the snapshot contains containers-0.7 - - invert < 0 # tried invert-1.0.0.5, but its *library* requires hashable ^>=1.4.2 and the snapshot contains hashable-1.5.0.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.22.0.0 - - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 + - invert < 0 # tried invert-1.0.0.5, but its *library* requires hashable ^>=1.4.2 and the snapshot contains hashable-1.5.1.0 + - io-embed < 0 # tried io-embed-0.1.0.1, but its *library* requires template-haskell >=2.20.0.0 && < 2.23.0.0 and the snapshot contains template-haskell-2.23.0.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.23.0.0 + - ipa < 0 # tried ipa-0.3.1.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.4 - 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 bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - 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 bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - 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.2 - 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.1 - - 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.1.1 + - 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.1.4 - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires the disabled package: x509 - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires the disabled package: x509-store - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires the disabled package: x509-validation - - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-2.1.8 - - 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.1 - - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - irc-client < 0 # tried irc-client-1.1.2.3, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-2.1.14 + - 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.3.0 + - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.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.1 - - 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.1.1 + - 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.1.4 - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires the disabled package: x509-validation - - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-2.1.8 - - 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.1 + - irc-conduit < 0 # tried irc-conduit-0.3.0.6, but its *library* requires tls >=1.3 && < 1.6 and the snapshot contains tls-2.1.14 + - 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.3.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.12.1.0 - - 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.2.7.0 + - 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.12.2.0 + - 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.2 + - 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.2.8.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.6 - - 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.1 - - 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 + - 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.3.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.3.0.0 + - iterable < 0 # tried iterable-3.0, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.2 - ixset < 0 # tried ixset-1.1.1.2, but its *library* requires the disabled package: syb-with-class - - ixset-typed < 0 # tried ixset-typed-0.5.1.0, but its *library* requires template-haskell >=2.8 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 + - ixset-typed < 0 # tried ixset-typed-0.5.1.0, but its *library* requires template-haskell >=2.8 && < 2.21 and the snapshot contains template-haskell-2.23.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 - 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 - - json-spec-openapi < 0 # tried json-spec-openapi-1.0.1.0, but its *library* requires the disabled package: insert-ordered-containers - - json-spec-openapi < 0 # tried json-spec-openapi-1.0.1.0, but its *library* requires the disabled package: openapi3 - 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.2.3.0 - - kind-generics-th < 0 # tried kind-generics-th-0.2.3.3, but its *library* requires template-haskell >=2.14 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 - - kind-generics-th < 0 # tried kind-generics-th-0.2.3.3, but its *library* requires th-abstraction >=0.4 && < 0.7 and the snapshot contains th-abstraction-0.7.1.0 - - kleene < 0 # tried kleene-0.1, but its *library* requires bytestring >=0.10.4.0 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - l10n < 0 # tried l10n-0.1.0.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.1 - - 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.22.0.0 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires aeson >=2.0 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 + - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: jvm-batching + - kanji < 0 # tried kanji-3.5.0, but its *library* requires aeson ^>=2.0 and the snapshot contains aeson-2.2.5.0 + - kubernetes-api-client < 0 # tried kubernetes-api-client-0.6.1.2, but its *library* requires the disabled package: hoauth2 + - l10n < 0 # tried l10n-0.1.0.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.4 + - lambdabot-core < 0 # tried lambdabot-core-5.3.1.2, but its *library* requires the disabled package: random-fu + - lambdabot-irc-plugins < 0 # tried lambdabot-irc-plugins-5.3.1.2, but its *library* requires the disabled package: lambdabot-core + - language-docker < 0 # tried language-docker-15.0.0, but its *library* requires time >=1.12.2 && < 1.14 and the snapshot contains time-1.14 + - 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.23.0.0 + - language-lua < 0 # tried language-lua-0.11.0.2, but its *library* requires base >=4.5 && < 4.21 and the snapshot contains base-4.21.2.0 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires aeson >=2.0 && < 2.2 and the snapshot contains aeson-2.2.5.0 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires filecache >=0.2.9 && < 0.5 and the snapshot contains filecache-0.5.2 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires http-api-data >=0.2 && < 0.6 and the snapshot contains http-api-data-0.6.2 - - 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.2 - - 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.2 - - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1 - - 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.5.1 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires filecache >=0.2.9 && < 0.5 and the snapshot contains filecache-0.5.3 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires http-api-data >=0.2 && < 0.6 and the snapshot contains http-api-data-0.6.3 + - 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.2 + - 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.3.0 + - 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.3.0 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.4 + - language-puppet < 0 # tried language-puppet-1.5.1, but its *library* requires the disabled package: cryptonite + - 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.3.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.8.0 - language-thrift < 0 # tried language-thrift-0.13.0.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - lapack < 0 # tried lapack-0.5.2, but its *library* requires the disabled package: hyper - - lapack-hmatrix < 0 # tried lapack-hmatrix-0.0.0.2, but its *library* requires the disabled package: lapack - - lazyppl < 0 # tried lazyppl-1.0, but its *library* requires containers >=0.6.5.1 && < 0.7 and the snapshot contains containers-0.7 - - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* requires lens >=3 && < 5 and the snapshot contains lens-5.3.4 - - lens-family-th < 0 # tried lens-family-th-0.5.3.1, but its *library* requires template-haskell >=2.11 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - lens-process < 0 # tried lens-process-0.4.0.0, but its *library* requires filepath >=1.0 && < 1.5 and the snapshot contains filepath-1.5.2.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.3.4 + - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* requires lens >=3 && < 5 and the snapshot contains lens-5.3.6 + - lens-process < 0 # tried lens-process-0.4.0.0, but its *library* requires filepath >=1.0 && < 1.5 and the snapshot contains filepath-1.5.5.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.3.6 - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires lens-family >=1.2 && < 1.3 and the snapshot contains lens-family-2.1.3 - lens-simple < 0 # tried lens-simple-0.1.0.9, but its *library* requires lens-family-core >=1.2 && < 1.3 and the snapshot contains lens-family-core-2.1.3 - - 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 - - lexer-applicative < 0 # tried lexer-applicative-2.1.0.2, but its *library* requires the disabled package: regex-applicative + - 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.2 - libgraph < 0 # tried libgraph-1.14, but its *library* requires the disabled package: union-find - - linear-circuit < 0 # tried linear-circuit-0.1.0.4, but its *library* requires the disabled package: lapack - - liquid-fixpoint < 0 # tried liquid-fixpoint-8.10.7, but its *library* requires megaparsec >=7.0.0 && < 9 and the snapshot contains megaparsec-9.7.0 - - 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.4 - - liquidhaskell < 0 # tried liquidhaskell-0.9.10.1, but its *library* requires the disabled package: liquidhaskell-boot - - liquidhaskell-boot < 0 # tried liquidhaskell-boot-0.9.10.1, but its *library* requires Diff >=0.3 && < 0.6 and the snapshot contains Diff-1.0.2 - - liquidhaskell-boot < 0 # tried liquidhaskell-boot-0.9.10.1, but its *library* requires hashable >=1.3 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - liquidhaskell-boot < 0 # tried liquidhaskell-boot-0.9.10.1, but its *library* requires liquid-fixpoint ==0.9.6.3.1 and the snapshot contains liquid-fixpoint-8.10.7 - - 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.12.1.0 - - 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.1 - - loc < 0 # tried loc-0.2.0.0, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.20.0.0 + - loc < 0 # tried loc-0.2.0.0, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.21.2.0 - loc < 0 # tried loc-0.2.0.0, but its *library* requires containers ^>=0.6.4 and the snapshot contains containers-0.7 - - logger-thread < 0 # tried logger-thread-0.1.0.2, but its *library* requires the disabled package: protolude - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* requires containers >=0.6 && < 0.7 and the snapshot contains containers-0.7 - - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* requires ghc >=8.6 && < 8.9 and the snapshot contains ghc-9.10.1 - - lrucaching < 0 # tried lrucaching-0.3.4, but its *library* requires base-compat >=0.9 && < 0.14 and the snapshot contains base-compat-0.14.1 - - lrucaching < 0 # tried lrucaching-0.3.4, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - lsql-csv < 0 # tried lsql-csv-0.1.0.6, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 - - 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.1.1 - - lzma-conduit < 0 # tried lzma-conduit-1.2.3, but its *library* requires bytestring >=0.9.1 && < 0.12 and the snapshot contains bytestring-0.12.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.12.4 + - lsql-csv < 0 # tried lsql-csv-0.1.0.6, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.21.2.0 + - 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.1.4 + - lzma-conduit < 0 # tried lzma-conduit-1.2.3, but its *library* requires bytestring >=0.9.1 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - 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.1 - - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.2.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.3.0 + - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.5.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.1 - - magico < 0 # tried magico-0.0.2.3, but its *executable* requires the disabled package: lapack - - mail-pool < 0 # tried mail-pool-2.3.1, but its *library* requires the disabled package: HaskellNet - - 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.1.1 + - 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.3.0 + - mail-pool < 0 # tried mail-pool-2.3.1, but its *library* requires base >=4.9.1.0 && < 4.21.0 and the snapshot contains base-4.21.2.0 - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires megaparsec >=6 && < 7 and the snapshot contains megaparsec-9.7.0 - - mason < 0 # tried mason-0.2.6, but its *library* requires network >=2.7 && < 3.2 and the snapshot contains network-3.2.7.0 - - 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.12.1.0 - - mbug < 0 # tried mbug-1.3.2, but its *library* requires extra >=1.6.14 && < 1.7 and the snapshot contains extra-1.8 + - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires the disabled package: cryptohash + - mason < 0 # tried mason-0.2.6, but its *library* requires network >=2.7 && < 3.2 and the snapshot contains network-3.2.8.0 + - mbox < 0 # tried mbox-0.3.4, but its *library* requires time < 1.10 and the snapshot contains time-1.14 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires bytestring >=0.10.8.2 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires extra >=1.6.14 && < 1.7 and the snapshot contains extra-1.8.1 - 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.19 - - 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 mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.2 + - 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.19.0.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.1.1 - - 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 - - memfd < 0 # tried memfd-1.0.1.3, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.20.0.0 - - 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.3 - - menshen < 0 # tried menshen-0.0.3, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.1.1 - - 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.1.2 - - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires bytestring >=0.10.4 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires hashable >=1.2.4 && < 1.5 and the snapshot contains hashable-1.5.0.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.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* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.1.4 + - mbug < 0 # tried mbug-1.3.2, but its *library* requires time >=1.8.0.2 && < 1.9 and the snapshot contains time-1.14 + - melf < 0 # tried melf-1.3.1, but its *executable* requires optparse-applicative >=0.16.1 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - memfd < 0 # tried memfd-1.0.1.3, but its *library* requires base ^>=4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.21.2.0 + - 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.5 + - menshen < 0 # tried menshen-0.0.3, but its *library* requires text >=1.2.3.1 && < 1.3 and the snapshot contains text-2.1.4 + - 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.19.0.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.1.5 + - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires bytestring >=0.10.4 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *library* requires hashable >=1.2.4 && < 1.5 and the snapshot contains hashable-1.5.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.1.4 + - merkle-tree < 0 # tried merkle-tree-0.1.1, but its *library* requires the disabled package: cryptonite + - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.7 - - microformats2-parser < 0 # tried microformats2-parser-1.0.2.2, but its *library* requires the disabled package: xml-lens - - microlens-process < 0 # tried microlens-process-0.2.0.2, but its *library* requires filepath >=1.0 && < 1.5 and the snapshot contains filepath-1.5.2.0 + - microlens-process < 0 # tried microlens-process-0.2.0.2, but its *library* requires filepath >=1.0 && < 1.5 and the snapshot contains filepath-1.5.5.0 - 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.14.0 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - milena < 0 # tried milena-0.5.4.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires lens >=4.4 && < 4.20 and the snapshot contains lens-5.3.4 - - 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.2.7.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.3 - - 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.1 - - milena < 0 # tried milena-0.5.4.0, but its *library* requires zlib >=0.6.1.2 && < 0.7 and the snapshot contains zlib-0.7.1.0 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires lens >=4.4 && < 4.20 and the snapshot contains lens-5.3.6 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires mtl >=2.1 && < 2.3 and the snapshot contains mtl-2.3.2 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires network >=2.4 && < 3.0 and the snapshot contains network-3.2.8.0 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires random >=1.0 && < 1.2 and the snapshot contains random-1.3.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.5.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.1 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - milena < 0 # tried milena-0.5.4.0, but its *library* requires zlib >=0.6.1.2 && < 0.7 and the snapshot contains zlib-0.7.1.1 - min-max-pqueue < 0 # tried min-max-pqueue-0.1.0.2, but its *library* requires containers >=0.5.11 && < 0.7 and the snapshot contains containers-0.7 - 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.1 + - minio-hs < 0 # tried minio-hs-1.7.0, but its *library* requires the disabled package: cryptonite + - misfortune < 0 # tried misfortune-0.1.2.1, but its *library* requires the disabled package: random-fu + - model < 0 # tried model-0.5, but its *library* requires transformers >=0.4.2.0 && < 0.6 and the snapshot contains transformers-0.6.3.0 - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *executable* requires the disabled package: pipes-text - 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.1, but its *executable* requires the disabled package: moffy-samples-gtk4-run - - monad-bayes < 0 # tried monad-bayes-1.3.0.4, but its *library* requires brick >=2.3.1 && < 2.6 and the snapshot contains brick-2.8.3 - - monad-bayes < 0 # tried monad-bayes-1.3.0.4, but its *library* requires vty >=6.1 && < 6.3 and the snapshot contains vty-6.4 - - 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.1 - - 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.1.1 - - 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.1 - - 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.22.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.1 - - monad-skeleton < 0 # tried monad-skeleton-0.2, but its *library* requires base >=4.9 && < 4.17 and the snapshot contains base-4.20.0.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.1 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *executable* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *executable* requires optparse-applicative >=0.17 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *executable* requires time >=1.9 && < 1.13 and the snapshot contains time-1.14 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *library* requires brick ^>=2.10 and the snapshot contains brick-2.12 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *library* requires random ^>=1.2 and the snapshot contains random-1.3.1 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *library* requires vty >=6.4 && < 6.6 and the snapshot contains vty-6.6 + - monad-bayes < 0 # tried monad-bayes-1.3.0.5, but its *library* requires vty-unix ^>=0.2.0.0 and the snapshot contains vty-unix-0.3.0.0 + - 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.2 + - 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.3.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.2 + - 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.1.4 + - 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.3.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.23.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.2 + - monad-skeleton < 0 # tried monad-skeleton-0.2, but its *library* requires base >=4.9 && < 4.17 and the snapshot contains base-4.21.2.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.3.0 + - mongoDB < 0 # tried mongoDB-2.7.1.4, but its *library* requires the disabled package: cryptohash - mono-traversable-keys < 0 # tried mono-traversable-keys-0.3.0, but its *library* requires containers >=0.3 && < 0.7 and the snapshot contains containers-0.7 + - monomer < 0 # tried monomer-1.6.0.1, but its *executable* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 - monomer < 0 # tried monomer-1.6.0.1, but its *executable* requires websockets >=0.12 && < 0.13 and the snapshot contains websockets-0.13.0.0 - - morpheus-graphql-tests < 0 # tried morpheus-graphql-tests-0.28.1, but its *library* requires tasty >=0.1.0 && < =1.5 and the snapshot contains tasty-1.5.3 - - msgpack < 0 # tried msgpack-1.0.1.0, but its *library* requires base >=4.7 && < 4.20 and the snapshot contains base-4.20.0.0 - - msgpack < 0 # tried msgpack-1.0.1.0, but its *library* requires hashable >=1.1.2.4 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires blaze-builder >=0.3 && < 0.4 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.5.2.0 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires blaze-builder >=0.3 && < 0.4 and the snapshot contains blaze-builder-0.4.4.1 + - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires filepath >=1.1 && < 1.4 and the snapshot contains filepath-1.5.5.0 - msgpack-idl < 0 # tried msgpack-idl-0.2.1, but its *library* requires msgpack >=0.7 && < 0.8 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 && < 1.1 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.22.0.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.23.0.0 + - mt19937 < 0 # tried mt19937-0.1.1, but its *library* requires base >=4.16.3.0 && < 4.21 and the snapshot contains base-4.21.2.0 - multi-containers < 0 # tried multi-containers-0.2, but its *library* requires containers >=0.5.10.2 && < 0.7 and the snapshot contains containers-0.7 - - multistate < 0 # tried multistate-0.8.0.4, but its *library* requires base >=4.11 && < 4.20 and the snapshot contains base-4.20.0.0 - - mwc-random-monad < 0 # tried mwc-random-monad-0.7.3.1, but its *library* requires the disabled package: monad-primitive - - mysql-haskell < 0 # tried mysql-haskell-1.1.6, but its *library* requires data-default-class >=0.1.2 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - 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 mysql-haskell >=0.8.3 && < 0.8.5 and the snapshot contains mysql-haskell-1.1.6 + - 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.2.5 + - mysql-json-table < 0 # tried mysql-json-table-0.1.4.1, but its *library* requires the disabled package: mysql + - mysql-simple < 0 # tried mysql-simple-0.4.9, but its *library* requires the disabled package: mysql - 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 - nanovg < 0 # tried nanovg-0.8.1.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - net-mqtt < 0 # tried net-mqtt-0.8.6.2, but its *library* requires QuickCheck >=2.12.6.1 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - net-mqtt < 0 # tried net-mqtt-0.8.6.2, but its *library* requires containers >=0.5.0 && < 0.7 and the snapshot contains containers-0.7 - - net-mqtt-lens < 0 # tried net-mqtt-lens-0.1.1.0, but its *library* requires the disabled package: net-mqtt - network-anonymous-i2p < 0 # tried network-anonymous-i2p-0.10.0, but its *library* requires the disabled package: network-attoparsec - 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-messagepack-rpc-websocket < 0 # tried network-messagepack-rpc-websocket-0.1.1.1, but its *library* requires the disabled package: wss-client - - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires network < 3 and the snapshot contains network-3.2.7.0 + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires network < 3 and the snapshot contains network-3.2.8.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.3.1 - - nix-derivation < 0 # tried nix-derivation-1.1.3, but its *library* requires filepath < 1.5 and the snapshot contains filepath-1.5.2.0 - nonemptymap < 0 # tried nonemptymap-0.0.6.0, but its *library* requires containers >=0.5.8 && < 0.7 and the snapshot contains containers-0.7 - - nonemptymap < 0 # tried nonemptymap-0.0.6.0, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.1 - - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires deepseq >=1.1 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires hashable >=1.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - 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.1.1 - - nqe < 0 # tried nqe-0.6.5, but its *library* requires the disabled package: unique - - 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.20.0.0 - - nri-env-parser < 0 # tried nri-env-parser-0.1.0.8, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 + - nonemptymap < 0 # tried nonemptymap-0.0.6.0, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.2 + - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires deepseq >=1.1 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - normalization-insensitive < 0 # tried normalization-insensitive-2.0.2, but its *library* requires hashable >=1.0 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - 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.1.4 + - 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.21.2.0 + - nri-env-parser < 0 # tried nri-env-parser-0.1.0.8, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.4 - 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.2.3.0 - - 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.20.0.0 - - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - nri-http < 0 # tried nri-http-0.3.0.0, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 - - 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.2.3.0 - - 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.20.0.0 - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - nri-kafka < 0 # tried nri-kafka-0.1.0.4, but its *library* requires containers >=0.6.0.1 && < 0.7 and the snapshot contains containers-0.7 - - 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 text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 - - 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.5.1 - - 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.2.3.0 - - 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.20.0.0 - - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - nri-observability < 0 # tried nri-observability-0.1.1.4, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 - - 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.20.0.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires filepath >=1.4.2.1 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires network >=3.1.0.0 && < 3.2 and the snapshot contains network-3.2.7.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-http < 0 # tried nri-http-0.7.0.1, but its *library* requires the disabled package: nri-prelude + - nri-kafka < 0 # tried nri-kafka-0.4.0.1, 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.4.0.1, but its *library* requires the disabled package: nri-prelude + - nri-observability < 0 # tried nri-observability-0.4.0.1, but its *library* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 + - nri-observability < 0 # tried nri-observability-0.4.0.1, but its *library* requires the disabled package: nri-prelude + - nri-observability < 0 # tried nri-observability-0.4.0.1, but its *library* requires the disabled package: strict-stm + - 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.21.2.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires filepath >=1.4.2.1 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires network >=3.1.0.0 && < 3.2 and the snapshot contains network-3.2.8.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires nri-observability >=0.1.0.0 && < 0.2 and the snapshot contains nri-observability-0.4.0.1 + - 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.5.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.22.0.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 + - 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.23.0.0 + - nri-postgresql < 0 # tried nri-postgresql-0.1.0.4, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.4 - 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.2.0.3, but its *library* requires aeson >=2.0 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - nri-redis < 0 # tried nri-redis-0.2.0.3, but its *library* requires base >=4.16.4.0 && < 4.19 and the snapshot contains base-4.20.0.0 - - nri-redis < 0 # tried nri-redis-0.2.0.3, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - nri-redis < 0 # tried nri-redis-0.2.0.3, but its *library* requires containers >=0.6.0.1 && < 0.7 and the snapshot contains containers-0.7 - - nri-redis < 0 # tried nri-redis-0.2.0.3, but its *library* requires megaparsec >=9.2.2 && < 9.6 and the snapshot contains megaparsec-9.7.0 - - nri-redis < 0 # tried nri-redis-0.2.0.3, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 - - nri-redis < 0 # tried nri-redis-0.2.0.3, 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.2.3.0 - - 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.20.0.0 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires filepath >=1.4.2.1 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires nri-redis >=0.1.0.0 && < 0.2 and the snapshot contains nri-redis-0.2.0.3 - - 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.2 - - 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.2 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.1 + - nri-redis < 0 # tried nri-redis-0.4.1.1, but its *library* requires hedis >=0.14.0 && < 0.16 and the snapshot contains hedis-0.16.1 + - nri-redis < 0 # tried nri-redis-0.4.1.1, 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.2.5.0 + - 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.21.2.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires bytestring >=0.10.8.2 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires filepath >=1.4.2.1 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires nri-redis >=0.1.0.0 && < 0.2 and the snapshot contains nri-redis-0.4.1.1 + - 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.3.0 + - 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.3.0 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* requires text >=1.2.3.1 && < 2.1 and the snapshot contains text-2.1.4 - 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.12.1.0 - - nvvm < 0 # tried nvvm-0.10.0.1, but its *library* requires Cabal >=1.24 && < 3.11 and the snapshot contains Cabal-3.12.0.0 - - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: protolude - - 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.1.1 - - ogma-language-cocospec < 0 # tried ogma-language-cocospec-1.6.0, but its *library* requires Cabal >=2.0 && < 3.9 and the snapshot contains Cabal-3.12.0.0 - - openapi3 < 0 # tried openapi3-3.2.4, but its *library* requires base >=4.11.1.0 && < 4.20 and the snapshot contains base-4.20.0.0 - - openapi3 < 0 # tried openapi3-3.2.4, but its *library* requires base-compat-batteries >=0.11.1 && < 0.14 and the snapshot contains base-compat-batteries-0.14.1 - - openapi3 < 0 # tried openapi3-3.2.4, but its *library* requires hashable >=1.2.7.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - openapi3 < 0 # tried openapi3-3.2.4, but its *library* requires template-haskell >=2.13.0.0 && < 2.22 and the snapshot contains template-haskell-2.22.0.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.12.0.0 - - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* requires tar >=0.4 && < 0.6 and the snapshot contains tar-0.6.4.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.2 - - pairing < 0 # tried pairing-1.1.0, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - nvvm < 0 # tried nvvm-0.10.0.1, but its *library* requires Cabal >=1.24 && < 3.11 and the snapshot contains Cabal-3.14.2.0 + - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: cryptonite + - 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.1.4 + - ogma-language-cocospec < 0 # tried ogma-language-cocospec-1.6.0, but its *library* requires Cabal >=2.0 && < 3.9 and the snapshot contains Cabal-3.14.2.0 + - oidc-client < 0 # tried oidc-client-0.8.0.0, but its *library* requires the disabled package: jose-jwt + - 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.19.0.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* requires Cabal >=3.2 && < 3.3 and the snapshot contains Cabal-3.14.2.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* requires tar >=0.4 && < 0.6 and the snapshot contains tar-0.7.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.2.1 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - 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.4 + - pairing < 0 # tried pairing-1.1.0, but its *library* requires protolude >=0.2 && < 0.3 and the snapshot contains protolude-0.3.5 - pairing < 0 # tried pairing-1.1.0, but its *library* requires tasty-quickcheck >=0.10.1 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - pandoc-csv2table < 0 # tried pandoc-csv2table-1.0.9, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.1.1 - - pandoc-dhall-decoder < 0 # tried pandoc-dhall-decoder-0.1.0.1, but its *library* requires the disabled package: dhall - - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires bytestring >=0.11 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - pandoc-csv2table < 0 # tried pandoc-csv2table-1.0.9, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.1.4 + - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires bytestring >=0.11 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires containers >=0.6.5 && < 0.7 and the snapshot contains containers-0.7 - - 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 - - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires srtree >=1.0.0.4 && < 1.1 and the snapshot contains srtree-2.0.0.2 - - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - 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.6.0.0 + - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires optparse-applicative >=0.18 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - pandoc-symreg < 0 # tried pandoc-symreg-0.2.1.3, but its *library* requires srtree >=1.0.0.4 && < 1.1 and the snapshot contains srtree-2.0.1.8 + - pango < 0 # tried pango-0.13.12.0, but its *library* requires the disabled package: glib + - pantry < 0 # tried pantry-0.11.2, but its *library* requires the disabled package: http-download + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires monads-tf >=0.1 && < 0.2 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 && < 2.16 and the snapshot contains template-haskell-2.22.0.0 - - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.1.1 - - parallel-io < 0 # tried parallel-io-0.3.5, but its *library* requires containers >=0.2 && < 0.7 and the snapshot contains containers-0.7 - - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - 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.1.1 + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires template-haskell >=2.15 && < 2.16 and the snapshot contains template-haskell-2.23.0.0 + - papillon < 0 # tried papillon-0.1.1.1, but its *library* requires transformers >=0.5 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - 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.1 + - paripari < 0 # tried paripari-0.7.0.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.1.4 - partial-order < 0 # tried partial-order-0.2.0.0, but its *library* requires containers >=0.5.0.0 && < 0.7 and the snapshot contains containers-0.7 - - partial-semigroup < 0 # tried partial-semigroup-0.6.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.20.0.0 - - 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.20.0.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.12.1.0 + - partial-semigroup < 0 # tried partial-semigroup-0.6.0.2, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 and the snapshot contains base-4.21.2.0 + - 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.21.2.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.12.2.0 - 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-dhall-instance < 0 # tried path-dhall-instance-0.2.1.0, but its *library* requires the disabled package: dhall + - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 + - pasta-curves < 0 # tried pasta-curves-0.0.1.0, but its *library* requires the disabled package: cryptonite - 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 base ^>=4.18 and the snapshot contains base-4.20.0.0 - - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires bytestring ^>=0.10.12 || ^>=0.11 and the snapshot contains bytestring-0.12.1.0 - - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires filepath ^>=1.4.100 and the snapshot contains filepath-1.5.2.0 - - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires text ^>=1.2.5 || ^>=2.0 and the snapshot contains text-2.1.1 - - pattern-arrows < 0 # tried pattern-arrows-0.0.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.1 - - pcf-font < 0 # tried pcf-font-0.2.2.1, but its *library* requires base >=4.7 && < 4.19 and the snapshot contains base-4.20.0.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires base ^>=4.18 and the snapshot contains base-4.21.2.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires bytestring ^>=0.10.12 || ^>=0.11 and the snapshot contains bytestring-0.12.2.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires filepath ^>=1.4.100 and the snapshot contains filepath-1.5.5.0 + - path-text-utf8 < 0 # tried path-text-utf8-0.0.2.0, but its *library* requires text ^>=1.2.5 || ^>=2.0 and the snapshot contains text-2.1.4 + - pattern-arrows < 0 # tried pattern-arrows-0.0.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.2 + - pcf-font < 0 # tried pcf-font-0.2.2.1, but its *library* requires base >=4.7 && < 4.19 and the snapshot contains base-4.21.2.0 - 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 - - peggy < 0 # tried peggy-0.3.2, but its *library* requires ListLike >=3.1 && < 3.2 and the snapshot contains ListLike-4.7.8.3 + - pdf-toolbox-content < 0 # tried pdf-toolbox-content-0.1.2, but its *library* requires the disabled package: pdf-toolbox-core + - pdf-toolbox-core < 0 # tried pdf-toolbox-core-0.1.3, but its *library* requires the disabled package: cryptohash + - pdf-toolbox-document < 0 # tried pdf-toolbox-document-0.1.4, but its *library* requires the disabled package: pdf-toolbox-core + - pedersen-commitment < 0 # tried pedersen-commitment-0.2.0, but its *library* requires the disabled package: cryptonite + - peggy < 0 # tried peggy-0.3.2, but its *library* requires ListLike >=3.1 && < 3.2 and the snapshot contains ListLike-4.7.8.4 - peggy < 0 # tried peggy-0.3.2, but its *library* requires hashtables >=1.0 && < 1.1 and the snapshot contains hashtables-1.4.2 - peggy < 0 # tried peggy-0.3.2, but its *library* requires monad-control >=0.3 && < 0.4 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.22.0.0 - - peregrin < 0 # tried peregrin-0.4.2, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.2, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 + - peggy < 0 # tried peggy-0.3.2, but its *library* requires template-haskell >=2.5 && < 2.9 and the snapshot contains template-haskell-2.23.0.0 + - peregrin < 0 # tried peregrin-0.4.2, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.2, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.21.2.0 - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.2, but its *library* requires primitive >=0.6.4 && < 0.9 and the snapshot contains primitive-0.9.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.1.1 - - 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.6 - - 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-2.1.8 - - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires transformers >=0.5.6 && < =0.6.1.0 and the snapshot contains transformers-0.6.1.1 - - 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.3 - - 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.22 - - 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.1.1 - - 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.1 - - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires warp >=3.2 && < 3.4 and the snapshot contains warp-3.4.7 - - phatsort < 0 # tried phatsort-0.6.0.0, but its *library* requires base >=4.10.1 && < 4.20 and the snapshot contains base-4.20.0.0 + - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.2, but its *library* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 + - persistent-mongoDB < 0 # tried persistent-mongoDB-2.13.1.0, but its *library* requires resource-pool >=0.2 && < 0.5 and the snapshot contains resource-pool-0.5.0.0 + - persistent-mysql < 0 # tried persistent-mysql-2.13.1.6, but its *library* requires the disabled package: mysql + - 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.2.5 + - 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-2.1.14 + - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires aeson >=2.1.2 && < =2.2.3.0 and the snapshot contains aeson-2.2.5.0 + - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires mtl >=2.2.2 && < =2.3.1 and the snapshot contains mtl-2.3.2 + - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires optparse-applicative >=0.17.1 && < =0.18.1.0 and the snapshot contains optparse-applicative-0.19.0.0 + - pfile < 0 # tried pfile-0.1.0.1, but its *library* requires transformers >=0.5.6 && < =0.6.1.0 and the snapshot contains transformers-0.6.3.0 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires ini >=0.3 && < 0.5 and the snapshot contains ini-0.5.1 + - 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.1 + - 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.3.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.30 + - 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.1.4 + - 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.3.0 + - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* requires warp >=3.2 && < 3.4 and the snapshot contains warp-3.4.13.1 + - phatsort < 0 # tried phatsort-0.6.0.0, but its *executable* requires optparse-applicative >=0.18 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - phatsort < 0 # tried phatsort-0.6.0.0, but its *library* requires base >=4.10.1 && < 4.20 and the snapshot contains base-4.21.2.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.9 - 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.2.0 - picosat < 0 # tried picosat-0.1.6, but its *library* requires containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - picosat < 0 # tried picosat-0.1.6, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.1 - - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires bytestring >=0.10.0 && < 0.11 and the snapshot contains bytestring-0.12.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.3.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.12.2.0 - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires containers >=0.5.0.0 && < 0.7 and the snapshot contains containers-0.7 - - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.1.1 + - pinboard < 0 # tried pinboard-0.10.3.0, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.1.4 - 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.2.0 - - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.3.4 - - pipes-http < 0 # tried pipes-http-1.0.6, but its *library* requires bytestring >=0.9.2.1 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires mtl >=2 && < 2.3 and the snapshot contains mtl-2.3.1 - - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: pipes-network - - pipes-text < 0 # tried pipes-text-1.0.1, but its *library* requires bytestring >=0.9.2.1 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - pipes-text < 0 # tried pipes-text-1.0.1, but its *library* requires text >=0.11.2 && < 2.1 and the snapshot contains text-2.1.1 + - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* requires lens >=4 && < 5 and the snapshot contains lens-5.3.6 + - pipes-http < 0 # tried pipes-http-1.0.6, but its *library* requires http-client-tls < 0.4 and the snapshot contains http-client-tls-0.4.0 + - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires mtl >=2 && < 2.3 and the snapshot contains mtl-2.3.2 + - pipes-mongodb < 0 # tried pipes-mongodb-0.1.0.0, but its *library* requires the disabled package: mongoDB + - pipes-text < 0 # tried pipes-text-1.0.1, but its *library* requires bytestring >=0.9.2.1 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - pipes-text < 0 # tried pipes-text-1.0.1, but its *library* requires text >=0.11.2 && < 2.1 and the snapshot contains text-2.1.4 - pixelated-avatar-generator < 0 # tried pixelated-avatar-generator-0.1.3, but its *executable* requires the disabled package: cli - - place-cursor-at < 0 # tried place-cursor-at-1.0.1, but its *executable* requires the disabled package: X11 + - plot < 0 # tried plot-0.2.3.12, but its *library* requires the disabled package: pango - polysemy-extra < 0 # tried polysemy-extra-0.2.1.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - 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.2.0 - - polysemy-fskvstore < 0 # tried polysemy-fskvstore-0.1.2.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - polysemy-fskvstore < 0 # tried polysemy-fskvstore-0.1.2.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - 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.2.0 - polysemy-kvstore < 0 # tried polysemy-kvstore-0.1.3.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - 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.2.0 - - 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.20.0.0 + - 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.21.2.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.2.0 - - 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.20.0.0 + - 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.21.2.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.2.0 - - polysemy-socket < 0 # tried polysemy-socket-0.0.2.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - polysemy-socket < 0 # tried polysemy-socket-0.0.2.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - 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.2.0 - - 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.20.0.0 + - 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.21.2.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.2.0 - 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.2.0 - - 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.1.1 + - 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.1.4 - 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.2.0 - 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 constraints >=0.10.1 && < 0.14 and the snapshot contains constraints-0.14.2 + - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires constraints >=0.10.1 && < 0.14 and the snapshot contains constraints-0.14.4 - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - 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.11.0 - - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires text >=1.1.0 && < 2.1 and the snapshot contains text-2.1.1 - - pontarius-xmpp-extras < 0 # tried pontarius-xmpp-extras-0.1.0.11, but its *library* requires data-default >=0.7.1.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - postgresql-query < 0 # tried postgresql-query-3.10.0, but its *library* requires the disabled package: inflections - - postgresql-simple-url < 0 # tried postgresql-simple-url-0.2.1.0, but its *library* requires base >=4.6 && < 4.20 and the snapshot contains base-4.20.0.0 - - prairie < 0 # tried prairie-0.0.4.0, but its *library* requires template-haskell >=2.15 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 + - 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.13.0 + - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 + - polysemy-zoo < 0 # tried polysemy-zoo-0.8.2.0, but its *library* requires text >=1.1.0 && < 2.1 and the snapshot contains text-2.1.4 + - pontarius-xmpp < 0 # tried pontarius-xmpp-0.5.7.2, but its *library* requires the disabled package: cryptohash + - pontarius-xmpp-extras < 0 # tried pontarius-xmpp-extras-0.1.0.12, but its *library* requires the disabled package: pontarius-xmpp + - postgresql-simple-url < 0 # tried postgresql-simple-url-0.2.1.0, but its *library* requires base >=4.6 && < 4.20 and the snapshot contains base-4.21.2.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 Diff >=0.3 && < 0.5 and the snapshot contains Diff-1.0.2 - - pretty-diff < 0 # tried pretty-diff-0.4.0.3, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.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.1.1 + - pretty-diff < 0 # tried pretty-diff-0.4.0.3, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - 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.1.4 - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires containers >=0.5.6 && < 0.6 and the snapshot contains containers-0.7 - - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires lens >=4.10 && < 4.16 and the snapshot contains lens-5.3.4 - - 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.1 + - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires lens >=4.10 && < 4.16 and the snapshot contains lens-5.3.6 + - printcess < 0 # tried printcess-0.1.0.3, but its *library* requires mtl >=2.2 && < 2.3 and the snapshot contains mtl-2.3.2 + - 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.3.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 aeson >=0.6 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires js-jquery >=3.1 && < 3.4 and the snapshot contains js-jquery-3.7.1 - - profiteur < 0 # tried profiteur-0.4.7.0, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 + - profiteur < 0 # tried profiteur-0.4.7.1, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 + - profiteur < 0 # tried profiteur-0.4.7.1, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.0 - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *library* requires prometheus ^>=2.2 and the snapshot contains prometheus-2.3.0 - - 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.1.1 - - proto-lens < 0 # tried proto-lens-0.7.1.5, but its *library* requires base >=4.10 && < 4.20 and the snapshot contains base-4.20.0.0 - - proto-lens-arbitrary < 0 # tried proto-lens-arbitrary-0.1.2.14, but its *library* requires QuickCheck >=2.8 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - proto-lens-optparse < 0 # tried proto-lens-optparse-0.1.1.13, but its *library* requires the disabled package: proto-lens - - proto-lens-protobuf-types < 0 # tried proto-lens-protobuf-types-0.7.2.2, but its *library* requires the disabled package: proto-lens - - proto-lens-protoc < 0 # tried proto-lens-protoc-0.9.0.0, but its *executable* requires the disabled package: proto-lens - - proto-lens-runtime < 0 # tried proto-lens-runtime-0.7.0.7, but its *library* requires the disabled package: proto-lens - - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.9, but its *library* requires the disabled package: proto-lens-protoc + - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *library* requires prometheus ^>=2.2 and the snapshot contains prometheus-2.3.1 + - 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.1.4 - protocol-buffers-descriptor < 0 # tried protocol-buffers-descriptor-2.4.17, but its *library* requires the disabled package: protocol-buffers - - protolude < 0 # tried protolude-0.3.4, but its *library* requires base >=4.6 && < 4.20 and the snapshot contains base-4.20.0.0 - - protolude < 0 # tried protolude-0.3.4, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - purview < 0 # tried purview-0.2.0.2, but its *library* requires template-haskell >=2.15.0 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 - - purview < 0 # tried purview-0.2.0.2, but its *library* requires warp >=3.3.0 && < 3.4 and the snapshot contains warp-3.4.7 + - protocol-radius-test < 0 # tried protocol-radius-test-0.1.0.1, but its *library* requires the disabled package: protocol-radius + - purview < 0 # tried purview-0.2.0.2, but its *library* requires template-haskell >=2.15.0 && < 2.21 and the snapshot contains template-haskell-2.23.0.0 + - purview < 0 # tried purview-0.2.0.2, but its *library* requires warp >=3.3.0 && < 3.4 and the snapshot contains warp-3.4.13.1 - purview < 0 # tried purview-0.2.0.2, but its *library* requires websockets >=0.12 && < 0.13 and the snapshot contains websockets-0.13.0.0 - - qm-interpolated-string < 0 # tried qm-interpolated-string-0.3.1.0, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* requires filepath >=1.4.1.2 && < 1.5 and the snapshot contains filepath-1.5.2.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.12.1.0 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *library* requires the disabled package: cipher-aes128 - - qrcode-core < 0 # tried qrcode-core-0.9.10, but its *library* requires bytestring >=0.10.6.0 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - qrcode-core < 0 # tried qrcode-core-0.9.10, but its *library* requires containers >=0.5.6.2 && < 0.7 and the snapshot contains containers-0.7 - - qrcode-juicypixels < 0 # tried qrcode-juicypixels-0.8.6, but its *library* requires bytestring >=0.10.6.0 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - quaalude < 0 # tried quaalude-0.0.0.1, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - 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.1.2 - - 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* requires template-haskell >=2.11 && < 2.17 and the snapshot contains template-haskell-2.22.0.0 - - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.6, but its *library* requires the disabled package: unfoldable-restricted - - rank2classes < 0 # tried rank2classes-1.5.4, but its *library* requires the disabled package: data-functor-logistic - - 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.20.0.0 + - pwstore-fast < 0 # tried pwstore-fast-2.4.4, but its *library* requires the disabled package: cryptohash + - qm-interpolated-string < 0 # tried qm-interpolated-string-0.3.1.0, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - quaalude < 0 # tried quaalude-0.0.0.1, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 || ^>=4.20 and the snapshot contains base-4.21.2.0 + - 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.23.0.0 + - radius < 0 # tried radius-0.7.1.0, but its *library* requires the disabled package: cryptonite + - ral < 0 # tried ral-0.2.2, but its *library* requires QuickCheck ^>=2.14.2 || ^>=2.15 || ^>=2.18.0.0 and the snapshot contains QuickCheck-2.16.0.0 + - random-fu < 0 # tried random-fu-0.3.0.1, but its *library* requires random >=1.2 && < 1.3 and the snapshot contains random-1.3.1 + - random-fu < 0 # tried random-fu-0.3.0.1, but its *library* requires the disabled package: rvar + - 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.21.2.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.9.1.0 - - record-dot-preprocessor < 0 # tried record-dot-preprocessor-0.2.17, but its *library* requires ghc >=8.6 && < 9.9 and the snapshot contains ghc-9.10.1 - - records-sop < 0 # tried records-sop-0.1.1.1, but its *library* requires deepseq >=1.3 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - records-sop < 0 # tried records-sop-0.1.1.1, but its *library* requires ghc-prim >=0.5 && < 0.11 and the snapshot contains ghc-prim-0.11.0 + - record-dot-preprocessor < 0 # tried record-dot-preprocessor-0.2.17, but its *library* requires ghc >=8.6 && < 9.9 and the snapshot contains ghc-9.12.4 + - records-sop < 0 # tried records-sop-0.1.1.1, but its *library* requires deepseq >=1.3 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - records-sop < 0 # tried records-sop-0.1.1.1, but its *library* requires ghc-prim >=0.5 && < 0.11 and the snapshot contains ghc-prim-0.13.0 + - redact < 0 # tried redact-0.6.0.0, but its *executable* requires optparse-applicative >=0.18 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 - 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 containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - 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 < 0 # tried reform-0.2.7.5, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - reform-blaze < 0 # tried reform-blaze-0.2.4.4, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1.1 - - reform-happstack < 0 # tried reform-happstack-0.2.5.6, but its *library* requires happstack-server >=7.0 && < 7.9 and the snapshot contains happstack-server-7.9.2.1 - - reform-happstack < 0 # tried reform-happstack-0.2.5.6, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1.1 + - reform-blaze < 0 # tried reform-blaze-0.2.4.4, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.4 + - 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.2.0 + - 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.1.4 + - 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.1.4 - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsp - - regex-applicative < 0 # tried regex-applicative-0.3.4, but its *library* requires the disabled package: filtrable - - 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.20.0.0 - - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - 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.21.2.0 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires regex-base >=0.93 && < 0.94 and the snapshot contains regex-base-0.94.0.3 - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires regex-pcre-builtin >=0.94 && < 0.95 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 && < 1.3 and the snapshot contains text-2.1.1 + - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* requires text >=1.2 && < 1.3 and the snapshot contains text-2.1.4 - 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.3 - - registry < 0 # tried registry-0.6.3.1, but its *library* requires the disabled package: protolude - - registry-aeson < 0 # tried registry-aeson-0.3.1.1, but its *library* requires the disabled package: protolude - - registry-hedgehog < 0 # tried registry-hedgehog-0.8.2.1, but its *library* requires the disabled package: protolude - - registry-hedgehog-aeson < 0 # tried registry-hedgehog-aeson-0.3.1.1, but its *library* requires the disabled package: protolude - - registry-options < 0 # tried registry-options-0.2.1.0, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.1 - - regression-simple < 0 # tried regression-simple-0.2.1, but its *library* requires base >=4.3 && < 4.20 and the snapshot contains base-4.20.0.0 - - repline < 0 # tried repline-0.4.2.0, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - require < 0 # tried require-0.4.11, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - require < 0 # tried require-0.4.11, but its *library* requires text >=1.2.3.0 && < 2 and the snapshot contains text-2.1.1 - - resistor-cube < 0 # tried resistor-cube-0.0.1.4, but its *executable* requires the disabled package: lapack - - rhine-bayes < 0 # tried rhine-bayes-1.5, but its *library* requires the disabled package: monad-bayes - - riak-protobuf < 0 # tried riak-protobuf-0.25.0.0, but its *library* requires the disabled package: proto-lens - - run-haskell-module < 0 # tried run-haskell-module-0.0.2, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - run-haskell-module < 0 # tried run-haskell-module-0.0.2, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - 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.1 - - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires constraints >=0.10 && < 0.14 and the snapshot contains constraints-0.14.2 + - registry-options < 0 # tried registry-options-0.2.1.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.4 + - regression-simple < 0 # tried regression-simple-0.2.1, but its *library* requires base >=4.3 && < 4.20 and the snapshot contains base-4.21.2.0 + - rel8 < 0 # tried rel8-1.7.0.0, but its *library* requires hasql >=1.8 && < 1.10 and the snapshot contains hasql-1.10.3.5 + - repa < 0 # tried repa-3.4.2.0, but its *library* requires QuickCheck >=2.8 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - repa-algorithms < 0 # tried repa-algorithms-3.4.2.0, but its *library* requires base >=4.8 && < 4.21 and the snapshot contains base-4.21.2.0 + - repa-io < 0 # tried repa-io-3.4.2.0, but its *library* requires base >=4.8 && < 4.21 and the snapshot contains base-4.21.2.0 + - require < 0 # tried require-0.4.11, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - require < 0 # tried require-0.4.11, but its *library* requires text >=1.2.3.0 && < 2 and the snapshot contains text-2.1.4 + - rerefined < 0 # tried rerefined-0.8.0, but its *library* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - rerefined < 0 # tried rerefined-0.8.0, but its *library* requires template-haskell >=2.19.0.0 && < 2.23 and the snapshot contains template-haskell-2.23.0.0 + - rhine-bayes < 0 # tried rhine-bayes-1.8, but its *library* requires the disabled package: monad-bayes + - run-haskell-module < 0 # tried run-haskell-module-0.0.2, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - run-haskell-module < 0 # tried run-haskell-module-0.0.2, but its *library* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - 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.3.0 + - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires constraints >=0.10 && < 0.14 and the snapshot contains constraints-0.14.4 - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires containers >=0.6 && < 0.7 and the snapshot contains containers-0.7 - - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.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 deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.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.2 - 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.4 - - salak < 0 # tried salak-0.3.6, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - salak < 0 # tried salak-0.3.6, but its *library* requires bytestring >=0.10.8 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - salak < 0 # tried salak-0.3.6, but its *library* requires containers >=0.6.0 && < 0.7 and the snapshot contains containers-0.7 - - salak < 0 # tried salak-0.3.6, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - salak < 0 # tried salak-0.3.6, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - salak < 0 # tried salak-0.3.6, but its *library* requires hashable >=1.2.7.0 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - 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.1.1 - - 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.1.1 - - 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 < 0 # tried salak-0.3.6, but its *library* requires data-default >=0.7.1 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - salak < 0 # tried salak-0.3.6, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - salak < 0 # tried salak-0.3.6, but its *library* requires hashable >=1.2.7.0 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - salak < 0 # tried salak-0.3.6, but its *library* requires mtl >=2.2.2 && < 2.3 and the snapshot contains mtl-2.3.2 + - salak < 0 # tried salak-0.3.6, but its *library* requires text >=1.2.3 && < 1.3 and the snapshot contains text-2.1.4 + - salak < 0 # tried salak-0.3.6, but its *library* requires time >=1.8.0 && < 1.11 and the snapshot contains time-1.14 + - 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.1.4 + - 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.14 - salak-toml < 0 # tried salak-toml-0.3.5.3, but its *library* requires tomland >=1.1.0 && < 1.2 and the snapshot contains tomland-1.3.3.3 - - 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.1.1 + - 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.1.4 - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires containers >=0.5.7.1 && < 0.6 and the snapshot contains containers-0.7 - - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires text >=1.2.0.0 && < 2 and the snapshot contains text-2.1.1 - - sel < 0 # tried sel-0.0.2.0, but its *library* requires text-display ^>=0.0 and the snapshot contains text-display-1.0.0.0 - - selda < 0 # tried selda-0.5.2.0, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - selda < 0 # tried selda-0.5.2.0, but its *library* requires containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - 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.1.1 - - 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.2.3.0 - - selda-json < 0 # tried selda-json-0.1.1.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - 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.1.1 - - selda-postgresql < 0 # tried selda-postgresql-0.1.8.2, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - 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.14.0.1 - - 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.11.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.1.1 - - 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 bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - 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.1.1 - - 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.1 - - serf < 0 # tried serf-0.1.1.0, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.1 - - servant-auth-server < 0 # tried servant-auth-server-0.4.9.0, but its *library* requires data-default-class >=0.1.2.0 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.11.0, but its *library* requires the disabled package: servant-swagger - - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.11.0, but its *library* requires the disabled package: swagger2 - - 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.2 - - 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.14.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.2 + - scalendar < 0 # tried scalendar-1.2.0, but its *library* requires text >=1.2.0.0 && < 2 and the snapshot contains text-2.1.4 + - selda-postgresql < 0 # tried selda-postgresql-0.1.8.3, but its *library* requires postgresql-binary >=0.12 && < 0.15 and the snapshot contains postgresql-binary-0.15.0.1 + - selda-sqlite < 0 # tried selda-sqlite-0.1.7.3, but its *library* requires time >=1.5 && < 1.13 and the snapshot contains time-1.14 + - semigroupoid-extras < 0 # tried semigroupoid-extras-5, but its *library* requires semigroupoids >=5 && < 6 and the snapshot contains semigroupoids-6.0.2 + - serf < 0 # tried serf-0.1.1.0, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.4 + - 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.3.0 + - 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.3.0 - 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.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.3.4 - - 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.2 + - 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.3.6 + - 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.3.0 - 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.1 - - 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.1.1 - - 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-openapi3 < 0 # tried servant-openapi3-2.0.1.6, but its *library* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 - - servant-openapi3 < 0 # tried servant-openapi3-2.0.1.6, but its *library* requires base-compat >=0.10.5 && < 0.14 and the snapshot contains base-compat-0.14.1 - - 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.12.1.0 + - 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.1.4 + - 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.14 + - servant-multipart-client < 0 # tried servant-multipart-client-0.12.2, but its *library* requires random >=0.1.1 && < 1.3 and the snapshot contains random-1.3.1 + - servant-openapi3 < 0 # tried servant-openapi3-2.0.1.6, but its *library* requires insert-ordered-containers >=0.2.1.0 && < 0.3 and the snapshot contains insert-ordered-containers-0.3.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.12.2.0 - 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.3.4 - - 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 lens >=4.9 && < 5 and the snapshot contains lens-5.3.6 + - 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.2 - 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.1 - - 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.1.1 - - servant-purescript < 0 # tried servant-purescript-0.10.0.0, but its *library* requires the disabled package: servant-subscriber + - 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.1.4 - servant-quickcheck < 0 # tried servant-quickcheck-0.1.1.0, but its *library* requires data-default-class >=0.0 && < 0.2 and the snapshot contains data-default-class-0.2.0.0 - 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.1 - - 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.1.1 - - servant-swagger < 0 # tried servant-swagger-1.2.1, but its *library* requires the disabled package: insert-ordered-containers - - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* requires base >=4.7 && < 4.19 and the snapshot contains base-4.20.0.0 - - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* requires bytestring >=0.10.4.0 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* requires file-embed-lzma >=0 && < 0.1 and the snapshot contains file-embed-lzma-0.1 - - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* requires text >=1.2.3.0 && < 2.1 and the snapshot contains text-2.1.1 - - 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.12.1.0 - - 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 + - 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.1.4 + - serversession-backend-persistent < 0 # tried serversession-backend-persistent-2.0.4, but its *library* requires persistent >=2.15.0.0 && < 2.18.0.0 and the snapshot contains persistent-2.18.1.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.12.2.0 + - 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.12 - 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 + - sets < 0 # tried sets-0.0.6.2, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.2 - sets < 0 # tried sets-0.0.6.2, but its *library* requires witherable < 0.5 and the snapshot contains witherable-0.5 - shake-language-c < 0 # tried shake-language-c-0.12.0, but its *library* requires the disabled package: fclabels - shake-plus-extended < 0 # tried shake-plus-extended-0.4.1.0, but its *library* requires the disabled package: ixset-typed - - shikensu < 0 # tried shikensu-0.4.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - shikensu < 0 # tried shikensu-0.4.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.1 + - shikensu < 0 # tried shikensu-0.4.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - shikensu < 0 # tried shikensu-0.4.1, but its *library* requires text >=1 && < 2 and the snapshot contains text-2.1.4 - 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.4 - - shower < 0 # tried shower-0.2.0.3, but its *library* requires base >=4.10 && < 4.18 and the snapshot contains base-4.20.0.0 - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires data-default >=0.5 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.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.1.1 - - 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.1 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires data-default >=0.5 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.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.2 + - 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.2 + - 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.1.4 + - simple-log < 0 # tried simple-log-0.9.12, but its *library* requires time >=1.5 && < 1.10 and the snapshot contains time-1.14 + - 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.3.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 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - 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.22.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.1.1 - - siphash < 0 # tried siphash-1.0.3, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.12.1.0 + - simple-session < 0 # tried simple-session-2.0.0, but its *library* requires the disabled package: cryptohash + - siphash < 0 # tried siphash-1.0.3, but its *library* requires bytestring < 0.11 and the snapshot contains bytestring-0.12.2.0 - skeletons < 0 # tried skeletons-0.4.0, but its *executable* requires the disabled package: tinytemplate - - slack-web < 0 # tried slack-web-2.2.0.0, but its *executable* requires the disabled package: butcher - - smash < 0 # tried smash-0.1.3, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.20.0.0 - - smash < 0 # tried smash-0.1.3, but its *library* requires bifunctors ^>=5.5 and the snapshot contains bifunctors-5.6.2 - - smash < 0 # tried smash-0.1.3, but its *library* requires deepseq ^>=1.4 and the snapshot contains deepseq-1.5.0.0 - - smash < 0 # tried smash-0.1.3, but its *library* requires hashable ^>=1.3 and the snapshot contains hashable-1.5.0.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.2.3.0 - - 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.20.0.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.20.0.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.3.4 - - 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.20.0.0 - - soap < 0 # tried soap-0.2.3.6, but its *library* requires bytestring >=0.10.6 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - soap < 0 # tried soap-0.2.3.6, but its *library* requires text >=1.2.2.1 && < 2.1 and the snapshot contains text-2.1.1 - - 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 text >=1.2.2.1 && < 2.1 and the snapshot contains text-2.1.1 - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires text >=1.2.2.1 && < 2.1 and the snapshot contains text-2.1.1 - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: x509 - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: x509-store - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: x509-validation - - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires tls >=1.3.8 && < 2.0 and the snapshot contains tls-2.1.8 - - 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.2.7.0 + - slack-web < 0 # tried slack-web-2.2.0.0, but its *library* requires http-client-tls >=0.3 && < 0.4 and the snapshot contains http-client-tls-0.4.0 + - smash < 0 # tried smash-0.1.3, but its *library* requires base >=4.12 && < 4.17 and the snapshot contains base-4.21.2.0 + - smash < 0 # tried smash-0.1.3, but its *library* requires bifunctors ^>=5.5 and the snapshot contains bifunctors-5.6.3 + - smash < 0 # tried smash-0.1.3, but its *library* requires deepseq ^>=1.4 and the snapshot contains deepseq-1.5.1.0 + - smash < 0 # tried smash-0.1.3, but its *library* requires hashable ^>=1.3 and the snapshot contains hashable-1.5.1.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.2.5.0 + - 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.21.2.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.21.2.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.3.6 + - 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.21.2.0 + - snap < 0 # tried snap-1.1.3.3, but its *library* requires the disabled package: pwstore-fast + - 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.2.8.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.20.0.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.12.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.21.2.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.14.2.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.6 - - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires deepseq >=1.1 && < 1.5 and the snapshot contains deepseq-1.5.0.0 - - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires zlib >=0.6 && < 0.7 and the snapshot contains zlib-0.7.1.0 - - spdx < 0 # tried spdx-1.1, but its *library* requires Cabal-syntax ^>=3.10.3.0 || ^>=3.12.1.0 and the snapshot contains Cabal-syntax-3.12.0.0 - - spdx < 0 # tried spdx-1.1, but its *library* requires the disabled package: puresat + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires deepseq >=1.1 && < 1.5 and the snapshot contains deepseq-1.5.1.0 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires ghc-typelits-knownnat >=0.2 && < 0.8 and the snapshot contains ghc-typelits-knownnat-0.8.4 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires ghc-typelits-natnormalise >=0.5 && < 0.8 and the snapshot contains ghc-typelits-natnormalise-0.9.6 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires parallel >=3.2 && < 3.3 and the snapshot contains parallel-3.3.0.0 + - sparse-tensor < 0 # tried sparse-tensor-0.2.1.5, but its *library* requires zlib >=0.6 && < 0.7 and the snapshot contains zlib-0.7.1.1 + - spdx < 0 # tried spdx-1.1.0.1, but its *library* requires Cabal-syntax ^>=3.10.3.0 || ^>=3.12.1.0 || ^>=3.16.1.0 and the snapshot contains Cabal-syntax-3.14.2.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.3.1 - - 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.1 - - 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.1 + - 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.3.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.3.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.1.1 + - 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.1.4 - squeal-postgresql < 0 # tried squeal-postgresql-0.9.2.0, but its *library* requires the disabled package: records-sop - - srt < 0 # tried srt-0.1.2.0, but its *library* requires text >=1.0 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1.1 - - 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.2 + - srt < 0 # tried srt-0.1.2.0, but its *library* requires text >=1.0 && < 2.1 and the snapshot contains text-2.1.4 + - 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.2 + - 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.1.4 + - 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.3 - 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.1.1 + - 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.1.4 - 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 - - stack < 0 # tried stack-3.5.1, but its *library* requires Cabal >=3.10.3.0 && < 3.12 and the snapshot contains Cabal-3.12.0.0 - - stack < 0 # tried stack-3.5.1, but its *library* requires array >=0.5.8.0 and the snapshot contains array-0.5.7.0 - - stack < 0 # tried stack-3.5.1, but its *library* requires directory >=1.3.8.5 and the snapshot contains directory-1.3.8.3 - - static-canvas < 0 # tried static-canvas-0.2.0.3, but its *library* requires base >=4.5 && < 4.19 and the snapshot contains base-4.20.0.0 - - static-canvas < 0 # tried static-canvas-0.2.0.3, but its *library* requires text >=0.11 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.1 + - stack < 0 # tried stack-3.11.1, but its *library* requires the disabled package: http-download + - static-canvas < 0 # tried static-canvas-0.2.0.3, but its *library* requires base >=4.5 && < 4.19 and the snapshot contains base-4.21.2.0 + - static-canvas < 0 # tried static-canvas-0.2.0.3, but its *library* requires text >=0.11 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.4 - 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.2.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.1 - - stm-supply < 0 # tried stm-supply-0.2.0.0, but its *library* requires the disabled package: concurrent-supply - - 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.1 + - 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.3.0 - streaming-cassava < 0 # tried streaming-cassava-0.2.0.0, but its *library* requires streaming-bytestring >=0.2 && < 0.3 and the snapshot contains streaming-bytestring-0.3.4 - - streamly-examples < 0 # tried streamly-examples-0.2.0, but its *executable* requires base >=4.9 && < 4.20 and the snapshot contains base-4.20.0.0 - - streamly-examples < 0 # tried streamly-examples-0.2.0, but its *executable* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - streamly-examples < 0 # tried streamly-examples-0.2.0, but its *executable* requires streamly ==0.10.0 and the snapshot contains streamly-0.10.1 - - streamly-examples < 0 # tried streamly-examples-0.2.0, but its *executable* requires streamly-core ==0.2.0 and the snapshot contains streamly-core-0.2.3 - - streamly-examples < 0 # tried streamly-examples-0.2.0, but its *executable* requires tasty-bench >=0.3 && < 0.4 and the snapshot contains tasty-bench-0.4.1 - - 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.3.4 - - stripe-concepts < 0 # tried stripe-concepts-1.0.3.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - stripe-signature < 0 # tried stripe-signature-1.0.0.17, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - stripe-wreq < 0 # tried stripe-wreq-1.0.1.17, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - stripe-wreq < 0 # tried stripe-wreq-1.0.1.17, but its *library* requires lens ^>=5.0.1 || ^>=5.1 || ^>=5.2 and the snapshot contains lens-5.3.4 - - strong-path < 0 # tried strong-path-1.1.4.0, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - strong-path < 0 # tried strong-path-1.1.4.0, but its *library* requires hashable >=1.3 && < 1.4 and the snapshot contains hashable-1.5.0.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.22.0.0 - - structured < 0 # tried structured-0.1.1, but its *library* requires base >=4.7.0.2 && < 4.20 and the snapshot contains base-4.20.0.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.2 + - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* requires lens ^>=5 and the snapshot contains lens-5.3.6 + - stripe-concepts < 0 # tried stripe-concepts-1.0.3.4, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - stripe-signature < 0 # tried stripe-signature-1.0.0.17, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - stripe-wreq < 0 # tried stripe-wreq-1.0.1.17, but its *library* requires base ^>=4.16 || ^>=4.17 || ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - stripe-wreq < 0 # tried stripe-wreq-1.0.1.17, but its *library* requires lens ^>=5.0.1 || ^>=5.1 || ^>=5.2 and the snapshot contains lens-5.3.6 + - strongweak < 0 # tried strongweak-0.12.0, but its *library* requires the disabled package: rerefined + - structured < 0 # tried structured-0.1.1, but its *library* requires base >=4.7.0.2 && < 4.20 and the snapshot contains base-4.21.2.0 - structured < 0 # tried structured-0.1.1, but its *library* requires containers >=0.5.5.1 && < 0.7 and the snapshot contains containers-0.7 - - structured < 0 # tried structured-0.1.1, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - structured-cli < 0 # tried structured-cli-2.7.0.1, but its *library* requires data-default >=0.7.1.1 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - 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.1 + - structured < 0 # tried structured-0.1.1, but its *library* requires hashable >=1.2 && < 1.5 and the snapshot contains hashable-1.5.1.0 + - structured-cli < 0 # tried structured-cli-2.7.0.1, but its *library* requires data-default >=0.7.1.1 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - 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.3.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 - - stylish-haskell < 0 # tried stylish-haskell-0.14.6.0, but its *library* requires containers >=0.3 && < 0.7 and the snapshot contains containers-0.7 - - stylish-haskell < 0 # tried stylish-haskell-0.14.6.0, but its *library* requires filepath >=1.1 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - stylish-haskell < 0 # tried stylish-haskell-0.14.6.0, but its *library* requires ghc-lib-parser >=9.8 && < 9.9 and the snapshot contains ghc-lib-parser-9.10.1.20250103 - - stylish-haskell < 0 # tried stylish-haskell-0.14.6.0, but its *library* requires ghc-lib-parser-ex >=9.8 && < 9.9 and the snapshot contains ghc-lib-parser-ex-9.10.0.0 - - superbuffer < 0 # tried superbuffer-0.3.1.2, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 - - swagger2 < 0 # tried swagger2-2.8.9, but its *library* requires the disabled package: insert-ordered-containers - - 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.2.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.22.0.0 - - sydtest-persistent-postgresql < 0 # tried sydtest-persistent-postgresql-0.2.0.3, but its *library* requires the disabled package: tmp-postgres - - systemd-socket-activation < 0 # tried systemd-socket-activation-1.1.0.2, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 + - stylish-haskell < 0 # tried stylish-haskell-0.15.1.0, but its *executable* requires optparse-applicative >=0.12 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - superbuffer < 0 # tried superbuffer-0.3.1.2, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 + - sweet-egison < 0 # tried sweet-egison-0.1.2.1, but its *library* requires template-haskell < 2.23 and the snapshot contains template-haskell-2.23.0.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.23.0.0 + - sydtest-mongo < 0 # tried sydtest-mongo-0.2.0.0, but its *library* requires the disabled package: mongoDB + - sydtest-persistent-postgresql < 0 # tried sydtest-persistent-postgresql-0.3.0.0, but its *library* requires the disabled package: tmp-postgres + - systemd-socket-activation < 0 # tried systemd-socket-activation-1.1.0.2, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 - systemd-socket-activation < 0 # tried systemd-socket-activation-1.1.0.2, but its *library* requires containers ^>=0.6.4 and the snapshot contains containers-0.7 - - systemd-socket-activation < 0 # tried systemd-socket-activation-1.1.0.2, but its *library* requires network ^>=3.1.2 and the snapshot contains network-3.2.7.0 - - taffybar < 0 # tried taffybar-4.0.3, but its *library* requires gi-gdk >=3.0.6 && < 3.1 and the snapshot contains gi-gdk-4.0.10 - - taffybar < 0 # tried taffybar-4.0.3, but its *library* requires gi-gtk >=3.0.26 && < 4 and the snapshot contains gi-gtk-4.0.12 - - taffybar < 0 # tried taffybar-4.0.3, but its *library* requires the disabled package: broadcast-chan + - systemd-socket-activation < 0 # tried systemd-socket-activation-1.1.0.2, but its *library* requires network ^>=3.1.2 and the snapshot contains network-3.2.8.0 - tasty-bench-fit < 0 # tried tasty-bench-fit-0.1.1, but its *library* requires the disabled package: regression-simple - - tasty-hunit-compat < 0 # tried tasty-hunit-compat-0.2.0.1, but its *library* requires tasty < 1.5 and the snapshot contains tasty-1.5.3 + - tasty-hunit-compat < 0 # tried tasty-hunit-compat-0.2.0.1, but its *library* requires tasty < 1.5 and the snapshot contains tasty-1.5.4 - 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.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.5.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.1.2 + - 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.5.4 + - 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.14 + - 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.1.5 - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.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 tasty >=0.1 && < 1.5 and the snapshot contains tasty-1.5.3 - - 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.1.1 - - tasty-wai < 0 # tried tasty-wai-0.1.2.0, but its *library* requires base >=4.8 && < 4.20 and the snapshot contains base-4.20.0.0 + - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.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.2 + - tasty-test-reporter < 0 # tried tasty-test-reporter-0.1.1.4, but its *library* requires tasty >=0.1 && < 1.5 and the snapshot contains tasty-1.5.4 + - 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.1.4 - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires the disabled package: x509 - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires the disabled package: x509-store - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires the disabled package: x509-system - - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires tls >=1.3 && < 2.0 and the snapshot contains tls-2.1.8 - - 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.2.7.0 - - tensors < 0 # tried tensors-0.1.5, but its *library* requires deepseq >=1.4.4.0 && < 1.5 and the snapshot contains deepseq-1.5.0.0 + - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires tls >=1.3 && < 2.0 and the snapshot contains tls-2.1.14 + - 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.2.8.0 + - telegram-bot-api < 0 # tried telegram-bot-api-7.4.5, but its *library* requires the disabled package: servant-multipart-client + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.14.4, but its *library* requires the disabled package: servant-multipart-client + - tensors < 0 # tried tensors-0.1.5, but its *library* requires deepseq >=1.4.4.0 && < 1.5 and the snapshot contains deepseq-1.5.1.0 - 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.22.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.23.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 && < 1.2.4 and the snapshot contains text-2.1.1 - - text-all < 0 # tried text-all-0.4.2, but its *library* requires text-format >=0.3.1 && < 0.3.2 and the snapshot contains text-format-0.3.2.1 - - text-format < 0 # tried text-format-0.3.2.1, but its *library* requires base >=4.3 && < 4.19 and the snapshot contains base-4.20.0.0 - 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.22.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.20.0.0 - - through-text < 0 # tried through-text-0.1.0.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - through-text < 0 # tried through-text-0.1.0.0, but its *library* requires text >=0.11 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.1 - - thumbnail-plus < 0 # tried thumbnail-plus-1.0.5, but its *library* requires either < 5 and the snapshot contains either-5.0.2 - - time-parsers < 0 # tried time-parsers-0.2, but its *library* requires base >=4.6 && < 4.19 and the snapshot contains base-4.20.0.0 - - time-parsers < 0 # tried time-parsers-0.2, but its *library* requires template-haskell >=2.8.0.0 && < 2.21 and the snapshot contains template-haskell-2.22.0.0 + - 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.23.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.21.2.0 + - through-text < 0 # tried through-text-0.1.0.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - through-text < 0 # tried through-text-0.1.0.0, but its *library* requires text >=0.11 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.4 + - thumbnail-plus < 0 # tried thumbnail-plus-1.0.5, but its *library* requires either < 5 and the snapshot contains either-5.0.3 + - time-parsers < 0 # tried time-parsers-0.2, but its *library* requires base >=4.6 && < 4.19 and the snapshot contains base-4.21.2.0 + - time-parsers < 0 # tried time-parsers-0.2, but its *library* requires template-haskell >=2.8.0.0 && < 2.21 and the snapshot contains template-haskell-2.23.0.0 + - time-parsers < 0 # tried time-parsers-0.2, but its *library* requires time >=1.4.0.1 && < 1.13 and the snapshot contains time-1.14 + - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: cryptonite - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: x509 - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: x509-store - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: x509-system - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: x509-validation - - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires tls >=1.3 && < 1.6 and the snapshot contains tls-2.1.8 + - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires tls >=1.3 && < 1.6 and the snapshot contains tls-2.1.14 + - tls-sslkeylogfile < 0 # tried tls-sslkeylogfile-0.1.0.0, but its *library* requires tls >=1.8 && < 2.0 || >=2.0 && < 2.3 and the snapshot contains tls-2.4.3 - tmp-postgres < 0 # tried tmp-postgres-1.34.1.0, but its *library* requires ansi-wl-pprint < 1 and the snapshot contains ansi-wl-pprint-1.0.2 - - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.0 - - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.20.0.0 - - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - tonaparser < 0 # tried tonaparser-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.0 - - tonaparser < 0 # tried tonaparser-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.20.0.0 - - tonatona < 0 # tried tonatona-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.0 - - tonatona < 0 # tried tonatona-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.20.0.0 - - tonatona-logger < 0 # tried tonatona-logger-0.3.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.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.20.0.0 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.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.20.0.0 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.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.20.0.0 - - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.12.0.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.20.0.0 - - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - 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.2 - - 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.2 - - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires warp >=3.3 && < 3.4 and the snapshot contains warp-3.4.7 - - tostring < 0 # tried tostring-0.2.1.1, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1 - - 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.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.2.7.0 - - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* requires the disabled package: transient + - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.0 + - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.21.2.0 + - tonalude < 0 # tried tonalude-0.2.0.0, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - tonaparser < 0 # tried tonaparser-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.0 + - tonaparser < 0 # tried tonaparser-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.21.2.0 + - tonatona < 0 # tried tonatona-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.0 + - tonatona < 0 # tried tonatona-0.2.0.0, but its *library* requires base >=4.14 && < 4.18 and the snapshot contains base-4.21.2.0 + - tonatona-logger < 0 # tried tonatona-logger-0.3.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.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.21.2.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.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.21.2.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires persistent >=2.13 && < 2.15 and the snapshot contains persistent-2.18.1.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires persistent-postgresql >=2.13 && < 2.14 and the snapshot contains persistent-postgresql-2.14.3.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.2.0.0, but its *library* requires resource-pool >=0.2 && < 0.5 and the snapshot contains resource-pool-0.5.0.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.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.21.2.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.2.0.0, but its *library* requires persistent >=2.13 && < 2.15 and the snapshot contains persistent-2.18.1.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.2.0.0, but its *library* requires resource-pool >=0.2 && < 0.5 and the snapshot contains resource-pool-0.5.0.0 + - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires Cabal < 3.12 and the snapshot contains Cabal-3.14.2.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.21.2.0 + - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - 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.3.0 + - 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.3.0 + - tonatona-servant < 0 # tried tonatona-servant-0.2.0.0, but its *library* requires warp >=3.3 && < 3.4 and the snapshot contains warp-3.4.13.1 + - tostring < 0 # tried tostring-0.2.1.1, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.4 + - tracing-control < 0 # tried tracing-control-0.0.7.3, but its *library* requires time >=1.8 && < 1.13 and the snapshot contains time-1.14 + - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* requires mmorph >=1.0 && < 1.2 and the snapshot contains mmorph-1.2.2 + - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* requires transformers >=0.3 && < 0.6 and the snapshot contains transformers-0.6.3.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.3.0 - 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.2.0.0, but its *library* requires base ^>=4.8.2 || ^>=4.9.1 || ^>=4.10.1 || ^>=4.11.0 || ^>=4.12.0 || ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 and the snapshot contains base-4.20.0.0 - - true-name < 0 # tried true-name-0.2.0.0, but its *library* requires template-haskell ^>=2.10.0 || ^>=2.11.1 || ^>=2.12.0 || ^>=2.13.0 || ^>=2.14.0 || ^>=2.15.0 || ^>=2.16.0 || ^>=2.17.0 || ^>=2.18.0 || ^>=2.19.0 || ^>=2.20.0 || ^>=2.21.0 and the snapshot contains template-haskell-2.22.0.0 + - triplesec < 0 # tried triplesec-0.2.2.1, but its *library* requires mtl < 2.3 and the snapshot contains mtl-2.3.2 + - triplesec < 0 # tried triplesec-0.2.2.1, but its *library* requires the disabled package: cryptonite + - true-name < 0 # tried true-name-0.2.0.0, but its *library* requires base ^>=4.8.2 || ^>=4.9.1 || ^>=4.10.1 || ^>=4.11.0 || ^>=4.12.0 || ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 and the snapshot contains base-4.21.2.0 + - true-name < 0 # tried true-name-0.2.0.0, but its *library* requires template-haskell ^>=2.10.0 || ^>=2.11.1 || ^>=2.12.0 || ^>=2.13.0 || ^>=2.14.0 || ^>=2.15.0 || ^>=2.16.0 || ^>=2.17.0 || ^>=2.18.0 || ^>=2.19.0 || ^>=2.20.0 || ^>=2.21.0 and the snapshot contains template-haskell-2.23.0.0 - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires containers >=0.5.6 && < 0.7 and the snapshot contains containers-0.7 - - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires data-default >=0.5 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - 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.5.0.0 + - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* requires data-default >=0.5 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - 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.5.1.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.4.2 - - 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.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.2 + - 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.3.0 + - turtle < 0 # tried turtle-1.6.2, but its *library* requires optparse-applicative >=0.18 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 - type-combinators-singletons < 0 # tried type-combinators-singletons-0.2.1.0, but its *library* requires the disabled package: type-combinators - - 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.20.0.0 - - unfoldable < 0 # tried unfoldable-1.0.1, but its *library* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - unfoldable < 0 # tried unfoldable-1.0.1, but its *library* requires transformers >=0.4 && < 0.6 and the snapshot contains transformers-0.6.1.1 - - unfoldable-restricted < 0 # tried unfoldable-restricted-0.0.3, but its *library* requires the disabled package: unfoldable - - unfork < 0 # tried unfork-1.0.0.2, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.20.0.0 - - union-find < 0 # tried union-find-0.2, but its *library* requires base >=4.4 && < 4.17 and the snapshot contains base-4.20.0.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.21.2.0 + - unfork < 0 # tried unfork-1.0.0.2, but its *library* requires base ^>=4.18 || ^>=4.19 and the snapshot contains base-4.21.2.0 + - union-find < 0 # tried union-find-0.2, but its *library* requires base >=4.4 && < 4.17 and the snapshot contains base-4.21.2.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.1.1 - - unique < 0 # tried unique-0.0.1, but its *library* requires hashable >=1.1 && < 1.5 and the snapshot contains hashable-1.5.0.0 - - urbit-hob < 0 # tried urbit-hob-0.3.3, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.1 - - 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.4 - - userid < 0 # tried userid-0.1.3.8, but its *library* requires the disabled package: boomerang - - 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.12.1.0 - - 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.1.1 - - 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.6 - - vado < 0 # tried vado-0.0.14, but its *library* requires base >=4.0.0.0 && < 4.17 and the snapshot contains base-4.20.0.0 - - vado < 0 # tried vado-0.0.14, but its *library* requires filepath >=1.2.0.0 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - vado < 0 # tried vado-0.0.14, but its *library* requires text >=0.11.3.1 && < 2.1 and the snapshot contains text-2.1.1 - - 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.1.1 + - 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.1.4 + - urbit-hob < 0 # tried urbit-hob-0.3.3, but its *library* requires text >=1.2 && < 2 and the snapshot contains text-2.1.4 + - userid < 0 # tried userid-0.1.3.8, but its *library* requires base >=4.6 && < 4.21 and the snapshot contains base-4.21.2.0 + - 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.12.2.0 + - 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.1.4 + - 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.6.1 + - vado < 0 # tried vado-0.0.14, but its *library* requires base >=4.0.0.0 && < 4.17 and the snapshot contains base-4.21.2.0 + - vado < 0 # tried vado-0.0.14, but its *library* requires filepath >=1.2.0.0 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - vado < 0 # tried vado-0.0.14, but its *library* requires text >=0.11.3.1 && < 2.1 and the snapshot contains text-2.1.4 + - 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.1.4 - 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 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.20.0.0 - - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 + - vec < 0 # tried vec-0.5.1.1, but its *library* requires QuickCheck ^>=2.14.2 || ^>=2.15.0.1 || ^>=2.18.0.0 and the snapshot contains QuickCheck-2.16.0.0 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires base >=4.11 && < 4.17 and the snapshot contains base-4.21.2.0 + - vector-circular < 0 # tried vector-circular-0.1.4, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.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.9.1.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.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.22.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.2 + - 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.23.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.2.0 - - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires deepseq ^>=1.4 and the snapshot contains deepseq-1.5.0.0 - - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.1 + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires deepseq ^>=1.4 and the snapshot contains deepseq-1.5.1.0 + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires text ^>=1.2 and the snapshot contains text-2.1.4 - 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.1 + - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires transformers ^>=0.5 and the snapshot contains transformers-0.6.3.0 - vectortiles < 0 # tried vectortiles-1.5.1, but its *library* requires vector >=0.11 && < 0.13 and the snapshot contains vector-0.13.2.0 - - verbosity < 0 # tried verbosity-0.4.0.0, but its *library* requires the disabled package: dhall - - wai-control < 0 # tried wai-control-0.2.0.0, but its *library* requires websockets >=0.12.5.3 && < 0.13 and the snapshot contains websockets-0.13.0.0 - - 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-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.19.0.0 - 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 - - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *executable* requires warp < 3.4 and the snapshot contains warp-3.4.7 - - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.1 - - wavefront < 0 # tried wavefront-0.7.1.5, but its *library* requires base >=4.8 && < 4.18 and the snapshot contains base-4.20.0.0 - - wavefront < 0 # tried wavefront-0.7.1.5, but its *library* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - wavefront < 0 # tried wavefront-0.7.1.5, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.1 - - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 + - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *executable* requires warp < 3.4 and the snapshot contains warp-3.4.13.1 + - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *library* requires data-default >=0.7 && < 0.8 and the snapshot contains data-default-0.8.0.2 + - wai-session-redis < 0 # tried wai-session-redis-0.1.0.5, but its *library* requires hedis >=0.14 && < 0.16 and the snapshot contains hedis-0.16.1 + - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires containers >=0.4 && < 0.7 and the snapshot contains containers-0.7 - - 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.1.1 + - 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.2 + - web-plugins < 0 # tried web-plugins-0.4.1, but its *library* requires text >=0.11 && < 1.3 and the snapshot contains text-2.1.4 - web-routes-boomerang < 0 # tried web-routes-boomerang-0.28.4.5, but its *library* requires the disabled package: boomerang - - web-routes-happstack < 0 # tried web-routes-happstack-0.23.12.3, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - web-routes-happstack < 0 # tried web-routes-happstack-0.23.12.3, but its *library* requires happstack-server >=6.6 && < 7.9 and the snapshot contains happstack-server-7.9.2.1 - - web-routes-happstack < 0 # tried web-routes-happstack-0.23.12.3, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 + - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.4 - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.2, but its *library* requires the disabled package: hsp - - web-routes-wai < 0 # tried web-routes-wai-0.24.3.2, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - web-routes-wai < 0 # tried web-routes-wai-0.24.3.2, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.1 - - webby < 0 # tried webby-1.1.1, but its *library* requires aeson >=1.4 && < 2.2 and the snapshot contains aeson-2.2.3.0 - - 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 http-api-data >=0.4 && < 0.6 and the snapshot contains http-api-data-0.6.2 - - webby < 0 # tried webby-1.1.1, but its *library* requires resourcet >=1.2 && < 1.3 and the snapshot contains resourcet-1.3.0 - - webby < 0 # tried webby-1.1.1, but its *library* requires text >=1.2 && < 2.1 and the snapshot contains text-2.1.1 + - web-routes-wai < 0 # tried web-routes-wai-0.24.3.2, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - web-routes-wai < 0 # tried web-routes-wai-0.24.3.2, but its *library* requires text >=0.11 && < 2.1 and the snapshot contains text-2.1.4 + - web3-tools < 0 # tried web3-tools-0.1.0.0, but its *library* requires crypton >=1.0.4 && < 1.1 and the snapshot contains crypton-1.1.4 - 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.1 - - webgear-openapi < 0 # tried webgear-openapi-1.3.1, but its *library* requires the disabled package: insert-ordered-containers - - webgear-openapi < 0 # tried webgear-openapi-1.3.1, but its *library* requires the disabled package: openapi3 - - webgear-swagger < 0 # tried webgear-swagger-1.3.1, but its *library* requires the disabled package: insert-ordered-containers - - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.13, but its *library* requires bytestring >=0.10.0 && < 0.12 and the snapshot contains bytestring-0.12.1.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.1.1 - - 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-x11 < 0 # tried wild-bind-x11-0.2.0.17, but its *library* requires the disabled package: X11 - - wire-streams < 0 # tried wire-streams-0.1.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - 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.12.1.0 - - 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.1.1 + - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* requires webdriver >=0.6 && < 0.9 and the snapshot contains webdriver-0.15.0.0 + - webgear-core < 0 # tried webgear-core-1.5.0, but its *library* requires jose >=0.10 && < 0.13 and the snapshot contains jose-0.13 + - webgear-server < 0 # tried webgear-server-1.5.0, but its *library* requires jose >=0.10 && < 0.13 and the snapshot contains jose-0.13 + - webgear-swagger < 0 # tried webgear-swagger-1.5.0, but its *library* requires swagger2 >=2.8 && < 2.9 and the snapshot contains swagger2-2.9 + - webgear-swagger-ui < 0 # tried webgear-swagger-ui-1.5.0, but its *library* requires the disabled package: webgear-core + - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.13, but its *library* requires bytestring >=0.10.0 && < 0.12 and the snapshot contains bytestring-0.12.2.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.1.4 + - 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.14 + - wire-streams < 0 # tried wire-streams-0.1.1.0, but its *library* requires bytestring >=0.10 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - 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.12.2.0 + - 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.1.4 - 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.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.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.1.1 - - 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.12.1.0 + - 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.2 + - 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.1.4 + - 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.12.2.0 - 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.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.1.1 - - 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.1 - - wordpress-auth < 0 # tried wordpress-auth-1.0.0.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 + - 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.1.4 + - 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.3.0 + - wordpress-auth < 0 # tried wordpress-auth-1.0.0.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.2.0 - wordpress-auth < 0 # tried wordpress-auth-1.0.0.1, but its *library* requires cookie >=0.4 && < 0.5 and the snapshot contains cookie-0.5.1 - - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: ansigraph - - 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.1 - - 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.3.4 - - 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.1 - - 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.1 + - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: cryptonite + - 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.3.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.3.6 + - 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.3.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.2 + - 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.3.0 - wss-client < 0 # tried wss-client-0.3.0.0, but its *library* requires websockets >=0.12.6 && < 0.13 and the snapshot contains websockets-0.13.0.0 - - x11-xim < 0 # tried x11-xim-0.0.9.0, but its *library* requires the disabled package: X11 - - xml-lens < 0 # tried xml-lens-0.3.1, but its *library* requires containers >=0.4.0 && < 0.7 and the snapshot contains containers-0.7 - - xml-lens < 0 # tried xml-lens-0.3.1, but its *library* requires text >=0.7 && < 1.3 || >=2 && < 2.1 and the snapshot contains text-2.1.1 - - xml-lens < 0 # tried xml-lens-0.3.1, but its *library* requires xml-conduit >=1.1 && < 1.10 and the snapshot contains xml-conduit-1.10.0.0 - - xml-parser < 0 # tried xml-parser-0.1.1.1, but its *library* requires bytestring >=0.10 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - xml-parser < 0 # tried xml-parser-0.1.1.1, but its *library* requires containers ^>=0.6 and the snapshot contains containers-0.7 - - 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.1 - - xml-parser < 0 # tried xml-parser-0.1.1.1, but its *library* requires xml-conduit ^>=1.9.1.1 and the snapshot contains xml-conduit-1.10.0.0 - - xmonad < 0 # tried xmonad-0.18.0, but its *library* requires the disabled package: X11 - - xmonad-contrib < 0 # tried xmonad-contrib-0.18.1, but its *library* requires the disabled package: X11 - - xmonad-extras < 0 # tried xmonad-extras-0.17.2, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - xmonad-extras < 0 # tried xmonad-extras-0.17.2, but its *library* requires dbus >=1.2 && < 1.4 and the snapshot contains dbus-1.4.0 - 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.1.1 - - 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.3 - - 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.3 - - 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.27.0 - - 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.9 - - yesod-csp < 0 # tried yesod-csp-0.2.6.0, but its *library* requires template-haskell >=2.19.0 && < 2.22 and the snapshot contains template-haskell-2.22.0.0 - - 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.27.0 - - 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.9 - - yesod-middleware-csp < 0 # tried yesod-middleware-csp-1.2.0, but its *library* requires bytestring >=0.9 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - yesod-middleware-csp < 0 # tried yesod-middleware-csp-1.2.0, but its *library* requires containers >=0.6.0 && < 0.7 and the snapshot contains containers-0.7 - - yesod-middleware-csp < 0 # tried yesod-middleware-csp-1.2.0, but its *library* requires filepath >=1.4.2 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - 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-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.18.1.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.12.1 + - 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.29.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.9.3 + - 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.8.0.0, but its *library* requires the disabled package: hoauth2 + - yesod-bin < 0 # tried yesod-bin-1.6.2.4, but its *executable* requires tar >=0.4 && < 0.7 and the snapshot contains tar-0.7.1.0 + - 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.29.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.9.3 + - yesod-middleware-csp < 0 # tried yesod-middleware-csp-1.3.0, but its *library* requires template-haskell >=2.14 && < 2.23 and the snapshot contains template-haskell-2.23.0.0 + - yesod-middleware-csp < 0 # tried yesod-middleware-csp-1.3.0, but its *library* requires time >=1.8 && < 1.13 and the snapshot contains time-1.14 + - 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.3 - 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.27.0 - - 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-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.29.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.3 + - yi-frontend-pango < 0 # tried yi-frontend-pango-0.19.2, but its *library* requires the disabled package: glib - 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 transformers >=0.5.6 && < 0.6 and the snapshot contains transformers-0.6.1.1 + - zero < 0 # tried zero-0.1.5, but its *library* requires semigroups >=0.16 && < 0.20 and the snapshot contains semigroups-0.20.1 + - 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.2 + - 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.3.0 - zipper-extra < 0 # tried zipper-extra-0.1.3.2, but its *library* requires the disabled package: comonad-extras - - 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.12.1.0 - - zlib-lens < 0 # tried zlib-lens-0.1.2.1, but its *library* requires zlib >=0.5.4 && < 0.7 and the snapshot contains zlib-0.7.1.0 - - zm < 0 # tried zm-0.3.2, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.12.1.0 + - 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.12.2.0 + - zlib-lens < 0 # tried zlib-lens-0.1.2.1, but its *library* requires zlib >=0.5.4 && < 0.7 and the snapshot contains zlib-0.7.1.1 + - zm < 0 # tried zm-0.3.2, but its *library* requires bytestring >=0.10.6.0 && < 0.11 and the snapshot contains bytestring-0.12.2.0 - zm < 0 # tried zm-0.3.2, but its *library* requires containers >=0.5 && < 0.6 and the snapshot contains containers-0.7 - - zm < 0 # tried zm-0.3.2, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.0.0 + - zm < 0 # tried zm-0.3.2, but its *library* requires deepseq >=1.4 && < 1.5 and the snapshot contains deepseq-1.5.1.0 - zm < 0 # tried zm-0.3.2, but its *library* requires flat >=0.3 && < 0.4 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.1 - - ztail < 0 # tried ztail-1.2.0.3, but its *executable* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.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 && < 2.8 and the snapshot contains unix-2.8.5.1 - - zxcvbn-hs < 0 # tried zxcvbn-hs-0.3.6, but its *executable* requires filepath ^>=1.4 and the snapshot contains filepath-1.5.2.0 - - zxcvbn-hs < 0 # tried zxcvbn-hs-0.3.6, but its *library* requires containers ^>=0.6 and the snapshot contains containers-0.7 - - zxcvbn-hs < 0 # tried zxcvbn-hs-0.3.6, but its *library* requires zlib ^>=0.6 and the snapshot contains zlib-0.7.1.0 + - zm < 0 # tried zm-0.3.2, but its *library* requires the disabled package: cryptonite + - 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.3.0 + - ztail < 0 # tried ztail-1.2.0.4, but its *executable* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - ztail < 0 # tried ztail-1.2.0.4, but its *executable* requires time >=1.5 && < 1.13 and the snapshot contains time-1.14 + - zxcvbn-hs < 0 # tried zxcvbn-hs-0.3.8, but its *executable* requires filepath ^>=1.4 and the snapshot contains filepath-1.5.5.0 # End of Library and exe bounds failures + "GHC major version specific bounds": + # Cabal + - cabal-install < 3.16 + - cabal-install-solver < 3.16 + - ormolu < 0.8.1 # requires Cabal-syntax-3.16 and ghc-9.14 + - fourmolu < 0.20 + + # https://github.com/commercialhaskell/stackage/issues/7904 + - ghc-lib-parser < 9.13 + - ghc-lib-parser-ex < 9.13 + - ghc-lib < 9.14.1 + - ghc-syntax-highlighter < 0.0.14 + + # ghc-exactprint depends on ghc + - ghc-exactprint < 1.14 + + # base >=4.22 + - eliminators < 0.9.7 + - singletons-base < 3.5.1 + - singletons-th < 3.5.1 + - th-desugar < 1.19 + + # liquidhaskell + - liquidhaskell < 0.9.14 + - liquidhaskell-boot < 0.9.14 + - liquid-fixpoint < 0.9.6.3.6 + + # file-io + - git-annex < 10.20260213 + + # xhtml + - cgi < 3001.5.2.0 + "Stackage upper bounds": - # https://github.com/commercialhaskell/stackage/issues/7467 - - cabal-install < 3.14 - - cabal-install-solver < 3.14 - # https://github.com/commercialhaskell/stackage/issues/7610 - - singletons-th < 3.5 + # https://github.com/commercialhaskell/stackage/issues/7851 + - microlens < 0.5 + - microlens-contra < 0.1.0.4 + - microlens-ghc < 0.4.15.2 + - microlens-mtl < 0.2.1.1 + - microlens-platform < 0.4.4.2 + - microlens-pro < 0.2.0.5 + - microlens-th < 0.4.3.18 + - parameterized-utils < 2.2.0.0 - # https://github.com/commercialhaskell/stackage/issues/7611 - - th-desugar < 1.18 + # https://github.com/commercialhaskell/stackage/issues/7857 + - QuickCheck < 2.17.0.0 + - quickcheck-instances < 0.4 + - megaparsec < 9.7.1 + - megaparsec-tests < 9.7.1 - # https://github.com/commercialhaskell/stackage/issues/7627 - - hosc < 0.21 - - tidal-link < 1.1 + # https://github.com/commercialhaskell/stackage/issues/7898 + - egison-pattern-src < 0.2.2 - # https://github.com/commercialhaskell/stackage/issues/7635 - - singletons-base < 3.5 - - eliminators < 0.9.6 + # https://github.com/commercialhaskell/stackage/issues/7912 + - http-api-data < 0.7 - # https://github.com/commercialhaskell/stackage/issues/7649 - - hasql < 1.9 - - hasql-pool < 1.3 - - hasql-optparse-applicative < 0.9 - - hasql-transaction < 1.1.1.3 + # https://github.com/commercialhaskell/stackage/issues/7926 + - transformers-compat < 0.8 - # https://github.com/commercialhaskell/stackage/issues/7654 - - srtree < 2.0.0.3 + # https://github.com/commercialhaskell/stackage/issues/7927 + - base-compat < 0.15.0 + - base-compat-batteries < 0.15.0 - # https://github.com/commercialhaskell/stackage/issues/7680 - - diagrams-lib < 1.5 - - diagrams-svg < 1.5 + # https://github.com/commercialhaskell/stackage/issues/7930 + - happy < 2.2 + - happy-lib < 2.2 - # https://github.com/commercialhaskell/stackage/issues/7704 - - ghc-tcplugins-extra < 0.5 - - ghc-typelits-natnormalise < 0.7.11 + # https://github.com/rzk-lang/rzk/issues/220 + - lsp < 2.8 + - lsp-test < 0.18 + - lsp-types < 2.4 - # https://github.com/commercialhaskell/stackage/issues/7705 - - partialord < 0.0.3 + # https://github.com/commercialhaskell/stackage/issues/7987 + - pqueue < 1.7 - # https://github.com/commercialhaskell/stackage/issues/7709 - - tls < 2.1.9 + # https://github.com/commercialhaskell/stackage/issues/7993 + - isocline < 1.1.0 - # https://github.com/commercialhaskell/stackage/issues/7722 - - persistent < 2.15 + # https://github.com/commercialhaskell/stackage/issues/8006 + - some < 1.1 + - bowtie < 0.8 - # https://github.com/commercialhaskell/stackage/issues/7723 - - sorted-list < 0.3 + # https://github.com/commercialhaskell/stackage/issues/8007 + - ansi-wl-pprint < 1.1 + - prettyprinter-compat-ansi-wl-pprint < 1.1 + + # https://github.com/commercialhaskell/stackage/issues/8008 + - unix-time < 0.5 + + # https://github.com/commercialhaskell/stackage/issues/8011 + - semialign < 1.4 + + # https://github.com/commercialhaskell/stackage/issues/8016 + - aeson < 2.3 + + # https://github.com/commercialhaskell/stackage/issues/8018 + - text-iso8601 < 0.2 + + # https://github.com/commercialhaskell/stackage/issues/8037 + - magic < 1.2 + + # https://github.com/commercialhaskell/stackage/issues/8049 + - apecs < 0.10 + + # https://github.com/commercialhaskell/stackage/issues/8058 + - hackage-revdeps < 0.4 + + # https://github.com/commercialhaskell/stackage/issues/8063 + - falsify < 0.4 + + # https://github.com/commercialhaskell/stackage/issues/8067 + - haskell-src-exts < 1.24 # end of Stackage upper bounds # end of packages # Package flags are applied to individual packages, and override the values of # global-flags +# NB: These flags are shipped to users, ie used in snapshots (#7438): +# as such we should prefer to use the upstream defaults as far as possible package-flags: QuickCheck: old-random: false @@ -7878,6 +7877,10 @@ package-flags: curl: new-base: true + # https://github.com/dhall-lang/dhall-haskell/issues/2748 + dhall: + use-http-client-tls: false + hpio: test-hlint: false @@ -7903,9 +7906,6 @@ package-flags: nix-paths: allow-relative-paths: true - fay: - test: true - reedsolomon: llvm: false @@ -7940,15 +7940,6 @@ package-flags: hackage-security: Cabal-syntax: true - cabal-add: - cabal-syntax: true - - hackage-revdeps: - cabal-syntax: true - - aws-sns-verify: - development: true - optics-operators: build-readme: false @@ -7975,16 +7966,19 @@ package-flags: # See https://github.com/commercialhaskell/stackage/issues/7474 password: crypton: true + # See https://github.com/commercialhaskell/stackage/issues/7265 + argon2: true + bcrypt: true + pbkdf2: true + scrypt: true # https://github.com/commercialhaskell/stackage/issues/7461 hashable: arch-native: false - file-io: - os-string: true - path: os-string: true + # end of package-flags # Special configure options for individual packages @@ -8007,6 +8001,503 @@ skipped-builds: # end of skipped-builds +# 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 + - brick + - butter # 0.1.0.6 + - cabal-file-th # 0.2.7 + - cacophony # 0.11.0 https://github.com/centromere/cacophony/issues/15 + - cereal # 0.5.8.3 https://github.com/GaloisInc/cereal/issues/109 + - conduit-connection # 0.1.0.5 + - conferer # 1.1.0.0 + - cryptohash # 0.11.9 Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built + - derive-topdown # 0.1.1.0 https://github.com/HaskellZhangSong/derive-topdown/issues/2 + - do-notation # 0.1.0.2 + - fields-and-cases # 0.2.0.0 https://github.com/m-bock/fields-and-cases/issues/1 + - fortran-src # 0.16.3 https://github.com/camfort/fortran-src/issues/293 + - functor-combinators # 0.4.1.4 https://github.com/mstksg/functor-combinators/issues/9 + - generic-lens # https://github.com/commercialhaskell/stackage/issues/6377 + - 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 ... + - haskey-btree # https://github.com/commercialhaskell/stackage/issues/7393 + - hasktorch # error while loading shared libraries: libc10.so: cannot open shared object file: No such file or directory + - hasql-migration # 0.3.1 https://github.com/tvh/hasql-migration/issues/11 + - heist # GHC 9.8.1 + - hweblib # 0.6.3 https://github.com/aycanirican/hweblib/issues/3 + - inline-r # 1.0.1 https://github.com/tweag/HaskellR/issues/371 + - interpolate # should be fixed in 9.12.3 https://github.com/sol/interpolate/issues/20 + - kdl-hs # 1.1.0 fatal error: ./Template.hs: No such file or directory + - leveldb-haskell + - lifted-base # 0.2.3.12 compile fail + - massiv-persist # 1.0.0.3 https://github.com/lehins/massiv-compat/issues/1 + - 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 + - path # 0.9.6 https://github.com/commercialhaskell/stackage/issues/7503 + - protobuf # 0.2.1.4 + - record-wrangler # 0.1.1.0 + - rocksdb-haskell # 1.0.1 linking problems with Ubuntu 24.2 + - say # 0.1.0.1 https://github.com/fpco/say/issues/5 + - secp256k1-haskell # #5948/closed + - serialise # 0.2.6.1 https://github.com/well-typed/cborg/issues/344 + - servant-http-streams # 0.20.2 https://github.com/haskell-servant/servant/issues/1817 + - servant-static-th # 1.0.0.1 https://github.com/cdepillabout/servant-static-th/issues/21 + - status-notifier-item # 0.3.2.11 https://github.com/taffybar/status-notifier-item/issues/13 + - sydtest-hspec # 0.4.0.4 https://github.com/commercialhaskell/stackage/issues/7944 + - thread-supervisor # 0.2.0.0 + - tls # 2.4.3 spec: executable not found + - 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 + - tztime # 0.1.1.0 + - 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 + - wai-middleware-metrics # 0.2.4 https://github.com/Helkafen/wai-middleware-metrics/issues/4 + - web-view # 0.7.1 https://github.com/seanhess/atomic-css/issues/30 + - xml-html-qq # 0.1.0.1 + - xmlgen # 0.6.2.2 https://github.com/skogsbaer/xmlgen/issues/6 + + # test executable not found in our environment + - AvlTree # 4.3: AvlTree-tests: executable not found + - dataframe # 2.0.0.0 tests: executable not found + - lsfrom # "test: lsfrom does not exist (No such file or directory)" for 9.12.4 bootstrap + - hmatrix-backprop # hmatrix-backprop-test: executable not found (9.12.4) + - xlsx # 1.2.0: data-test: executable not found for 9.12.4 bootstrap + + # Consistent test failures + - ANum # executable not found, https://github.com/commercialhaskell/stackage/issues/7809 + - Allure # 0.11.0.0 + - SpatialMath # 0.2.7.1 https://github.com/ghorn/spatial-math/issues/10 + - aeson-schemas # 1.4.3.0 https://github.com/ocramz/aeson-schema/issues/31 + - ap-normalize # 0.1.0.1 ghc-9.6 + - astro # 0.4.3.0 https://github.com/aligusnet/astro/issues/8 + - aws-sns-verify # https://github.com/commercialhaskell/stackage/issues/7438 + - bugsnag # 1.2.0.0 https://github.com/pbrisbin/bugsnag-haskell/issues/99 + - coinor-clp # 0.0.0.2 + - componentm # https://github.com/roman/Haskell-componentm/issues/7 + - easy-logger # 0.1.0.7 https://github.com/schnecki/easy-logger/issues/1 + - filecache # 0.5.2 https://github.com/bartavelle/filecache/issues/13 + - free-foil # 0.2.0 doctest-0.4 + - generics-eot # 0.4.0.1 ghc-9.6 + - genvalidity-appendful # https://github.com/commercialhaskell/stackage/issues/7465 + - genvalidity-mergeful # https://github.com/commercialhaskell/stackage/issues/7465 + - ghc-typelits-extra # 0.4.8 https://github.com/clash-lang/ghc-typelits-extra/issues/60 + - ghc-typelits-natnormalise # 0.7.11 https://github.com/clash-lang/ghc-typelits-natnormalise/issues/89 + - granite # 0.6.0.0 https://github.com/mchav/granite/issues/17 + - hinotify # 0.4.2 https://github.com/kolmodin/hinotify/issues/38 + - hsexif # 0.6.1.10 Missing test file + - human-readable-duration # 0.2.1.5 testcase mismatch + - katip # 0.8.8.2 https://github.com/Soostone/katip/issues/155 + - lr-acts # 0.1 lr-acts-test: executable not found + - markov-chain-usage-model # https://github.com/advancedtelematic/markov-chain-usage-model/issues/44 + - monad-logger-aeson # 0.4.1.3 ghc-9.10.1 + - pvar # 1.0.0.0 ghc-9.6 + - quote-quot # ghc-9.12.3 https://github.com/Bodigrim/quote-quot/issues/9 + - read-env-var # 1.0.0.0 https://github.com/cdepillabout/read-env-var/issues/2 + - regex-tdfa # 1.3.2.4 doctest-0.4 + - rocksdb-haskell-jprupp # 2.1.7 https://github.com/jprupp/rocksdb-haskell/issues/10 + - sandwich-webdriver # 0.3.0.1 needs Nix binary and store. + - servant-auth-client # 0.4.2.0 https://github.com/haskell-servant/servant/issues/1864 + - subcategories # 0.2.1.2 + - sydtest # 0.20.0.0 + - sydtest-autodocodec # https://github.com/commercialhaskell/stackage/issues/7465 + - sydtest-yesod # 0.3.0.3 https://github.com/NorfairKing/sydtest/issues/101 + - symbolize # 1.0.3.1 https://github.com/Qqwy/haskell-symbolize/issues/12 + - tar-conduit # https://github.com/snoyberg/tar-conduit/issues/33 + - unicode-data # 0.6.0 https://github.com/composewell/unicode-data/issues/137 + - uri-templater # 1.0.0.1 https://github.com/iand675/uri-templater/issues/18 + - validation # 1.2.2 [Cabal-8123] Use of GHC's environment variable GHC_PACKAGE_PATH is incompatible with Cabal. + - vary # 0.1.1.3 doctest-0.4 + - web3-tools # 0.1.0.0 https://github.com/gtollini/web3-tools/issues/1 + + # 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 + - comfort-glpk # 0.1 https://github.com/commercialhaskell/stackage/issues/7482 + - concurrent-extra # https://github.com/basvandijk/concurrent-extra/issues/12 + - crypto-numbers + - cryptocompare # live api request can time out + - css-text # https://github.com/yesodweb/css-text/issues/10 + - 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 + - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 + - kdt # 0.2.6 https://github.com/giogadi/kdt/issues/7 + - lapack + - massiv-serialise + - math-functions # https://github.com/bos/math-functions/issues/25 + - mltool # https://github.com/Alexander-Ignatyev/mltool/issues/1 + - myers-diff # myers-diff-test: executable not found + - network # Unfortunately network failures seem to happen haphazardly + - nsis # Intermittent on non-Windows systems + - tdigest # 0.3.1 https://github.com/phadej/tdigest/issues/46 + - text-icu # 0.8.0.5 https://github.com/haskell/text-icu/issues/103 + - threads-supervisor # https://github.com/adinapoli/threads-supervisor/issues/33 + - tree-diff # 0.3.4 https://github.com/haskellari/tree-diff/issues/79 + - wreq + + # 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 + - 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 Postgres instance + - bindings-GLFW # Expects running X server + - bitcoin-api + - bitcoin-api-extra + - bloodhound # ElasticSearch + - cabal-install + - cabal-install-parsers # 0.6.3 # Need local cabal environment + - call-alloy # Requires a Java Runtime that allows class file version 61.0 + - cayley-client + - consul-haskell + - consumers # requires PostgreSQL instance + - cql-io # Cassandra + - 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 + - esqueleto-postgis # postgresql + - essence-of-live-coding-warp # 0.2.8 + - eventful-dynamodb + - eventful-postgresql + - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 + - filestore # needs mercurial + - 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 + - github-rest # needs github auth + - 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 + - hasql # PostgreSQL + - hasql-dynamic-statements # PostgreSQL + - hasql-notifications # PostgreSQL + - hasql-queue + - hasql-transaction # PostgreSQL + - hedis + - hexml-lens # Access to web.archive.org is unreliable. + - hjsmin # Test-runner expects a cabal-style 'dist-newstyle' directory + - hledger-web # 1.43.2 test: setupTerm: Couldn't look up terminfo entry "unknown" + - hocilib # oracle + - 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 + - http-reverse-proxy # 0.6.1.0 + - http2 # executable not found https://github.com/kazu-yamamoto/http2/issues/22 + - influxdb + - jsaddle-warp # Needs node + - jvm + - katip-elasticsearch # elasticsearch + - katip-wai # 0.2.0.0 + - koji-tool + - liquid-fixpoint # assumes git checkout https://github.com/ucsd-progsys/liquid-fixpoint/issues/760 + - log # ElasticSearch + - lsp-test # example: lsp-demo-reactor-server: createProcess: posix_spawnp: does not exist (No such file or directory) + - 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.7.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" + - ollama-haskell # https://github.com/commercialhaskell/stackage/pull/7576 + - 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 + - pinecone # Requires pinecone API key + - pipes-mongodb + - postgresql-libpq-notify + - postgresql-query # PostgreSQL + - postgresql-simple # PostgreSQL + - postgresql-simple-interval # needs local server + - postgresql-simple-migration + - postgresql-simple-queue + - postgresql-syntax # hedgehog-test executable not found https://github.com/commercialhaskell/stackage/pull/6102 + - postgresql-typed # PostgreSQL + - purescript # git 128 https://github.com/purescript/purescript/issues/2292 + - quic-simple # https://github.com/commercialhaskell/stackage/issues/7883 + - 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 + - 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-acid-state + - 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 + - stakhanov # needs a local PostgreSQL server with the PGMQ extension enabled + - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account + - sydtest-wai # epollControl does not exist. Stackage server issue? + - tasty-papi # Exception: PAPI: Failed to add counter TOT_INS: Permission level does not permit operation [-15] + - testcontainers # docker: readCreateProcessWithExitCode: posix_spawnp: does not exist (No such file or directory) + - users-persistent # sqlite + - users-postgresql-simple # PostgreSQL + - 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 + - webdriver # needs nix + - webdriver-angular # webdriver server + - webdriver-precore # Could not find 'webdriver' root directory from: /home/curators/work/unpack-dir/unpacked/webdriver-precore-... + - webex-teams-api # 0.2.0.1 + - webex-teams-conduit # 0.2.0.1 + - webex-teams-pipes # 0.2.0.1 + - websockets + - what4 # Missing cvc4 and cvc5 - cvc5 is not available for ubuntu 22.04 https://github.com/GaloisInc/what4/issues/262 + - yesod-auth-hashdb # 1.7.1.7 + - yesod-core + - yesod-persistent # 1.6.0.8 + - yesod-test # 1.6.23 + + # 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 + - aeson-jsonpath # https://github.com/taimoorzaeem/aeson-jsonpath/issues/31 + - atomic-css # https://github.com/seanhess/atomic-css/issues/27 + - brittany # https://github.com/commercialhaskell/stackage/issues/6465 + - cpio-conduit # Test file not in tarball https://github.com/da-x/cpio-conduit/issues/1 + - 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 + - lentil # 1.5.9.0 missing test-files/lang-comm/scheme.scm + - pandoc # missing files for 9.12.4 bootstrap + - persistent # https://github.com/commercialhaskell/stackage/issues/6037 + - ppad-aead # 0.3.1 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-base58 # 0.2.3 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-bip39 # 0.3.3 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-hkdf # 0.3.2 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-hmac-drbg # 0.3.1 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-pbkdf # 0.2.2 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-secp256k1 # 0.5.4 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-sha256 # 0.3.2 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - ppad-sha512 # 0.2.2 missing test *.json (https://github.com/commercialhaskell/stackage/issues/7910) + - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 + - rzk + + # 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 + - 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.4.0 /test/resources/include.child2 doesn't exist + - fakedata # 1.0.5 https://github.com/fakedata-haskell/fakedata/issues/57 + - fast-builder # prop: executable not found + - fedora-repoquery # as part of https://github.com/commercialhaskell/stackage/pull/7517 + - free-alacarte + - 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 + - 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 + - lattices # quicheck flakiness + - list-transformer + - massiv-io + - megaparsec-tests + - memcache # 0.3.0.2 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 + - 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 + - paramtree # https://github.com/commercialhaskell/stackage/issues/7972 + - persistent-mtl # cannot run tests with persistent > 2.14 + - 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 + - req # https://github.com/commercialhaskell/stackage/issues/6904 + - rescue + - roc-id # negative quickcheck resize + - rose-trees + - safe-decimal + - simple-affine-space + - simple-vec3 # https://github.com/commercialhaskell/stackage/pull/5410 + - singletons-base + - sized + - socket # https://github.com/commercialhaskell/stackage/issues/7973 + - spatial-math + - sqids + - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/6 + - 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 + - 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 + - yggdrasil-schema # https://github.com/commercialhaskell/stackage/issues/7518 + - genvalidity-network-uri # URI <> + - haskoin-node # "reads arbitrary addresses" failed + + # 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 + - 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 + + # 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 + - http-io-streams # https://github.com/commercialhaskell/stackage/issues/7644 + - 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 + - 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 + + # 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. @@ -8016,6 +8507,10 @@ skipped-tests: - symengine - hasql-interpolate # https://github.com/commercialhaskell/stackage/issues/6841 + # missing tools + - taffybar # The program 'hspec-discover' version >=2 && <3 is required but the version of .../9.12.2/bin/hspec-discover could not be determined. + - rank2classes # The program 'markdown-unlit' version >=0.5 && <0.7 is required but the version of .../9.12.2/bin/markdown-unlit could not be determined. + # Timeouts # These tests sometimes take too long and hit the stackage build # servers time limit so these shouldn't be removed from @@ -8025,8 +8520,11 @@ skipped-tests: - 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) + - haskell-igraph # hangs at 100% CPU; kill-resistant. Also an expected failure: https://github.com/commercialhaskell/stackage/issues/7971 + - hie-bios # often hangs - hpc-codecov # timeouts? https://github.com/commercialhaskell/stackage/issues/5976 - ihaskell # Never finishes https://github.com/IHaskell/IHaskell/issues/1413 + - isocline # interactive hangs - jsaddle # Never finishes without framebuffer https://github.com/ghcjs/jsaddle/issues/9 - json-rpc # flaky - network-attoparsec @@ -8083,19 +8581,18 @@ skipped-tests: - vec # @jsynacek - hpqtypes # needs a running postgres database + - hpqtypes-effectful # needs a running postgres database - hpqtypes-extras # needs a running postgres database # norfairking - afksautodocodec # runs doctest + - safe-coloured-text-gen # missing -parsing: https://github.com/NorfairKing/safe-coloured-text/pull/12 - 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 # @thielema - glpk-headers @@ -8104,6 +8601,9 @@ skipped-tests: # @andreasabel - system-fileio # tests malfunction + - reflex # hlint test suite needs fixes + - reflex-dom-core # https://github.com/reflex-frp/reflex-dom/issues/392 + # Uses Cabal's "library internal" stanza feature - s3-signer @@ -8156,762 +8656,314 @@ skipped-tests: # 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 - - 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.24.0 - - 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.5 - - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires tasty >=1.2.3 && < 1.5 and the snapshot contains tasty-1.5.3 - - 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.1 + - 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.25.0 + - 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.7 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* requires tasty >=1.2.3 && < 1.5 and the snapshot contains tasty-1.5.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.2.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 - - airship # tried airship-0.9.5, but its *test-suite* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.12.1.0 - - airship # tried airship-0.9.5, but its *test-suite* requires tasty >=0.10.1 && < 1.3 and the snapshot contains tasty-1.5.3 + - airship # tried airship-0.9.5, but its *test-suite* requires bytestring >=0.9.1 && < 0.11 and the snapshot contains bytestring-0.12.2.0 + - airship # tried airship-0.9.5, but its *test-suite* requires tasty >=0.10.1 && < 1.3 and the snapshot contains tasty-1.5.4 - airship # tried airship-0.9.5, but its *test-suite* requires tasty-quickcheck >=0.8.3 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - airship # tried airship-0.9.5, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.1.1 - - algebraic-graphs # tried algebraic-graphs-0.7, but its *test-suite* requires inspection-testing >=0.4.2.2 && < 0.6 and the snapshot contains inspection-testing-0.6 - - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* requires hedgehog >=0.5 && < 1.1 and the snapshot contains hedgehog-1.5 - - 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.12 - - 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.5 - - 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.12 - - ascii-numbers # tried ascii-numbers-1.2.0.2, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.5 - - ascii-predicates # tried ascii-predicates-1.0.1.4, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.5 - - atom-conduit # tried atom-conduit-0.9.0.2, but its *test-suite* requires the disabled package: hlint - - aur # tried aur-7.0.7, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.3 - - aura # tried aura-3.2.10, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.3 - - avro # tried avro-0.6.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - aws-cloudfront-signed-cookies # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *test-suite* requires hedgehog ^>=1.4 and the snapshot contains hedgehog-1.5 - - barrier # tried barrier-0.1.1, but its *test-suite* requires tasty >=0.10 && < 1.5 and the snapshot contains tasty-1.5.3 - - base32 # tried base32-0.4, but its *test-suite* requires bytestring ^>=0.11 and the snapshot contains bytestring-0.12.1.0 - - beam-postgres # tried beam-postgres-0.5.4.2, but its *test-suite* requires the disabled package: testcontainers - - binary-tagged # tried binary-tagged-0.3.1, but its *test-suite* requires QuickCheck ^>=2.14 and the snapshot contains QuickCheck-2.15.0.1 - - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires QuickCheck ^>=2.14.3 and the snapshot contains QuickCheck-2.15.0.1 + - airship # tried airship-0.9.5, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.1.4 + - algebraic-graphs # tried algebraic-graphs-0.8, but its *test-suite* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - 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.7 + - 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.17 + - ascii-numbers # tried ascii-numbers-1.2.0.2, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.7 + - ascii-predicates # tried ascii-predicates-1.0.1.4, but its *test-suite* requires hedgehog ^>=1.1.2 || ^>=1.2 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.7 + - aur # tried aur-7.0.7, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.4 + - aura # tried aura-3.2.10, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.4 + - automaton # tried automaton-1.8, but its *test-suite* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - avro # tried avro-0.6.2.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - avro # tried avro-0.6.2.1, but its *test-suite* requires generic-lens >=1.2 && < 2.3 and the snapshot contains generic-lens-2.3.0.0 + - aws-cloudfront-signed-cookies # tried aws-cloudfront-signed-cookies-0.2.0.13, but its *test-suite* requires hedgehog ^>=1.4 and the snapshot contains hedgehog-1.7 + - barrier # tried barrier-0.1.1, but its *test-suite* requires tasty >=0.10 && < 1.5 and the snapshot contains tasty-1.5.4 + - base32 # tried base32-0.4, but its *test-suite* requires bytestring ^>=0.11 and the snapshot contains bytestring-0.12.2.0 + - binary-instances # tried binary-instances-1.0.6, but its *test-suite* requires QuickCheck ^>=2.14.3 || ^>=2.15.0.1 || ^>=2.18.0.0 and the snapshot contains QuickCheck-2.16.0.0 + - binary-tagged # tried binary-tagged-0.3.1, but its *test-suite* requires QuickCheck ^>=2.14 and the snapshot contains QuickCheck-2.16.0.0 + - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires doctest >=0.16.2 && < 0.25 and the snapshot contains doctest-0.25.0 + - bits-extra # tried bits-extra-0.0.2.3, but its *test-suite* requires hedgehog >=0.5.3 && < 1.6 and the snapshot contains hedgehog-1.7 + - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires QuickCheck ^>=2.14.3 and the snapshot contains QuickCheck-2.16.0.0 - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires hlint ^>=3.5 and the snapshot contains hlint-3.10 - - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires tasty ^>=1.4.3 and the snapshot contains tasty-1.5.3 + - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires tasty ^>=1.4.3 and the snapshot contains tasty-1.5.4 - blake2 # tried blake2-0.3.0.1, but its *test-suite* requires tasty-quickcheck ^>=0.10.2 and the snapshot contains tasty-quickcheck-0.11.1 - - blas-hs # tried blas-hs-0.1.1.0, but its *test-suite* requires base < 4.13 and the snapshot contains base-4.20.0.0 - - bloodhound # tried bloodhound-0.23.0.1, but its *test-suite* requires the disabled package: quickcheck-properties - - brittany # tried brittany-0.14.0.2, but its *test-suite* requires hspec ^>=2.8.3 and the snapshot contains hspec-2.11.12 - - buttplug-hs-core # tried buttplug-hs-core-0.1.0.1, but its *test-suite* requires QuickCheck >=2.14.2 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - 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.12 - - bytebuild # tried bytebuild-0.3.16.3, but its *test-suite* requires tasty-quickcheck >=0.10.1 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - blas-hs # tried blas-hs-0.1.1.0, but its *test-suite* requires base < 4.13 and the snapshot contains base-4.21.2.0 + - bloodhound # tried bloodhound-0.26.0.0, but its *test-suite* requires the disabled package: quickcheck-properties + - brittany # tried brittany-0.14.0.2, but its *test-suite* requires hspec ^>=2.8.3 and the snapshot contains hspec-2.11.17 + - bulletproofs # tried bulletproofs-1.1.0, but its *test-suite* requires the disabled package: cryptonite + - buttplug-hs-core # tried buttplug-hs-core-0.1.0.1, but its *test-suite* requires QuickCheck >=2.14.2 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - 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.17 + - bytebuild # tried bytebuild-0.3.17.0, but its *test-suite* requires QuickCheck >=2.13.1 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - bytebuild # tried bytebuild-0.3.17.0, but its *test-suite* requires tasty-quickcheck >=0.10.1 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - bytestring-trie # tried bytestring-trie-0.2.7.6, but its *test-suite* requires QuickCheck >=2.10 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 - bzlib # tried bzlib-0.5.2.0, but its *test-suite* requires tasty-quickcheck >=0.8 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - cabal-install # tried cabal-install-3.12.1.0, but its *test-suite* requires tasty-quickcheck < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - cabal-install # tried cabal-install-3.12.1.0, but its *test-suite* requires the disabled package: Cabal-QuickCheck - - cabal-install # tried cabal-install-3.12.1.0, but its *test-suite* requires the disabled package: Cabal-described - - cabal-install # tried cabal-install-3.12.1.0, but its *test-suite* requires the disabled package: Cabal-tests - - cabal-install # tried cabal-install-3.12.1.0, but its *test-suite* requires the disabled package: Cabal-tree-diff - - cabal-install-solver # tried cabal-install-solver-3.12.1.0, but its *test-suite* requires tasty-quickcheck < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - cacophony # tried cacophony-0.11.0, but its *test-suite* requires the disabled package: hlint - - cassava-conduit # tried cassava-conduit-0.6.6, but its *test-suite* requires QuickCheck >=2.12 && < 2.13 and the snapshot contains QuickCheck-2.15.0.1 - - cassava-conduit # tried cassava-conduit-0.6.6, but its *test-suite* requires bytestring >=0.11 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - cassava-conduit # tried cassava-conduit-0.6.6, but its *test-suite* requires text >=1.2 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.1 - - chimera # tried chimera-0.4.1.0, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - chimera # tried chimera-0.4.1.0, but its *test-suite* requires tasty-quickcheck < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - colour # tried colour-2.3.6, but its *test-suite* requires QuickCheck >=2.5 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - colour # tried colour-2.3.6, but its *test-suite* requires random >=1.0 && < 1.2 and the snapshot contains random-1.2.1.3 - - conduit-parse # tried conduit-parse-0.2.1.1, but its *test-suite* requires the disabled package: hlint - - configurator-pg # tried configurator-pg-0.2.10, but its *test-suite* requires filepath >=1.4 && < 1.5 and the snapshot contains filepath-1.5.2.0 + - cabal-install # tried cabal-install-3.14.2.0, but its *test-suite* requires QuickCheck >=2.14.3 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - cabal-install # tried cabal-install-3.14.2.0, but its *test-suite* requires the disabled package: Cabal-QuickCheck + - cabal-install # tried cabal-install-3.14.2.0, but its *test-suite* requires the disabled package: Cabal-described + - cabal-install # tried cabal-install-3.14.2.0, but its *test-suite* requires the disabled package: Cabal-tests + - cabal-install # tried cabal-install-3.14.2.0, but its *test-suite* requires the disabled package: Cabal-tree-diff + - cabal-install-parsers # tried cabal-install-parsers-0.6.3, but its *test-suite* requires tree-diff >=0.2 && < 0.4 and the snapshot contains tree-diff-0.4.1 + - cassava-conduit # tried cassava-conduit-0.6.6, but its *test-suite* requires QuickCheck >=2.12 && < 2.13 and the snapshot contains QuickCheck-2.16.0.0 + - cassava-conduit # tried cassava-conduit-0.6.6, but its *test-suite* requires bytestring >=0.11 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - cassava-conduit # tried cassava-conduit-0.6.6, but its *test-suite* requires text >=1.2 && < 1.3 || >=2.0 && < 2.1 and the snapshot contains text-2.1.4 + - co-log # tried co-log-0.7.0.0, but its *test-suite* requires doctest >=0.16.0 && < 0.25 and the snapshot contains doctest-0.25.0 + - co-log # tried co-log-0.7.0.0, but its *test-suite* requires hedgehog >=1.0 && < 1.6 and the snapshot contains hedgehog-1.7 + - colour # tried colour-2.3.7, but its *test-suite* requires QuickCheck >=2.5 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - colour # tried colour-2.3.7, but its *test-suite* requires random >=1.0 && < 1.3 and the snapshot contains random-1.3.1 - construct # tried construct-0.3.2, but its *test-suite* requires markdown-unlit >=0.5 && < 0.6 and the snapshot contains markdown-unlit-0.6.0 - - csg # tried csg-0.1.0.6, but its *test-suite* requires doctest < 0.17 and the snapshot contains doctest-0.24.0 - - csg # tried csg-0.1.0.6, but its *test-suite* requires tasty < 1.3 and the snapshot contains tasty-1.5.3 + - csg # tried csg-0.1.0.6, but its *test-suite* requires doctest < 0.17 and the snapshot contains doctest-0.25.0 + - csg # tried csg-0.1.0.6, but its *test-suite* requires tasty < 1.3 and the snapshot contains tasty-1.5.4 - csg # tried csg-0.1.0.6, but its *test-suite* requires tasty-quickcheck < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - data-array-byte # tried data-array-byte-0.1.0.1, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - data-clist # tried data-clist-0.2, but its *test-suite* requires QuickCheck >=2.4 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - deriveJsonNoPrefix # tried deriveJsonNoPrefix-0.1.0.1, but its *test-suite* requires aeson < 2 and the snapshot contains aeson-2.2.3.0 - - detour-via-sci # tried detour-via-sci-1.0.0, but its *test-suite* requires the disabled package: hlint + - darcs # tried darcs-2.18.5, but its *test-suite* requires QuickCheck >=2.13 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - data-clist # tried data-clist-0.2, but its *test-suite* requires QuickCheck >=2.4 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - data-findcycle # tried data-findcycle-0.1.2.0, but its *test-suite* requires QuickCheck >=2.7 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - delta-types # tried delta-types-1.0.0.0, but its *test-suite* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - deriveJsonNoPrefix # tried deriveJsonNoPrefix-0.1.0.1, but its *test-suite* requires aeson < 2 and the snapshot contains aeson-2.2.5.0 + - dhall # tried dhall-1.42.3, but its *test-suite* requires the disabled package: turtle - dhall-lsp-server # tried dhall-lsp-server-1.1.4, but its *test-suite* requires lsp-test >=0.15.0.0 && < 0.16 and the snapshot contains lsp-test-0.17.1.1 - dhall-lsp-server # tried dhall-lsp-server-1.1.4, but its *test-suite* requires lsp-types >=2.0.1 && < 2.1 and the snapshot contains lsp-types-2.3.0.1 - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires network-transport-tcp >=0.6 && < 0.7 and the snapshot contains network-transport-tcp-0.8.6 - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch - - dlist-nonempty # tried dlist-nonempty-0.1.3, but its *test-suite* requires QuickCheck >=2.9 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 + - dlist-nonempty # tried dlist-nonempty-0.1.3, but its *test-suite* requires QuickCheck >=2.9 && < 2.15 and the snapshot contains QuickCheck-2.16.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 hspec >=1.11 && < 2.4 and the snapshot contains hspec-2.11.12 - - dublincore-xml-conduit # tried dublincore-xml-conduit-0.1.0.3, but its *test-suite* requires the disabled package: hlint - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires doctest >=0.10 && < 0.24 and the snapshot contains doctest-0.24.0 + - drawille # tried drawille-0.1.3.0, but its *test-suite* requires hspec >=1.11 && < 2.4 and the snapshot contains hspec-2.11.17 + - dualizer # tried dualizer-0.2.0.0, but its *test-suite* requires doctest ^>=0.16.3 || ^>=0.18.1 || ^>=0.20.1 || ^>=0.21.1 || ^>=0.22.2 and the snapshot contains doctest-0.25.0 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires QuickCheck >=2.4 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* requires doctest >=0.10 && < 0.24 and the snapshot contains doctest-0.25.0 - errors-ext # tried errors-ext-0.4.2, but its *test-suite* requires the disabled package: binary-ext + - esqueleto # tried esqueleto-3.6.0.0, but its *test-suite* requires the disabled package: mysql - 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 - - exact-pi # tried exact-pi-0.5.0.2, but its *test-suite* requires tasty-quickcheck >=0.9 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - fast-digits # tried fast-digits-0.3.2.0, but its *test-suite* requires QuickCheck < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - fast-digits # tried fast-digits-0.3.2.0, but its *test-suite* requires tasty < 1.5 and the snapshot contains tasty-1.5.3 - - fast-digits # tried fast-digits-0.3.2.0, but its *test-suite* requires tasty-quickcheck < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - fclabels # tried fclabels-2.0.5.1, but its *test-suite* requires transformers < 0.6 and the snapshot contains transformers-0.6.1.1 + - fclabels # tried fclabels-2.0.5.1, but its *test-suite* requires transformers < 0.6 and the snapshot contains transformers-0.6.3.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.5.2.0.2, but its *test-suite* requires QuickCheck >=2.7 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - filtrable # tried filtrable-0.1.6.0, but its *test-suite* requires tasty >=1.3.1 && < 1.4 and the snapshot contains tasty-1.5.3 - - finite-typelits # tried finite-typelits-0.2.1.0, but its *test-suite* requires QuickCheck >=2.12 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - fixed-vector-hetero # tried fixed-vector-hetero-0.6.2.0, but its *test-suite* requires doctest >=0.15 && < 0.24 and the snapshot contains doctest-0.24.0 + - feed # tried feed-1.3.2.1, but its *test-suite* requires xml-conduit < 1.10 and the snapshot contains xml-conduit-1.10.1.0 + - finite-typelits # tried finite-typelits-0.2.1.0, but its *test-suite* requires QuickCheck >=2.12 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - fixed-vector-hetero # tried fixed-vector-hetero-0.7.0.0, but its *test-suite* requires doctest >=0.15 && < 0.24 and the snapshot contains doctest-0.25.0 - focuslist # tried focuslist-0.1.1.0, but its *test-suite* requires genvalidity < 1.0.0.0 and the snapshot contains genvalidity-1.1.1.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.1.0 - - fortran-src # tried fortran-src-0.16.3, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - fused-effects # tried fused-effects-1.1.2.4, but its *test-suite* requires inspection-testing >=0.4 && < 0.6 and the snapshot contains inspection-testing-0.6 - - fused-effects # tried fused-effects-1.1.2.4, 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 bitvec >=1.0.2 && < 1.1 and the snapshot contains bitvec-1.1.5.0 + - fortran-src # tried fortran-src-0.16.9, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - fp-ieee # tried fp-ieee-0.1.0.6, but its *test-suite* requires doctest >=0.22.2 && < 0.25 and the snapshot contains doctest-0.25.0 + - fused-effects # tried fused-effects-1.1.2.7, but its *test-suite* requires hedgehog >=1 && < 1.6 and the snapshot contains hedgehog-1.7 + - fused-effects # tried fused-effects-1.1.2.7, 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 bitvec >=1.0.2 && < 1.1 and the snapshot contains bitvec-1.1.6.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 tasty >=1.2 && < 1.3 and the snapshot contains tasty-1.5.3 + - galois-field # tried galois-field-1.0.2, but its *test-suite* requires tasty >=1.2 && < 1.3 and the snapshot contains tasty-1.5.4 - galois-field # tried galois-field-1.0.2, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - geojson # tried geojson-4.1.1, but its *test-suite* requires bytestring >=0.10.8.1 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - geojson # tried geojson-4.1.1, but its *test-suite* requires hspec >=2.5 && < 2.10 and the snapshot contains hspec-2.11.12 - - geojson # tried geojson-4.1.1, but its *test-suite* requires tasty >=0.8 && < 0.13 || >=1.0 && < 1.5 and the snapshot contains tasty-1.5.3 - - geojson # tried geojson-4.1.1, but its *test-suite* requires tasty-quickcheck >=0.3 && < 0.9 || >=0.9.1 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - ghc-prof # tried ghc-prof-1.4.1.12, but its *test-suite* requires tasty < 1.5 and the snapshot contains tasty-1.5.3 - - ghc-source-gen # tried ghc-source-gen-0.4.6.0, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - ghc-source-gen # tried ghc-source-gen-0.4.6.0, but its *test-suite* requires tasty-quickcheck >=0.9 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - ghc-prof # tried ghc-prof-1.4.1.14, but its *test-suite* requires tasty < 1.5 and the snapshot contains tasty-1.5.4 + - haddock-library # tried haddock-library-1.11.0, but its *test-suite* requires QuickCheck >=2.11 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 - haddock-library # tried haddock-library-1.11.0, but its *test-suite* requires base-compat ^>=0.12.0 || ^>=0.13.0 and the snapshot contains base-compat-0.14.1 - - haddock-library # tried haddock-library-1.11.0, but its *test-suite* requires filepath ^>=1.4.1.2 and the snapshot contains filepath-1.5.2.0 - - hal # tried hal-1.1, but its *test-suite* requires hedgehog >=1.0.3 && < 1.5 and the snapshot contains hedgehog-1.5 - - hasbolt # tried hasbolt-0.1.7.0, but its *test-suite* requires QuickCheck >=2.9 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hasbolt # tried hasbolt-0.1.7.0, but its *test-suite* requires hspec >=2.4.1 && < 2.11 and the snapshot contains hspec-2.11.12 - - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires lens >=4.12 && < 5 and the snapshot contains lens-5.3.4 - - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires text >=1.2 && < 2 and the snapshot contains text-2.1.1 - - haskoin-core # tried haskoin-core-1.1.0, but its *test-suite* requires base64 >=0.4 && < 0.5 and the snapshot contains base64-1.0 - - hasmin # tried hasmin-1.0.3, but its *test-suite* requires doctest >=0.11 && < 0.17 and the snapshot contains doctest-0.24.0 - - heap # tried heap-1.0.4, but its *test-suite* requires QuickCheck >=2.10 && < 2.12 and the snapshot contains QuickCheck-2.15.0.1 - - hegg # tried hegg-0.5.0.0, but its *test-suite* requires tasty >=1.4 && < 1.5 and the snapshot contains tasty-1.5.3 - - hegg # tried hegg-0.5.0.0, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - hourglass # tried hourglass-0.2.12, but its *test-suite* requires time < 1.10 and the snapshot contains time-1.12.2 - - hspec-expectations-pretty-diff # tried hspec-expectations-pretty-diff-0.7.2.6, but its *test-suite* requires aeson < 2 and the snapshot contains aeson-2.2.3.0 - - http-conduit # tried http-conduit-2.3.9.1, but its *test-suite* requires warp >=3.0.0.2 && < 3.4 and the snapshot contains warp-3.4.7 + - haddock-library # tried haddock-library-1.11.0, but its *test-suite* requires filepath ^>=1.4.1.2 and the snapshot contains filepath-1.5.5.0 + - haddock-library # tried haddock-library-1.11.0, but its *test-suite* requires optparse-applicative >=0.15 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - haddock-library # tried haddock-library-1.11.0, but its *test-suite* requires tree-diff ^>=0.2 || ^>=0.3 and the snapshot contains tree-diff-0.4.1 + - hal # tried hal-1.1, but its *test-suite* requires hedgehog >=1.0.3 && < 1.5 and the snapshot contains hedgehog-1.7 + - hashing # tried hashing-0.1.1.0, but its *test-suite* requires the disabled package: cryptonite + - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires lens >=4.12 && < 5 and the snapshot contains lens-5.3.6 + - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* requires text >=1.2 && < 2 and the snapshot contains text-2.1.4 + - hasktorch # tried hasktorch-0.2.2.0, but its *test-suite* requires doctest >=0.16.0.1 && < 0.25 and the snapshot contains doctest-0.25.0 + - hasmin # tried hasmin-1.0.3, but its *test-suite* requires doctest >=0.11 && < 0.17 and the snapshot contains doctest-0.25.0 + - heap # tried heap-1.0.4, but its *test-suite* requires QuickCheck >=2.10 && < 2.12 and the snapshot contains QuickCheck-2.16.0.0 + - hegg # tried hegg-0.6.0.0, but its *test-suite* requires tasty >=1.4 && < 1.5 and the snapshot contains tasty-1.5.4 + - hegg # tried hegg-0.6.0.0, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - hourglass # tried hourglass-0.2.12, but its *test-suite* requires time < 1.10 and the snapshot contains time-1.14 + - hspec-expectations-pretty-diff # tried hspec-expectations-pretty-diff-0.7.2.6, but its *test-suite* requires aeson < 2 and the snapshot contains aeson-2.2.5.0 + - http-conduit # tried http-conduit-2.3.9.1, but its *test-suite* requires warp >=3.0.0.2 && < 3.4 and the snapshot contains warp-3.4.13.1 + - http-media # tried http-media-0.8.1.1, but its *test-suite* requires QuickCheck >=2.8 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 - http-media # tried http-media-0.8.1.1, but its *test-suite* requires tasty-quickcheck >=0.8 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *test-suite* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 - - 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.24.0 - - hw-conduit-merges # tried hw-conduit-merges-0.2.1.0, but its *test-suite* requires QuickCheck < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hw-conduit-merges # tried hw-conduit-merges-0.2.1.0, but its *test-suite* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.1.0 - - 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.24.0 - - hw-dsv # tried hw-dsv-0.4.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - 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.24.0 - - 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.5 - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 - - 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.24.0 - - 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.5 - - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - 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.24.0 - - 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.5 - - hw-hedgehog # tried hw-hedgehog-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-hspec-hedgehog # tried hw-hspec-hedgehog-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-json # tried hw-json-1.3.3.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-json # tried hw-json-1.3.3.0, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-json-simd # tried hw-json-simd-0.1.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 + - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-bits # tried hw-bits-0.7.2.2, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.7 + - 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.25.0 + - hw-conduit-merges # tried hw-conduit-merges-0.2.1.0, but its *test-suite* requires QuickCheck < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - hw-conduit-merges # tried hw-conduit-merges-0.2.1.0, but its *test-suite* requires bytestring < 0.12 and the snapshot contains bytestring-0.12.2.0 + - 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.25.0 + - 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.25.0 + - 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.7 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.7 + - 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.25.0 + - 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.7 + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - 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.25.0 + - 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.7 + - hw-hedgehog # tried hw-hedgehog-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-hspec-hedgehog # tried hw-hspec-hedgehog-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.7 + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.1, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.7 + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.2, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.7 - hw-mquery # tried hw-mquery-0.2.1.2, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - 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.24.0 - - 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.5 - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-prim # tried hw-prim-0.6.3.2, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires hedgehog >=0.5 && < 1.5 and the snapshot contains hedgehog-1.5 - - hw-streams # tried hw-streams-0.0.1.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - hw-string-parse # tried hw-string-parse-0.0.0.5, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-xml # tried hw-xml-0.5.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.24.0 - - hw-xml # tried hw-xml-0.5.1.2, but its *test-suite* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.5 - - 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.12 - - inflections # tried inflections-0.4.0.7, but its *test-suite* requires containers >=0.5 && < 0.7 and the snapshot contains containers-0.7 - - influxdb # tried influxdb-1.9.3.2, but its *test-suite* requires doctest >=0.11.3 && < 0.23 and the snapshot contains doctest-0.24.0 - - inline-r # tried inline-r-1.0.1, but its *test-suite* requires filepath >=1.3 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - inline-r # tried inline-r-1.0.1, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.3 - - inline-r # tried inline-r-1.0.1, but its *test-suite* requires tasty-quickcheck >=0.4.1 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - int-cast # tried int-cast-0.2.0.0, but its *test-suite* requires QuickCheck >=2.14 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - integer-roots # tried integer-roots-1.0.2.0, but its *test-suite* requires tasty-quickcheck >=0.9 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - integer-types # tried integer-types-0.1.4.1, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.5 + - 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.25.0 + - 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.7 + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.7 + - hw-prim # tried hw-prim-0.6.3.2, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-rankselect # tried hw-rankselect-0.13.4.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires hedgehog >=0.6 && < 1.5 and the snapshot contains hedgehog-1.7 + - hw-simd # tried hw-simd-0.1.2.2, but its *test-suite* requires the disabled package: hw-hspec-hedgehog + - hw-streams # tried hw-streams-0.0.1.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - hw-string-parse # tried hw-string-parse-0.0.0.5, but its *test-suite* requires QuickCheck < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - hw-string-parse # tried hw-string-parse-0.0.0.5, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - hw-xml # tried hw-xml-0.5.1.2, but its *test-suite* requires doctest >=0.16.2 && < 0.23 and the snapshot contains doctest-0.25.0 + - 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.17 + - influxdb # tried influxdb-1.9.3.2, but its *test-suite* requires doctest >=0.11.3 && < 0.23 and the snapshot contains doctest-0.25.0 + - influxdb # tried influxdb-1.9.3.2, but its *test-suite* requires template-haskell < 2.23 and the snapshot contains template-haskell-2.23.0.0 + - int-cast # tried int-cast-0.2.0.0, but its *test-suite* requires QuickCheck >=2.14 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - integer-types # tried integer-types-0.1.4.1, but its *test-suite* requires hedgehog ^>=1.0.5 || ^>=1.1 || ^>=1.2 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.7 - integer-types # tried integer-types-0.1.4.1, but its *test-suite* requires hspec-hedgehog ^>=0.0.1 || ^>=0.1 and the snapshot contains hspec-hedgehog-0.3.0.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.5.3 + - 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.5.4 - 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 - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* requires tasty-quickcheck >=0.8.4 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - kvitable # tried kvitable-1.1.0.1, but its *test-suite* requires the disabled package: html-parse - - language-lua # tried language-lua-0.11.0.2, but its *test-suite* requires base >=4.5 && < 4.20 and the snapshot contains base-4.20.0.0 - - lattices # tried lattices-2.2.1, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - 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.5 + - jsaddle-warp # tried jsaddle-warp-0.9.9.6, but its *test-suite* requires doctest >=0.10.1 && < 0.19 and the snapshot contains doctest-0.25.0 + - jsaddle-warp # tried jsaddle-warp-0.9.9.6, but its *test-suite* requires webdriver >=0.8.4 && < 0.10 and the snapshot contains webdriver-0.15.0.0 + - list-shuffle # tried list-shuffle-1.0.0.1, but its *test-suite* requires hedgehog ^>=1.4 || ^>=1.5 || ^>=1.6 and the snapshot contains hedgehog-1.7 + - 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.7 - loc # tried loc-0.2.0.0, but its *test-suite* requires hspec-hedgehog ^>=0.0.1 and the snapshot contains hspec-hedgehog-0.3.0.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.6 - - lrucaching # tried lrucaching-0.3.4, but its *test-suite* requires QuickCheck >=2.8 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - 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.15.0.1 - - 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.20.0.0 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires doctest >=0.9 && < 0.12 and the snapshot contains doctest-0.24.0 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty >=0.11 && < 0.12 and the snapshot contains tasty-1.5.3 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty-hunit >=0.9 && < 0.10 and the snapshot contains tasty-hunit-0.10.2 - - makefile # tried makefile-1.1.0.0, but its *test-suite* requires tasty-quickcheck >=0.8 && < 0.9 and the snapshot contains tasty-quickcheck-0.11.1 - - menshen # tried menshen-0.0.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.15.0.1 - - mod # tried mod-0.2.0.1, but its *test-suite* requires tasty-quickcheck >=0.9 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - 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.6.3 + - mem-info # tried mem-info-0.4.2.0, but its *test-suite* requires optparse-applicative >=0.18.1 && < 0.19 and the snapshot contains optparse-applicative-0.19.0.0 + - menshen # tried menshen-0.0.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.16.0.0 - 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.1 - - morpheus-graphql # tried morpheus-graphql-0.28.1, but its *test-suite* requires tasty >=0.1.0 && < =1.5 and the snapshot contains tasty-1.5.3 - - morpheus-graphql-app # tried morpheus-graphql-app-0.28.1, but its *test-suite* requires tasty >=0.1.0 && < =1.5 and the snapshot contains tasty-1.5.3 - - morpheus-graphql-client # tried morpheus-graphql-client-0.28.1, but its *test-suite* requires tasty >=0.1.0 && < =1.5 and the snapshot contains tasty-1.5.3 - - morpheus-graphql-core # tried morpheus-graphql-core-0.28.1, but its *test-suite* requires tasty >=0.1.0 && < =1.5 and the snapshot contains tasty-1.5.3 - - morpheus-graphql-server # tried morpheus-graphql-server-0.28.1, but its *test-suite* requires tasty >=0.1.0 && < =1.5 and the snapshot contains tasty-1.5.3 - - msgpack # tried msgpack-1.0.1.0, but its *test-suite* requires QuickCheck >=2.12 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - msgpack # tried msgpack-1.0.1.0, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - mwc-random # tried mwc-random-0.15.2.0, but its *test-suite* requires doctest >=0.15 && < 0.24 and the snapshot contains doctest-0.24.0 + - monad-peel # tried monad-peel-0.3, but its *test-suite* requires transformers >=0.2 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - mwc-random # tried mwc-random-0.15.3.0, but its *test-suite* requires doctest >=0.15 && < 0.24 and the snapshot contains doctest-0.25.0 - 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.12 - - nri-http # tried nri-http-0.3.0.0, but its *test-suite* requires warp >=3.3.0 && < 3.4 and the snapshot contains warp-3.4.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.24.0 - - o-clock # tried o-clock-1.4.0.1, but its *test-suite* requires doctest >=0.16 && < 0.24 and the snapshot contains doctest-0.24.0 + - 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.17 + - nix-derivation # tried nix-derivation-1.1.3, but its *test-suite* requires QuickCheck < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - no-recursion # tried no-recursion-0.4.0.0, but its *test-suite* requires doctest ^>=0.21.1 || ^>=0.22.2 || ^>=0.24.0 and the snapshot contains doctest-0.25.0 + - nri-http # tried nri-http-0.7.0.1, but its *test-suite* requires nri-observability >=0.1.0.0 && < 0.4 and the snapshot contains nri-observability-0.4.0.1 + - nri-http # tried nri-http-0.7.0.1, but its *test-suite* requires warp >=3.3.0 && < 3.4 and the snapshot contains warp-3.4.13.1 + - o-clock # tried o-clock-1.4.0.1, but its *test-suite* requires doctest >=0.16 && < 0.24 and the snapshot contains doctest-0.25.0 + - o-clock # tried o-clock-1.4.0.1, but its *test-suite* requires hedgehog >=0.6 && < 1.6 and the snapshot contains hedgehog-1.7 + - ogma-language-cocospec # tried ogma-language-cocospec-1.6.0, but its *test-suite* requires QuickCheck >=2.8.2 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 - oops # tried oops-0.2.0.1, but its *test-suite* requires base-compat >=0.10.5 && < 0.14 and the snapshot contains base-compat-0.14.1 - - oops # tried oops-0.2.0.1, but its *test-suite* requires doctest >=0.16.2 && < 0.22 and the snapshot contains doctest-0.24.0 - - opaleye # tried opaleye-0.10.5.0, but its *test-suite* requires the disabled package: dotenv - - opml-conduit # tried opml-conduit-0.9.0.0, but its *test-suite* requires the disabled package: hlint - - optics # tried optics-0.4.2.1, but its *test-suite* requires inspection-testing >=0.5 && < 0.6 and the snapshot contains inspection-testing-0.6 + - oops # tried oops-0.2.0.1, but its *test-suite* requires doctest >=0.16.2 && < 0.22 and the snapshot contains doctest-0.25.0 + - opaleye # tried opaleye-0.10.8.0, but its *test-suite* requires the disabled package: dotenv + - optics # tried optics-0.4.2.1, but its *test-suite* requires inspection-testing >=0.5 && < 0.6 and the snapshot contains inspection-testing-0.6.3 - optics-operators # tried optics-operators-0.1.0.1, but its *test-suite* requires tasty-quickcheck >=0.10.2 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - 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.5 - - pasta-curves # tried pasta-curves-0.0.1.0, but its *test-suite* requires tasty >=1.4 && < 1.5 and the snapshot contains tasty-1.5.3 + - parameterized-utils # tried parameterized-utils-2.1.11.0, but its *test-suite* requires the disabled package: hedgehog-classes + - parser-regex # tried parser-regex-0.3.0.0, but its *test-suite* requires QuickCheck >=2.14.3 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - 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.7 + - pasta-curves # tried pasta-curves-0.0.1.0, but its *test-suite* requires tasty >=1.4 && < 1.5 and the snapshot contains tasty-1.5.4 - pasta-curves # tried pasta-curves-0.0.1.0, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - 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.1 - - pfile # tried pfile-0.1.0.1, but its *test-suite* requires hspec >=2.10.10 && < =2.11.9 and the snapshot contains hspec-2.11.12 - - pfile # tried pfile-0.1.0.1, but its *test-suite* requires tasty >=1.4.3 && < =1.5 and the snapshot contains tasty-1.5.3 + - patch # tried patch-0.0.8.4, but its *test-suite* requires hedgehog < 1.6 and the snapshot contains hedgehog-1.7 + - patch # tried patch-0.0.8.4, but its *test-suite* requires hlint >=3.5 && < 3.6 and the snapshot contains hlint-3.10 + - peregrin # tried peregrin-0.4.2, but its *test-suite* requires resource-pool >=0.4 && < 0.5 and the snapshot contains resource-pool-0.5.0.0 + - peregrin # tried peregrin-0.4.2, but its *test-suite* requires transformers >=0.5.2 && < 0.6 and the snapshot contains transformers-0.6.3.0 + - pfile # tried pfile-0.1.0.1, but its *test-suite* requires hspec >=2.10.10 && < =2.11.9 and the snapshot contains hspec-2.11.17 + - pfile # tried pfile-0.1.0.1, but its *test-suite* requires tasty >=1.4.3 && < =1.5 and the snapshot contains tasty-1.5.4 - pfile # tried pfile-0.1.0.1, but its *test-suite* requires tasty-quickcheck >=0.10.2 && < =0.11 and the snapshot contains tasty-quickcheck-0.11.1 - pg-transact # tried pg-transact-0.3.2.0, but its *test-suite* requires the disabled package: tmp-postgres - - pinch # tried pinch-0.5.2.0, but its *test-suite* requires network-run >=0.2.4 && < 0.4 and the snapshot contains network-run-0.4.4 - - 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.1 + - pinch # tried pinch-0.5.2.0, but its *test-suite* requires network-run >=0.2.4 && < 0.4 and the snapshot contains network-run-0.5.0 + - 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.3.0 - pipes-fluid # tried pipes-fluid-0.6.0.1, but its *test-suite* requires the disabled package: pipes-misc + - polysemy # tried polysemy-1.9.2.0, but its *test-suite* requires doctest >=0.16.0.1 && < 0.25 and the snapshot contains doctest-0.25.0 + - polysemy-plugin # tried polysemy-plugin-0.4.5.3, but its *test-suite* requires doctest >=0.16.0.1 && < 0.25 and the snapshot contains doctest-0.25.0 - postgresql-libpq-notify # tried postgresql-libpq-notify-0.2.0.0, but its *test-suite* requires the disabled package: tmp-postgres - - postgresql-simple # tried postgresql-simple-0.7.0.0, but its *test-suite* requires inspection-testing >=0.4.1.1 && < 0.6 and the snapshot contains inspection-testing-0.6 - - pretty-diff # tried pretty-diff-0.4.0.3, but its *test-suite* requires tasty >=1.1 && < 1.5 and the snapshot contains tasty-1.5.3 + - pretty-diff # tried pretty-diff-0.4.0.3, but its *test-suite* requires tasty >=1.1 && < 1.5 and the snapshot contains tasty-1.5.4 - 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 + - prettyprinter # tried prettyprinter-1.7.2, 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.15.0.1 - - purview # tried purview-0.2.0.2, but its *test-suite* requires QuickCheck >=2.14.2 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - 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.12 - - quadratic-irrational # tried quadratic-irrational-0.1.1, but its *test-suite* requires tasty-quickcheck >=0.8 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - rank2classes # tried rank2classes-1.5.4, 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.12 - - rel8 # tried rel8-1.6.0.0, but its *test-suite* requires the disabled package: tmp-postgres - - rest-rewrite # tried rest-rewrite-0.4.4, but its *test-suite* requires QuickCheck >=2.14.2 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - rss-conduit # tried rss-conduit-0.6.0.1, but its *test-suite* requires the disabled package: hlint - - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.15.0.1 + - printcess # tried printcess-0.1.0.3, but its *test-suite* requires QuickCheck >=2.8 && < 2.10 and the snapshot contains QuickCheck-2.16.0.0 + - puresat # tried puresat-0.1.0.1, but its *test-suite* requires QuickCheck ^>=2.15.0.1 || ^>=2.18.0.0 and the snapshot contains QuickCheck-2.16.0.0 + - purview # tried purview-0.2.0.2, but its *test-suite* requires QuickCheck >=2.14.2 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - purview # tried purview-0.2.0.2, but its *test-suite* requires time >=1.9.3 && < 1.14 and the snapshot contains time-1.14 + - queues # tried queues-1.0.0, but its *test-suite* requires hedgehog ^>=1.4 || ^>=1.5 || ^>=1.6 and the snapshot contains hedgehog-1.7 + - radix-tree # tried radix-tree-1.1.0.0, but its *test-suite* requires random >=1.2.0 && < 1.3 and the snapshot contains random-1.3.1 + - real-dice # tried real-dice-0.1.0.5, but its *test-suite* requires QuickCheck >=2.14.3 && < 2.16 and the snapshot contains QuickCheck-2.16.0.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.17 + - rel8 # tried rel8-1.7.0.0, but its *test-suite* requires hedgehog >=1.0 && < 1.6 and the snapshot contains hedgehog-1.7 + - rhine # tried rhine-1.8, but its *test-suite* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - roc-id # tried roc-id-0.4.0.0, but its *test-suite* requires doctest >=0.24.2 && < 0.25 and the snapshot contains doctest-0.25.0 + - roc-id # tried roc-id-0.4.0.0, but its *test-suite* requires microlens >=0.5.0.0 && < 0.6 and the snapshot contains microlens-0.4.14.0 + - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* requires QuickCheck < 2.14 and the snapshot contains QuickCheck-2.16.0.0 - scalendar # tried scalendar-1.2.0, but its *test-suite* requires the disabled package: SCalendar - - selective # tried selective-0.7.0.1, but its *test-suite* requires QuickCheck >=2.8 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - servant-auth-client # tried servant-auth-client-0.4.2.0, but its *test-suite* requires the disabled package: servant-auth-server - - 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.2 - - servant-cassava # tried servant-cassava-0.10.2, but its *test-suite* requires warp >=3.0.13.1 && < 3.4 and the snapshot contains warp-3.4.7 - - 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.2.3.0 - - 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.12 - - 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.6.2 - - servant-multipart # tried servant-multipart-0.12.1, but its *test-suite* requires the disabled package: tasty-wai - - servant-openapi3 # tried servant-openapi3-2.0.1.6, but its *test-suite* requires doctest >=0.11.1 && < 0.23 and the snapshot contains doctest-0.24.0 - - 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.12 + - selective # tried selective-0.7.0.1, but its *test-suite* requires QuickCheck >=2.8 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - servant-auth-client # tried servant-auth-client-0.4.10.0, but its *test-suite* requires QuickCheck >=2.18 && < 2.19 and the snapshot contains QuickCheck-2.16.0.0 + - servant-auth-docs # tried servant-auth-docs-0.2.11.0, but its *test-suite* requires doctest >=0.16 && < 0.25 and the snapshot contains doctest-0.25.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.3.0 + - servant-http-streams # tried servant-http-streams-0.20.2, but its *test-suite* requires base < 4.21 and the snapshot contains base-4.21.2.0 + - 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.2.5.0 + - 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.17 + - 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.6.3 + - servant-openapi3 # tried servant-openapi3-2.0.1.6, but its *test-suite* requires doctest >=0.11.1 && < 0.25 and the snapshot contains doctest-0.25.0 + - servant-swagger # tried servant-swagger-1.2.3, but its *test-suite* requires doctest >=0.17 && < 0.25 and the snapshot contains doctest-0.25.0 + - 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.17 - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* requires network-transport-tcp >=0.6 && < 0.7 and the snapshot contains network-transport-tcp-0.8.6 - - siggy-chardust # tried siggy-chardust-1.0.0, but its *test-suite* requires the disabled package: hlint - - simple-affine-space # tried simple-affine-space-0.2.1, but its *test-suite* requires the disabled package: hlint - - 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.12 - - slack-web # tried slack-web-2.2.0.0, but its *test-suite* requires hspec-discover >=2.6.0 && < 2.11 and the snapshot contains hspec-discover-2.11.12 - - spacecookie # tried spacecookie-1.0.0.2, but its *test-suite* requires the disabled package: download-curl - - sparse-tensor # tried sparse-tensor-0.2.1.5, but its *test-suite* requires QuickCheck >=2.8.2 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - sparse-tensor # tried sparse-tensor-0.2.1.5, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.3 + - 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.17 + - singletons-base # tried singletons-base-3.5, but its *test-suite* requires the disabled package: singletons-base-code-generator + - slack-web # tried slack-web-2.2.0.0, but its *test-suite* requires hspec-discover >=2.6.0 && < 2.11 and the snapshot contains hspec-discover-2.11.17 + - snap-server # tried snap-server-1.1.2.1, but its *test-suite* requires random >=1.0 && < 1.3 and the snapshot contains random-1.3.1 + - sparse-tensor # tried sparse-tensor-0.2.1.5, but its *test-suite* requires QuickCheck >=2.8.2 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - sparse-tensor # tried sparse-tensor-0.2.1.5, but its *test-suite* requires tasty >=0.11 && < 1.5 and the snapshot contains tasty-1.5.4 - sparse-tensor # tried sparse-tensor-0.2.1.5, but its *test-suite* requires tasty-quickcheck >=0.8 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.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.12 + - 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.2 + - 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.17 - 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.12 - - 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 - - streamly-process # tried streamly-process-0.3.1, but its *test-suite* requires QuickCheck >=2.10 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - 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.12 - - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires tasty >=1.4 && < 1.5 and the snapshot contains tasty-1.5.3 - - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires tasty-discover >=4.2 && < 4.3 and the snapshot contains tasty-discover-5.0.1 - - strong-path # tried strong-path-1.1.4.0, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - superbuffer # tried superbuffer-0.3.1.2, but its *test-suite* requires QuickCheck < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - swagger2 # tried swagger2-2.8.9, but its *test-suite* requires hspec-discover >=2.5.5 && < 2.9 and the snapshot contains hspec-discover-2.11.12 + - 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.17 + - 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.2 + - strongweak # tried strongweak-0.12.0, but its *test-suite* requires QuickCheck >=2.14.2 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - superbuffer # tried superbuffer-0.3.1.2, but its *test-suite* requires QuickCheck < 2.15 and the snapshot contains QuickCheck-2.16.0.0 - system-filepath # tried system-filepath-0.4.14.1, but its *test-suite* requires the disabled package: chell-quickcheck + - table-layout # tried table-layout-1.0.0.2, but its *test-suite* requires QuickCheck >=2.8 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - taiwan-id # tried taiwan-id-0.1.1.2, but its *test-suite* requires microlens >=0.5.0.0 && < 0.6 and the snapshot contains microlens-0.4.14.0 - tasty-autocollect # tried tasty-autocollect-0.4.4, but its *test-suite* requires the disabled package: explainable-predicates - - tasty-checklist # tried tasty-checklist-1.0.6.0, but its *test-suite* requires doctest >=0.10 && < 0.22 and the snapshot contains doctest-0.24.0 - - tasty-discover # tried tasty-discover-5.0.1, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - tasty-sugar # tried tasty-sugar-2.2.2.0, but its *test-suite* requires hedgehog >=1.1 && < 1.5 and the snapshot contains hedgehog-1.5 - - 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.5.3 - - tensors # tried tensors-0.1.5, but its *test-suite* requires QuickCheck >=2.11.1 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - test-framework # tried test-framework-0.8.2.1, but its *test-suite* requires the disabled package: libxml + - tasty-checklist # tried tasty-checklist-1.0.10.0, but its *test-suite* requires doctest >=0.10 && < 0.25 and the snapshot contains doctest-0.25.0 + - tasty-discover # tried tasty-discover-5.2.0, but its *test-suite* requires tasty-quickcheck >=0.10 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - 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.5.4 + - tensors # tried tensors-0.1.5, but its *test-suite* requires QuickCheck >=2.11.1 && < 2.15 and the snapshot contains QuickCheck-2.16.0.0 + - tensort # tried tensort-1.1.0.0, but its *test-suite* requires QuickCheck >=2.14.3 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - timers-tick # tried timers-tick-0.5.0.4, but its *test-suite* requires QuickCheck >=2.14 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 - true-name # tried true-name-0.2.0.0, but its *test-suite* requires containers ^>=0.5.6 || ^>=0.6.0 and the snapshot contains containers-0.7 - - 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.24.0 + - true-name # tried true-name-0.2.0.0, but its *test-suite* requires time ^>=1.1.2 || ^>=1.5.0 || ^>=1.6.0 || ^>=1.8.0 || ^>=1.9 || ^>=1.11.1 || ^>=1.12.2 and the snapshot contains time-1.14 + - 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.25.0 - tztime # tried tztime-0.1.1.0, but its *test-suite* requires the disabled package: tasty-hunit-compat - - 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.15.0.1 - - 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.12 - - utf8-conversions # tried utf8-conversions-0.1.0.4, but its *test-suite* requires the disabled package: charsetdetect-ae - - 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.12 - - validation-selective # tried validation-selective-0.2.0.0, but its *test-suite* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.5 - - validation-selective # tried validation-selective-0.2.0.0, but its *test-suite* requires hspec-hedgehog >=0.0.1.1 && < 0.2 and the snapshot contains hspec-hedgehog-0.3.0.0 - - wai-middleware-clacks # tried wai-middleware-clacks-0.1.0.1, but its *test-suite* requires the disabled package: tasty-wai - - 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.12 - - 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.1 - - wakame # tried wakame-0.1.0.0, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.1.1 - - wave # tried wave-0.2.1, but its *test-suite* requires bytestring >=0.2 && < 0.12 and the snapshot contains bytestring-0.12.1.0 - - web-view # tried web-view-0.7.0, but its *test-suite* requires Diff >=0.5 && < 1.0 and the snapshot contains Diff-1.0.2 - - websockets # tried websockets-0.13.0.0, but its *test-suite* requires QuickCheck >=2.7 && < 2.15 and the snapshot contains QuickCheck-2.15.0.1 - - wikicfp-scraper # tried wikicfp-scraper-0.1.0.13, but its *test-suite* requires filepath >=1.3.0 && < 1.5 and the snapshot contains filepath-1.5.2.0 - - xml-parser # tried xml-parser-0.1.1.1, but its *test-suite* requires tasty-quickcheck >=0.9 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 - - 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.19 - - zenc # tried zenc-0.1.2, but its *test-suite* requires hedgehog >=1.0 && < 1.1 and the snapshot contains hedgehog-1.5 - - zenc # tried zenc-0.1.2, but its *test-suite* requires hspec >=2.8 && < 2.9 and the snapshot contains hspec-2.11.12 + - 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.16.0.0 + - 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.17 + - 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.17 + - vary # tried vary-0.1.1.3, but its *test-suite* requires QuickCheck >=2.12 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - 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.17 + - 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.2.0 + - wakame # tried wakame-0.1.0.0, but its *test-suite* requires text >=1.2 && < 2.0 and the snapshot contains text-2.1.4 + - wave # tried wave-0.2.1, but its *test-suite* requires bytestring >=0.2 && < 0.12 and the snapshot contains bytestring-0.12.2.0 + - webdriver-angular # tried webdriver-angular-0.1.11, but its *test-suite* requires the disabled package: hspec-webdriver + - websockets # tried websockets-0.13.0.0, but its *test-suite* requires QuickCheck >=2.7 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - what4 # tried what4-1.7.3, but its *test-suite* requires the disabled package: tasty-sugar + - wikicfp-scraper # tried wikicfp-scraper-0.1.0.13, but its *test-suite* requires filepath >=1.3.0 && < 1.5 and the snapshot contains filepath-1.5.5.0 + - wild-bind # tried wild-bind-0.1.2.15, but its *test-suite* requires QuickCheck ^>=2.15.0 || ^>=2.18.0 and the snapshot contains QuickCheck-2.16.0.0 + - xml-parser # tried xml-parser-0.1.1.2, but its *test-suite* requires tasty-quickcheck >=0.9 && < 0.11 and the snapshot contains tasty-quickcheck-0.11.1 + - yaya # tried yaya-1.0.0.0, but its *test-suite* requires doctest ^>=0.16.2 || ^>=0.18.1 || ^>=0.20.1 || ^>=0.21.1 || ^>=0.22.2 || ^>=0.24.0 and the snapshot contains doctest-0.25.0 + - yaya-containers # tried yaya-containers-1.0.0.0, but its *test-suite* requires doctest ^>=0.16.2 || ^>=0.18.1 || ^>=0.20.1 || ^>=0.21.1 || ^>=0.22.2 || ^>=0.24.0 and the snapshot contains doctest-0.25.0 + - yaya-hedgehog # tried yaya-hedgehog-1.0.0.0, but its *test-suite* requires doctest ^>=0.16.2 || ^>=0.18.1 || ^>=0.20.1 || ^>=0.21.1 || ^>=0.22.2 || ^>=0.24.0 and the snapshot contains doctest-0.25.0 + - yaya-quickcheck # tried yaya-quickcheck-1.0.0.0, but its *test-suite* requires doctest ^>=0.16.2 || ^>=0.18.1 || ^>=0.20.1 || ^>=0.21.1 || ^>=0.22.2 || ^>=0.24.0 and the snapshot contains doctest-0.25.0 + - yaya-unsafe # tried yaya-unsafe-1.0.0.1, but its *test-suite* requires doctest ^>=0.16.2 || ^>=0.18.1 || ^>=0.20.1 || ^>=0.21.1 || ^>=0.22.2 || ^>=0.24.0 and the snapshot contains doctest-0.25.0 + - 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.7.0.2 + - zenc # tried zenc-0.1.2, but its *test-suite* requires hedgehog >=1.0 && < 1.1 and the snapshot contains hedgehog-1.7 + - zenc # tried zenc-0.1.2, but its *test-suite* requires hspec >=2.8 && < 2.9 and the snapshot contains hspec-2.11.17 - zenc # tried zenc-0.1.2, but its *test-suite* requires hspec-hedgehog >=0.0 && < 0.1 and the snapshot contains hspec-hedgehog-0.3.0.0 - - zm # tried zm-0.3.2, but its *test-suite* requires doctest >=0.11.1 && < 0.14 and the snapshot contains doctest-0.24.0 - - zm # tried zm-0.3.2, but its *test-suite* requires tasty >=0.11 && < 0.13 and the snapshot contains tasty-1.5.3 + - zm # tried zm-0.3.2, but its *test-suite* requires doctest >=0.11.1 && < 0.14 and the snapshot contains doctest-0.25.0 + - zm # tried zm-0.3.2, but its *test-suite* requires tasty >=0.11 && < 0.13 and the snapshot contains tasty-1.5.4 - 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.11.1 - zm # tried zm-0.3.2, but its *test-suite* requires timeit >=1 && < 1.1 and the snapshot contains timeit-2.0 - - zxcvbn-hs # tried zxcvbn-hs-0.3.6, but its *test-suite* requires hedgehog >=0.6 && < 1.3 || ^>=1.3 || ^>=1.4 and the snapshot contains hedgehog-1.5 + - zxcvbn-hs # tried zxcvbn-hs-0.3.8, but its *test-suite* requires hedgehog >=0.6 && < 1.6 and the snapshot contains hedgehog-1.7 # End of Test bounds issues # general failures - aern2-mp # https://github.com/michalkonecny/aern2/issues/11 + - thyme # quickcheck flakiness # ??? - - chronos # 1.1.5.1 chronos-test: executable not found + - chronos # 1.1.6.2 chronos-test: executable not found - do-list # 1.0.1 test: executable not found https://github.com/tserduke/do-list/issues/3 - incremental-parser # Main: executable not found - quickcheck-state-machine # test: executable not found + - servant-auth-server # spec: executable not found - streamt # executable not found - sandwich-contexts # assumes nix is present - - srtree # https://github.com/commercialhaskell/stackage/issues/7574 # 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 - - brick - - 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-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 - - do-notation # 0.1.0.2 - - fields-and-cases # 0.2.0.0 https://github.com/m-bock/fields-and-cases/issues/1 - - fortran-src # 0.16.3 https://github.com/camfort/fortran-src/issues/293 - - generic-arbitrary # 1.0.1 https://github.com/typeable/generic-arbitrary/issues/18 - - generic-lens # https://github.com/commercialhaskell/stackage/issues/6377 - - 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 ... - - haskey-btree # https://github.com/commercialhaskell/stackage/issues/7393 - - hasql-migration # 0.3.1 https://github.com/tvh/hasql-migration/issues/11 - - heist # GHC 9.8.1 - - 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 - - record-wrangler # 0.1.1.0 - - secp256k1-haskell # #5948/closed - - serialise # 0.2.6.1 https://github.com/well-typed/cborg/issues/344 - - servant-static-th # 1.0.0.1 https://github.com/cdepillabout/servant-static-th/issues/21 - - 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 - - tztime # 0.1.1.0 - - 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 - - functor-combinators # 0.4.1.3 https://github.com/mstksg/functor-combinators/issues/9 - - myers-diff # 0.3.0.0 - - path # 0.9.6 https://github.com/commercialhaskell/stackage/issues/7503 - - # Consistent test failures - - Allure # 0.11.0.0 - - SpatialMath # 0.2.7.1 https://github.com/ghorn/spatial-math/issues/10 - - ap-normalize # 0.1.0.1 ghc-9.6 - - astro # 0.4.3.0 https://github.com/aligusnet/astro/issues/8 - - coinor-clp # 0.0.0.2 - - easy-logger # 0.1.0.7 https://github.com/schnecki/easy-logger/issues/1 - - filecache # 0.5.2 https://github.com/bartavelle/filecache/issues/13 - - generics-eot # 0.4.0.1 ghc-9.6 - - hsexif # 0.6.1.10 Missing test file - - katip # 0.8.8.2 https://github.com/Soostone/katip/issues/155 - - hinotify # 0.4.1 https://github.com/kolmodin/hinotify/issues/38 - - markov-chain-usage-model # https://github.com/advancedtelematic/markov-chain-usage-model/issues/44 - - monad-logger-aeson # 0.4.1.3 ghc-9.10.1 - - oeis2 # 1.0.8 - To rerun use: --match "/Test for lookupSeq/Get Maple function/" --seed 1679058605 - - pvar # 1.0.0.0 ghc-9.6 - - sydtest # 0.15.1.1 - - sydtest-yesod # 0.3.0.2 https://github.com/NorfairKing/sydtest/issues/101 - - tar-conduit # https://github.com/snoyberg/tar-conduit/issues/33 - - genvalidity-appendful # https://github.com/commercialhaskell/stackage/issues/7465 - - genvalidity-mergeful # https://github.com/commercialhaskell/stackage/issues/7465 - - sydtest-autodocodec # https://github.com/commercialhaskell/stackage/issues/7465 - - # 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 - - cryptocompare # live api request can time out - - css-text # https://github.com/yesodweb/css-text/issues/10 - - 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 - - ihaskell # https://github.com/gibiansky/IHaskell/issues/551 - - kdt # 0.2.6 https://github.com/giogadi/kdt/issues/7 - - lapack - - massiv-serialise - - 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.1 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 - - wreq - - # 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 - - 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 - - cabal-install-parsers # 0.6.2 # Need local cabal environment - - call-alloy # Requires a Java Runtime that allows class file version 61.0 - - cayley-client - - consul-haskell - - consumers # requires PostgreSQL instance - - cql-io # Cassandra - - 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 - - essence-of-live-coding-warp # 0.2.8 - - eventful-dynamodb - - eventful-postgresql - - faktory # connection refused, https://github.com/commercialhaskell/stackage/issues/5905 - - 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 - - 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 - - hledger-web # 1.33.1 test: setupTerm: Couldn't look up terminfo entry "unknown" - - hocilib # oracle - - 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 - - http-reverse-proxy # 0.6.1.0 - - http2 # executable not found https://github.com/kazu-yamamoto/http2/issues/22 - - influxdb - - jvm - - katip-elasticsearch # elasticsearch - - katip-wai # 0.2.0.0 - - koji-tool - - log # ElasticSearch - - lsp-test # example: lsp-demo-reactor-server: createProcess: posix_spawnp: does not exist (No such file or directory) - - 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.7.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" - - ollama-haskell # https://github.com/commercialhaskell/stackage/pull/7576 - - 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 - - pinecone # Requires pinecone API key - - 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 - - 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 - - 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-acid-state - - 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? - - tasty-papi # Exception: PAPI: Failed to add counter TOT_INS: Permission level does not permit operation [-15] - - users-persistent # sqlite - - users-postgresql-simple # PostgreSQL - - 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 - - webdriver-angular # webdriver server - - webex-teams-api # 0.2.0.1 - - webex-teams-conduit # 0.2.0.1 - - websockets - - what4 # Missing cvc4 and cvc5 - cvc5 is not available for ubuntu 22.04 https://github.com/GaloisInc/what4/issues/262 - - yesod-auth-hashdb # 1.7.1.7 - - yesod-core - - yesod-persistent # 1.6.0.8 - - yesod-test # 1.6.19 - - # 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 - - aeson-jsonpath # https://github.com/taimoorzaeem/aeson-jsonpath/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 - - rzk - - # 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 - - 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.4.0 /test/resources/include.child2 doesn't exist - - fast-builder # prop: executable not found - - fedora-repoquery # as part of https://github.com/commercialhaskell/stackage/pull/7517 - - free-alacarte - - 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 - - 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 - - lattices # quicheck flakiness - - list-transformer - - massiv-io - - megaparsec-tests - - memcache # 0.3.0.2 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 - - 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 - - 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 # 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 - - tasty-fail-fast - - thyme # 0.4 - - 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 - - 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 - - yggdrasil-schema # https://github.com/commercialhaskell/stackage/issues/7518 - - genvalidity-network-uri # URI <> - - haskoin-node # "reads arbitrary addresses" failed - - # 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 - - 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 - - # 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 - - http-io-streams # https://github.com/commercialhaskell/stackage/issues/7644 - - hw-kafka-client # missing exe https://github.com/commercialhaskell/stackage/pull/5542 - - 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 - - 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: @@ -8930,12 +8982,15 @@ expected-haddock-failures: # 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 + # Triggers https://gitlab.haskell.org/ghc/ghc/-/issues/25739 + # GHC has fixed this for 9.14, not yet backported to earlier versions. + - coerce-with-substitution + # end of expected-haddock-failures # For packages with haddock issues @@ -8949,21 +9004,26 @@ skipped-haddocks: expected-benchmark-failures: # Compilation failures - OrderedBits # 0.0.2.0 - - cacophony # 0.10.1 - - chronos # 1.1.5.1 Ambiguous occurrence ‘Thyme.defaultTimeLocale’ + - alfred-margaret # 2.1.1.0 + - cacophony # 0.11.0 + - chronos # 1.1.6.2 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 + - dataframe # 2.0.0.0 https://github.com/DataHaskell/dataframe/issues/203 - do-list # 1.0.1 https://github.com/tserduke/do-list/issues/3 - - fast-builder # 0.1.4.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 + - lr-acts # 0.1 - lz4 # https://github.com/fpco/stackage/issues/3510 - memcache # 0.3.0.2 + - mysql-haskell # https://github.com/winterland1989/mysql-haskell/issues/82 - product-profunctors # 0.11.1.1 - stateWriter # 0.4.0 https://github.com/bartavelle/stateWriter/issues/5 + - tls # 2.4.3 https://github.com/haskell-tls/hs-tls/issues/528 - ua-parser # 0.7.7.0 compile fail against aeson 2 - universum + - xlsx # 1.2.0 https://github.com/qrilka/xlsx/issues/203 - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 # end of expected-benchmark-failures @@ -9006,6 +9066,12 @@ skipped-benchmarks: - pandoc - git-annex + # runaway build? + - type-of-html + + # https://github.com/commercialhaskell/stackage/issues/8053 + - snappy-hs + # Maintainers who don't want to update benchmarks # Only re-enable if requested. ## @hvr https://github.com/fpco/stackage/issues/2538#issuecomment-304458844 @@ -9043,71 +9109,81 @@ 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.2.1, but its *benchmarks* requires the disabled package: SegmentTree - - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* requires criterion >=1.1 && < 1.2 and the snapshot contains criterion-1.6.4.0 - - bitwise-enum # tried bitwise-enum-1.0.1.2, but its *benchmarks* requires the disabled package: gauge + - base32 # tried base32-0.4, but its *benchmarks* requires bytestring ^>=0.11 and the snapshot contains bytestring-0.12.2.0 + - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* requires criterion >=1.1 && < 1.2 and the snapshot contains criterion-1.6.5.0 + - bitwise-enum # tried bitwise-enum-1.0.2.0, but its *benchmarks* requires the disabled package: gauge - bsb-http-chunked # tried bsb-http-chunked-0.0.0.4, but its *benchmarks* requires the disabled package: gauge - - bytebuild # tried bytebuild-0.3.16.3, but its *benchmarks* requires the disabled package: gauge + - bytebuild # tried bytebuild-0.3.17.0, but its *benchmarks* requires the disabled package: gauge - bytehash # tried bytehash-0.1.1.2, but its *benchmarks* requires the disabled package: gauge - - byteslice # tried byteslice-0.2.14.0, but its *benchmarks* requires the disabled package: gauge - - bytesmith # tried bytesmith-0.3.11.1, but its *benchmarks* requires the disabled package: gauge - - chimera # tried chimera-0.4.1.0, but its *benchmarks* requires tasty-bench >=0.3.2 && < 0.4 and the snapshot contains tasty-bench-0.4.1 + - byteslice # tried byteslice-0.2.15.0, but its *benchmarks* requires the disabled package: gauge + - bytesmith # tried bytesmith-0.3.14.0, but its *benchmarks* requires the disabled package: gauge + - bytestring-encodings # tried bytestring-encodings-0.2.0.2, but its *benchmarks* requires the disabled package: gauge + - bytestring-trie # tried bytestring-trie-0.2.7.6, but its *benchmarks* requires QuickCheck >=2.10 && < 2.16 and the snapshot contains QuickCheck-2.16.0.0 + - chimera # tried chimera-0.4.1.0, but its *benchmarks* requires tasty-bench >=0.4 && < 0.5 and the snapshot contains tasty-bench-0.5.1 - 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 - conduit # tried conduit-1.3.6.1, but its *benchmarks* requires the disabled package: gauge - - conduit-extra # tried conduit-extra-1.3.7, but its *benchmarks* requires the disabled package: gauge - - crypton # tried crypton-1.0.4, but its *benchmarks* requires the disabled package: gauge - - cryptonite # tried cryptonite-0.30, but its *benchmarks* requires the disabled package: gauge - - csg # tried csg-0.1.0.6, but its *benchmarks* requires criterion < 1.6 and the snapshot contains criterion-1.6.4.0 + - conduit-extra # tried conduit-extra-1.3.8, but its *benchmarks* requires the disabled package: gauge + - crypton # tried crypton-1.0.6, but its *benchmarks* requires the disabled package: gauge + - csg # tried csg-0.1.0.6, but its *benchmarks* requires criterion < 1.6 and the snapshot contains criterion-1.6.5.0 - csg # tried csg-0.1.0.6, but its *benchmarks* requires vector < 0.13 and the snapshot contains vector-0.13.2.0 + - data-findcycle # tried data-findcycle-0.1.2.0, but its *benchmarks* requires tasty-bench >=0.4 && < 0.5 and the snapshot contains tasty-bench-0.5.1 + - dhall # tried dhall-1.42.3, but its *benchmarks* requires tasty-bench >=0.4 && < 0.5 and the snapshot contains tasty-bench-0.5.1 - fakedata # tried fakedata-1.0.5, but its *benchmarks* requires the disabled package: gauge - - fast-digits # tried fast-digits-0.3.2.0, but its *benchmarks* requires tasty-bench >=0.2.4 && < 0.4 and the snapshot contains tasty-bench-0.4.1 - - filepath-bytestring # tried filepath-bytestring-1.5.2.0.2, but its *benchmarks* requires filepath >=1.4.2 && < =1.4.2.1 and the snapshot contains filepath-1.5.2.0 - - flatparse # tried flatparse-0.5.2.1, but its *benchmarks* requires the disabled package: gauge + - fast-digits # tried fast-digits-0.3.2.0, but its *benchmarks* requires tasty-bench >=0.4 && < 0.5 and the snapshot contains tasty-bench-0.5.1 + - filepath-bytestring # tried filepath-bytestring-1.5.2.0.5, but its *benchmarks* requires filepath >=1.4.2 && < =1.4.2.1 and the snapshot contains filepath-1.5.5.0 - freer-simple # tried freer-simple-1.2.1.2, but its *benchmarks* requires the disabled package: extensible-effects - - fused-effects # tried fused-effects-1.1.2.4, but its *benchmarks* requires tasty-bench >=0.3 && < 0.4 and the snapshot contains tasty-bench-0.4.1 - - galois-field # tried galois-field-1.0.2, but its *benchmarks* requires criterion >=1.5 && < 1.6 and the snapshot contains criterion-1.6.4.0 - - ghc-trace-events # tried ghc-trace-events-0.1.2.10, but its *benchmarks* requires tasty-bench < 0.4 and the snapshot contains tasty-bench-0.4.1 - - hasmin # tried hasmin-1.0.3, but its *benchmarks* requires criterion >=0.11 && < 1.6 and the snapshot contains criterion-1.6.4.0 - - hegg # tried hegg-0.5.0.0, but its *benchmarks* requires tasty-bench >=0.2 && < 0.4 and the snapshot contains tasty-bench-0.4.1 + - fused-effects # tried fused-effects-1.1.2.7, but its *benchmarks* requires tasty-bench >=0.3 && < 0.4 and the snapshot contains tasty-bench-0.5.1 + - galois-field # tried galois-field-1.0.2, but its *benchmarks* requires criterion >=1.5 && < 1.6 and the snapshot contains criterion-1.6.5.0 + - ghc-trace-events # tried ghc-trace-events-0.1.2.10, but its *benchmarks* requires tasty-bench < 0.4 and the snapshot contains tasty-bench-0.5.1 + - hasmin # tried hasmin-1.0.3, but its *benchmarks* requires criterion >=0.11 && < 1.6 and the snapshot contains criterion-1.6.5.0 + - hegg # tried hegg-0.6.0.0, but its *benchmarks* requires tasty-bench >=0.2 && < 0.4 and the snapshot contains tasty-bench-0.5.1 - hourglass # tried hourglass-0.2.12, but its *benchmarks* requires the disabled package: gauge - http-client-tls # tried http-client-tls-0.3.6.4, but its *benchmarks* requires the disabled package: gauge - - hw-balancedparens # tried hw-balancedparens-0.4.1.3, but its *benchmarks* requires hedgehog >=1.0 && < 1.5 and the snapshot contains hedgehog-1.5 - - lz4 # tried lz4-0.2.3.1, but its *benchmarks* requires the disabled package: snappy - - 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.4.0 + - jsonifier # tried jsonifier-0.2.1.3, but its *benchmarks* requires text-builder ^>=0.6.6.1 and the snapshot contains text-builder-1.0.0.5 + - large-hashable # tried large-hashable-0.1.2.0, but its *benchmarks* requires the disabled package: cryptohash + - lifted-async # tried lifted-async-0.11.0, but its *benchmarks* requires tasty-bench < 0.5 and the snapshot contains tasty-bench-0.5.1 + - list-shuffle # tried list-shuffle-1.0.0.1, but its *benchmarks* requires tasty-bench ^>=0.3.5 || ^>=0.4 and the snapshot contains tasty-bench-0.5.1 + - 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.5.0 + - min-max-pqueue # tried min-max-pqueue-0.1.0.2, but its *benchmarks* requires random >=1.1 && < 1.3 and the snapshot contains random-1.3.1 - minisat-solver # tried minisat-solver-0.1, but its *benchmarks* requires the disabled package: easyrender - mono-traversable # tried mono-traversable-1.0.21.0, but its *benchmarks* requires the disabled package: gauge - mutable-containers # tried mutable-containers-0.3.4.1, but its *benchmarks* requires the disabled package: gauge - - newtype-generics # tried newtype-generics-0.6.2, but its *benchmarks* requires the disabled package: gauge - - 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.4.0 + - newtype-generics # tried newtype-generics-0.6.3, but its *benchmarks* requires the disabled package: gauge + - 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.5.0 - o-clock # tried o-clock-1.4.0.1, but its *benchmarks* requires the disabled package: gauge - o-clock # tried o-clock-1.4.0.1, 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.4.0 + - 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.5.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 - - pqueue # tried pqueue-1.5.0.0, but its *benchmarks* requires tasty-bench >=0.3 && < 0.4 and the snapshot contains tasty-bench-0.4.1 + - pipes # tried pipes-4.3.16, but its *benchmarks* requires optparse-applicative >=0.12 && < 0.18 and the snapshot contains optparse-applicative-0.19.0.0 - pred-trie # tried pred-trie-0.6.1, but its *benchmarks* requires the disabled package: sets + - queues # tried queues-1.0.0, but its *benchmarks* requires tasty-bench ^>=0.3.5 || ^>=0.4 and the snapshot contains tasty-bench-0.5.1 + - random # tried random-1.3.1, but its *benchmarks* requires time >=1.4 && < 1.13 and the snapshot contains time-1.14 + - random-bytestring # tried random-bytestring-0.1.4, but its *benchmarks* requires the disabled package: cryptonite - regex-applicative # tried regex-applicative-0.3.4, but its *benchmarks* requires the disabled package: parsers-megaparsec - row-types # tried row-types-1.0.1.2, but its *benchmarks* requires the disabled package: gauge - say # tried say-0.1.0.1, but its *benchmarks* requires the disabled package: gauge - - 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 + - serialise # tried serialise-0.2.6.1, but its *benchmarks* requires tar >=0.4 && < 0.7 and the snapshot contains tar-0.7.1.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.1 + - spdx # tried spdx-1.1.0.1, but its *benchmarks* requires QuickCheck ^>=2.15.0.1 and the snapshot contains QuickCheck-2.16.0.0 - squeal-postgresql # tried squeal-postgresql-0.9.2.0, but its *benchmarks* requires the disabled package: gauge - - streaming-commons # tried streaming-commons-0.2.3.0, but its *benchmarks* requires the disabled package: gauge - - streamly-bytestring # tried streamly-bytestring-0.2.2, but its *benchmarks* requires the disabled package: gauge - - streamly-process # tried streamly-process-0.3.1, but its *benchmarks* requires tasty-bench >=0.2.5 && < 0.4 and the snapshot contains tasty-bench-0.4.1 - - superbuffer # tried superbuffer-0.3.1.2, but its *benchmarks* requires criterion < 1.3 and the snapshot contains criterion-1.6.4.0 + - streaming-commons # tried streaming-commons-0.2.3.1, but its *benchmarks* requires the disabled package: gauge + - streamly-bytestring # tried streamly-bytestring-0.2.3, but its *benchmarks* requires the disabled package: gauge + - superbuffer # tried superbuffer-0.3.1.2, but its *benchmarks* requires criterion < 1.3 and the snapshot contains criterion-1.6.5.0 - superbuffer # tried superbuffer-0.3.1.2, but its *benchmarks* requires the disabled package: buffer-builder - teardown # tried teardown-0.5.0.1, but its *benchmarks* requires the disabled package: gauge + - text-builder-linear # tried text-builder-linear-0.1.3, but its *benchmarks* requires tasty-bench >=0.4 && < 0.5 and the snapshot contains tasty-bench-0.5.1 + - text-iso8601 # tried text-iso8601-0.1.1.1, but its *benchmarks* requires tasty-bench >=0.3.4 && < 0.5 and the snapshot contains tasty-bench-0.5.1 + - timer-wheel # tried timer-wheel-1.0.0.1, but its *benchmarks* requires tasty-bench ^>=0.3.5 || ^>=0.4 and the snapshot contains tasty-bench-0.5.1 - 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 - - unicode-transforms # tried unicode-transforms-0.4.0.1, but its *benchmarks* requires tasty-bench >=0.2.5 && < 0.4 and the snapshot contains tasty-bench-0.4.1 - - universum # tried universum-1.8.2.2, but its *benchmarks* requires the disabled package: gauge + - universum # tried universum-1.8.3.1, but its *benchmarks* requires the disabled package: gauge - unliftio # tried unliftio-0.2.25.1, but its *benchmarks* requires the disabled package: gauge - - vectortiles # tried vectortiles-1.5.1, but its *benchmarks* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.4.0 + - vectortiles # tried vectortiles-1.5.1, but its *benchmarks* requires criterion >=1.1 && < 1.6 and the snapshot contains criterion-1.6.5.0 - xeno # tried xeno-0.6, but its *benchmarks* requires the disabled package: bytestring-mmap - - yesod-core # tried yesod-core-1.6.27.0, but its *benchmarks* requires the disabled package: gauge + - yesod-core # tried yesod-core-1.6.29.1, but its *benchmarks* requires the disabled package: gauge # End of Benchmark bounds issues # end of skipped-benchmarks @@ -9261,8 +9337,6 @@ hide: - 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 @@ -9298,22 +9372,12 @@ hide: - zip # conflicts with Codec.Archive.Zip in zip-archive -# Experimental: packages where Hackage cabal file revisions should be ignored. +# 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: -- mime-mail -- basement -- cryptonite -- foundation -- gauge -- http-download -- rio-prettyprint -- hi-file-parser -- aura -- hoogle # https://github.com/commercialhaskell/stackage/issues/7496 +no-revisions: [] # Note, this no longer actually does anything with curator2 unfortunately: # Do not build these packages in parallel with others. Useful for high memory diff --git a/docker/01-build-server.sh b/docker/01-build-server.sh index ace59fa7..f837e474 100755 --- a/docker/01-build-server.sh +++ b/docker/01-build-server.sh @@ -23,3 +23,7 @@ unzip -q awscliv2.zip ./aws/install --bin-dir /usr/bin ) rm -rf /tmp/awscli + +STACK_VERSION=3.9.1 +curl -L https://github.com/commercialhaskell/stack/releases/download/v${STACK_VERSION}/stack-${STACK_VERSION}-linux-x86_64-bin > /usr/bin/stack +chmod +x /usr/bin/stack diff --git a/docker/02-apt-get-install.sh b/docker/02-apt-get-install.sh index df622b8f..aacb3fc3 100755 --- a/docker/02-apt-get-install.sh +++ b/docker/02-apt-get-install.sh @@ -18,27 +18,32 @@ apt-get install -y \ cmake \ coinor-libclp-dev \ curl \ + cvc5 \ dvipng \ + erlang \ freeglut3-dev \ freetds-dev \ fsharp \ g++ \ gawk \ - gir1.2-javascriptcoregtk-4.0 \ + gir1.2-javascriptcoregtk-4.1 \ gir1.2-javascriptcoregtk-6.0 \ + gir1.2-soup-2.4 \ + gir1.2-soup-3.0 \ git \ gnupg \ + gobject-introspection \ gradle \ hscolour \ libadns1-dev \ - libaio1 \ + libaio-dev \ libalut-dev \ libasound2-dev \ libblas-dev \ libbrotli-dev \ libbz2-dev \ libcairo2-dev \ - libclang-12-dev \ + libclang-14-dev \ libcurl4-openssl-dev \ libcwiid-dev \ libdbusmenu-glib-dev \ @@ -64,7 +69,9 @@ apt-get install -y \ libgsl-dev \ libgtk-3-dev \ libgtk-4-dev \ + libgtk-layer-shell-dev \ libgtk2.0-dev \ + libgtksourceview-3.0-dev \ libgtksourceview-5-dev \ libhidapi-dev \ libi2c-dev \ @@ -72,6 +79,7 @@ apt-get install -y \ libimlib2-dev \ libjack-jackd2-dev \ libjansson-dev \ + libjavascriptcoregtk-4.1-dev \ libjavascriptcoregtk-6.0-dev \ libjudy-dev \ liblapack-dev \ @@ -79,6 +87,7 @@ apt-get install -y \ liblmdb-dev \ liblz4-tool \ liblzma-dev \ + liblua5.4-dev \ libmagic-dev \ libmagickcore-dev \ libmagickwand-dev \ @@ -99,6 +108,9 @@ apt-get install -y \ libpapi-dev \ libpcap0.8-dev \ libpcre2-dev \ + libpcre3-dev \ + libpipewire-0.3-dev \ + libportmidi-dev \ libpq-dev \ libprimecount-dev \ libprotobuf-dev \ @@ -114,6 +126,7 @@ apt-get install -y \ libsnappy-dev \ libsndfile1-dev \ libsodium-dev \ + libsoup2.4-dev \ libsoup-3.0-dev \ libsox-dev \ libsqlite3-dev \ @@ -122,9 +135,10 @@ apt-get install -y \ libtagc0-dev \ libtre-dev \ libudev-dev \ + libuhd-dev \ libusb-1.0-0-dev \ libvte-2.91-dev \ - libwebkit2gtk-4.0-dev \ + libwebkit2gtk-4.1-dev \ libxau-dev \ libxml2-dev \ libxrandr-dev \ @@ -134,11 +148,11 @@ apt-get install -y \ libzip-dev \ libzmq3-dev \ libzstd-dev \ - llvm-11 \ - llvm-12 \ - llvm-13 \ + llvm-14 \ + llvm-15 \ locales \ m4 \ + meson \ minisat \ mono-mcs \ nettle-dev \ @@ -147,7 +161,7 @@ apt-get install -y \ nodejs \ nvidia-cuda-toolkit \ openjdk-8-jdk \ - python-mpltoolkits.basemap \ + pkg-config \ python3-matplotlib \ python3-numpy \ python3-pip \ diff --git a/docker/03-custom-install.sh b/docker/03-custom-install.sh index 34ec1c06..ea38f903 100755 --- a/docker/03-custom-install.sh +++ b/docker/03-custom-install.sh @@ -10,66 +10,47 @@ export DEBIAN_FRONTEND=noninteractive locale-gen en_US.UTF-8 -# Buggy versions of ld.bfd fail to link some Haskell packages: -# https://sourceware.org/bugzilla/show_bug.cgi?id=17689. Gold is -# faster anyways and uses less RAM. +# upstream ghc still defaults to ld.gold (though we should really switch to ld.bfd) update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20 update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 -# install ocilib dependencies then build and install ocilib -cd /tmp \ - && wget https://storage.googleapis.com/oracle.fpinsight.com/instantClient/oracle-instantclient12.1-basiclite_12.1.0.2.0-2_amd64.deb \ - && dpkg -i oracle-instantclient12.1-basiclite_12.1.0.2.0-2_amd64.deb \ - && rm -f oracle-instantclient12.1-basiclite_12.1.0.2.0-2_amd64.deb \ - && wget https://storage.googleapis.com/oracle.fpinsight.com/instantClient/oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb \ - && dpkg -i oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb \ - && rm -f oracle-instantclient12.1-devel_12.1.0.2.0-2_amd64.deb \ - && wget https://github.com/vrogier/ocilib/archive/v4.3.2.tar.gz \ - && tar xvf v4.3.2.tar.gz \ - && cd /tmp/ocilib-4.3.2 \ - && ./configure --with-oracle-import=linkage \ - --with-oracle-charset=ansi \ - --with-oracle-headers-path=/usr/include/oracle/12.1/client64 \ - --with-oracle-lib-path=/usr/lib/oracle/12.1/client64/lib \ - && make \ - && make install \ - && cd \ - && rm -rf /tmp/ocilib-4.3.2 \ - && echo "/usr/local/lib" > /etc/ld.so.conf.d/usr-local.conf \ - && echo "/usr/lib/oracle/12.1/client64/lib" > /etc/ld.so.conf.d/oracle-client.conf \ - && ldconfig +# Install WirePlumber 0.5 for gi-wireplumber and taffybar. +# Ubuntu 24.04 only packages WirePlumber 0.4. +WIREPLUMBER_VER=0.5.14 +WIREPLUMBER_TARBALL=wireplumber-${WIREPLUMBER_VER}.tar.gz +( + cd /tmp \ + && curl -L -o ${WIREPLUMBER_TARBALL} https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/${WIREPLUMBER_VER}/${WIREPLUMBER_TARBALL} \ + && echo "e91f04cd8cec75d72b8a2aaa7e90b1ba0a5e2094b7a882fc3a29a484a48a87e9 ${WIREPLUMBER_TARBALL}" | sha256sum -c - \ + && tar -xzf ${WIREPLUMBER_TARBALL} \ + && cd wireplumber-${WIREPLUMBER_VER} \ + && meson setup build -Ddoc=disabled -Dsystem-lua=true \ + && meson compile -C build \ + && meson install -C build \ + && ldconfig \ + && cd /tmp \ + && rm -rf wireplumber-${WIREPLUMBER_VER} ${WIREPLUMBER_TARBALL} +) -# Add JDK to system paths. -echo "/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/" > /etc/ld.so.conf.d/openjdk.conf \ - && ldconfig +# # Add JDK to system paths. +# echo "/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server" > /etc/ld.so.conf.d/openjdk.conf \ +# && ldconfig -# Install erlang/otp platform and its dependencies -ERLANG_DEB_FILE="esl-erlang_21.1-1~ubuntu~bionic_amd64.deb" -pushd /tmp \ - && wget https://packages.erlang-solutions.com/erlang/debian/pool/${ERLANG_DEB_FILE} \ - && (dpkg -i ${ERLANG_DEB_FILE}; apt-get install -yf) \ - && rm ${ERLANG_DEB_FILE} \ - && popd - -# Install the TensorFlow C API. -curl https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.1.0.tar.gz > libtensorflow.tar.gz \ - && sudo tar zxf libtensorflow.tar.gz -C /usr \ - && rm libtensorflow.tar.gz \ - && ldconfig - -export CLANG_PURE_LLVM_LIB_DIR=/usr/lib/llvm-9/lib; -export CLANG_PURE_LLVM_INCLUDE_DIR=/usr/lib/llvm-9/include; +# # Install erlang/otp platform and its dependencies +# ERLANG_DEB_FILE="esl-erlang_21.1-1~ubuntu~bionic_amd64.deb" +# pushd /tmp \ +# && wget https://packages.erlang-solutions.com/erlang/debian/pool/${ERLANG_DEB_FILE} \ +# && (dpkg -i ${ERLANG_DEB_FILE}; apt-get install -yf) \ +# && rm ${ERLANG_DEB_FILE} \ +# && popd # protoc, for proto-lens-combinators test suite # Instructions from: https://google.github.io/proto-lens/installing-protoc.html -PROTOC_ZIP=protoc-3.3.0-linux-x86_64.zip -curl -OL https://github.com/google/protobuf/releases/download/v3.3.0/$PROTOC_ZIP +PROTOC_ZIP=protoc-28.0-linux-x86_64.zip +curl -OL https://github.com/google/protobuf/releases/download/v28.0/$PROTOC_ZIP sudo unzip -o $PROTOC_ZIP -d /usr bin/protoc rm -f $PROTOC_ZIP - -echo /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server > /etc/ld.so.conf.d/java.conf - # Install librdkafka (Apache Kafka C/C++ library) wget -qO - https://packages.confluent.io/deb/5.2/archive.key | apt-key add - add-apt-repository "deb https://packages.confluent.io/deb/5.2 stable main" @@ -84,17 +65,3 @@ Z3_VER=4.13.4 && rm z3-${Z3_VER}-x64-glibc-2.35.zip \ && ln -s /usr/local/z3-${Z3_VER}-x64-glibc-2.35/bin/z3 /usr/bin/z3 ) - -LIBJWT_VER=1.12.1 -( -pushd /tmp \ - && wget https://github.com/benmcollins/libjwt/archive/v${LIBJWT_VER}.zip \ - && unzip v${LIBJWT_VER}.zip \ - && pushd libjwt-${LIBJWT_VER} \ - && autoreconf -fiv \ - && ./configure --disable-valgrind --disable-doxygen-doc --prefix /usr \ - && make \ - && sudo make install \ - && popd \ - && popd -) diff --git a/etc/check.sh b/etc/check.sh index e6a7317b..d2a742fb 100755 --- a/etc/check.sh +++ b/etc/check.sh @@ -11,7 +11,7 @@ export PATH=$HOME/.local/bin:$PATH curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' # Get new Stackage curator -curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-6689440033b12182c0853bdd23880a84849eb6b2/curator.bz2" | bunzip2 > curator +curl -L "https://github.com/commercialhaskell/curator/releases/download/commit-8232601683259e224beda15918399af803009db0/curator.bz2" | bunzip2 > curator chmod +x curator # Install GHC diff --git a/etc/diskspace/remove-old-stack-work-libs.hs b/etc/diskspace/remove-old-stack-work-libs.hs deleted file mode 100755 index f3962257..00000000 --- a/etc/diskspace/remove-old-stack-work-libs.hs +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/env stack --- stack --resolver lts-19.33 script - --- Utility to remove old libs installed under .stack-work/ to save diskspace - -import Control.Monad -import Data.List -import System.Directory -import System.FilePath -import System.Environment -import Text.Regex.TDFA - --- keep 2 latest builds -keepBuilds :: Int -keepBuilds = 2 - -main :: IO () -main = do - args <- getArgs - case args of - [stream] -> do - home <- getHomeDirectory - withCurrentDirectory (home "stackage/automated/work" stream "unpack-dir") $ do - cleanStackWorkInstall - putStrLn "" - cleanStackWorkPackages - _ -> error "arg should be 'lts-XX' or 'nightly'" - - -- navigates to: .stack-work/install/x86_64-linux*/*/*/lib/x86_64-linux-ghc-* -cleanStackWorkInstall :: IO () -cleanStackWorkInstall = - withCurrentDirectory ".stack-work/install" - $ withOneDirectory_ -- "x86_64-linux*" - $ withOneDirectory_ -- hash - $ withOneDirectory $ \ghcver -> - withCurrentDirectory ("lib" "x86_64-linux-ghc-" ++ ghcver) $ do - getCurrentDirectory >>= putStrLn - files <- sort <$> listDirectory "." - let (dynlibs,libdirs) = partition (".so" `isExtensionOf`) files - pkglibdirs = groupBy samePkgLibDir libdirs - pkgdynlibs = groupBy samePkgDynLib dynlibs - mapM_ (removeOlder removeDirectoryRecursive) pkglibdirs - mapM_ (removeOlder removeFile) pkgdynlibs - where - samePkgLibDir l1 l2 = pkgDirName l1 == pkgDirName l2 - where - pkgDirName p = - if length p < 25 - then error $ p ++ " too short to be in correct name-version-hash format" - else extractNameInternal p - - extractNameInternal :: String -> String - extractNameInternal p = - let (name,match',internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{19,22}" :: (String, String, String) - in if null match' || null name then error $ p ++ " not in correct name-version-hash format" - else name ++ internal - - samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2 - where - pkgDynName p = - if length p < 42 - then error $ p ++ " too short to be libHSname-version-hash-ghc*.so format" - else (extractNameInternal . removeDashSegment) p - - removeDashSegment = dropWhileEnd (/= '-') - - -removeOlder :: (FilePath -> IO ()) -> [FilePath] -> IO () -removeOlder remover files = do - oldfiles <- drop keepBuilds . reverse <$> sortByAge files - mapM_ remover oldfiles - -sortByAge :: [FilePath] -> IO [FilePath] -sortByAge files = do - timestamps <- mapM getModificationTime files - let fileTimes = zip files timestamps - return $ map fst $ sortBy compareSnd fileTimes - where - compareSnd (_,t1) (_,t2) = compare t1 t2 - --- navigates to: --- unpacked/*/.stack-work/dist/x86_64-linux-tinfo6/Cabal-3.8.1.0/build/ -cleanStackWorkPackages :: IO () -cleanStackWorkPackages = - withCurrentDirectory "unpacked" $ do - getCurrentDirectory >>= putStrLn - pkgs <- listDirectory "." - forM_ pkgs $ \pkg -> - withCurrentDirectory (pkg ".stack-work/dist") $ do - -- [(dyn,stat)] - libs <- do - platforms <- listDirectory "." -- "x86_64-linux-tinfo6*" - forM platforms $ \pl -> - withCurrentDirectory pl $ - withOneDirectory -- "Cabal-*" - $ \cbl -> - withCurrentDirectory "build" $ do - ls <- sort <$> listDirectory "." - files <- filterM doesFileExist ls - let (dynlibs,others) = partition (".so" `isExtensionOf`) files - statlibs = filter (".a" `isExtensionOf`) others - let dir = pl cbl "build" - return (map (dir ) dynlibs, map (dir ) statlibs) - removeOlder removeFile $ concatMap fst libs - removeOlder removeFile $ concatMap snd libs - -withOneDirectory_ :: IO a -> IO a -withOneDirectory_ act = do - ls <- listDirectory "." - case ls of - [l] -> withCurrentDirectory l act - _ -> do - cwd <- getCurrentDirectory - error $ show (length ls) ++ " directories found in " ++ cwd ++ ": " ++ unwords ls - -withOneDirectory :: (FilePath -> IO a) -> IO a -withOneDirectory act = do - ls <- listDirectory "." - case ls of - [l] -> withCurrentDirectory l $ act l - _ -> do - cwd <- getCurrentDirectory - error $ show (length ls) ++ " directories found in " ++ cwd ++ ": " ++ unwords ls diff --git a/etc/lts-constraints/README.md b/etc/lts-constraints/README.md index 09e127e2..e6415b3e 100644 --- a/etc/lts-constraints/README.md +++ b/etc/lts-constraints/README.md @@ -1 +1,8 @@ # lts-constraints + +Usage example: + +```shellsession +$ lts-constraints --major 24 --baseSnapshotPath snapshot.yaml +Done. Wrote to lts-24-build-constraints.yaml +```