diff --git a/CURATORS.md b/CURATORS.md index 0e3b25af..8b26007c 100644 --- a/CURATORS.md +++ b/CURATORS.md @@ -317,7 +317,7 @@ First run `build.sh` to regenerate updated `ltsXX/work/constraints.yaml` and `lt For an LTS minor bump, you'll typically want to: -* Add constraints to package `range:` fields _under_ the `source:` field in that `constraints.yaml`, and edit `snapshot-incomplete.yaml` to change the version used for that package, if necessary. +* Add constraints to package `range:` fields _under_ the `source:` field in that `constraints.yaml` (should not be necessary normally to edit `snapshot-incomplete.yaml` to change the version used for that package). * Add new packages to the `constraints.yaml` file * Test, benchmark, haddock failures can also be added to package fields in the `constraints.yaml` if necessary, though it should be avoided if possible for LTS. @@ -422,20 +422,16 @@ errors for builds, tests and benchmarks. ### Large scale enabling/disabling of packages -`etc/commenter` is a binary that mostly automates the translation of -`./check` errors into lines that go into `build-constraints.yaml`. It -can only handle bounds issues, compilation issues still need to be -handled manually. - -It disables all offending packages/test suites/benchmarks, so it is -only meant to be used when we close bounds issues and want to disable -packages, and when upgrading GHC. +`etc/commenter` is a binary that automates `build-constraints.yaml` workflows. #### Setup This is currently a rust program, You can install the rust toolchain by using [rustup](https://rustup.rs/). -Then `cargo install --locked --path etc/commenter` +For some commands you also need etc/commenter/latest-version installed. +``` +stack install --stack-yaml etc/commenter/latest-version/stack.yaml +``` #### Example usage @@ -456,7 +452,7 @@ testing-feat (GHC 9 bounds issues, Grandfathered dependencies) (not present) dep Now run: ``` -./check 2>&1 >/dev/null | commenter add +./check 2>&1 >/dev/null | ./commenter add ``` You will get this output: @@ -483,8 +479,8 @@ Re-run this command until no more packages are disabled. We can periodically remove all packages under the bounds sections and then re-run the disabling flow above until we get a clean plan. This will automatically pick up packages that have been fixed. ``` -commenter clear -./check 2>&1 >/dev/null | commenter add +./commenter clear +./check 2>&1 >/dev/null | ./commenter add ``` Repeat the second command until no updates are made to build-constraints.yaml. @@ -493,7 +489,7 @@ Repeat the second command until no updates are made to build-constraints.yaml. Run `stack update` before doing this. -`commenter outdated` looks through all bounds issues and library +`./commenter outdated` looks through all bounds issues and library compilation failures and compares the marked version with the latest hackage release. Example output is ``` @@ -504,7 +500,7 @@ aeson mismatch, auto: 1.5.6.0, hackage: 2.0.2.0 where "manual" means the bound was added manually by a curator, perhaps due to a compilation failure so we could try re-enabling the package. "auto" means it's part of the sections generated by -`commenter`, to update that run the `Re-enabling` step as documented +`./commenter`, to update that run the `Re-enabling` step as documented above. `outdated` only finds packages that are in the auto generated @@ -520,7 +516,7 @@ To diff existing snapshots, or to evaluate changes before they end up in a snapshot you can run: ``` -commenter diff-snapshot +./commenter diff-snapshot ``` Existing snapshots can be retrieved from https://github.com/commercialhaskell/stackage-snapshots. Preliminary snapshots can be generated by running relevant parts of `automated/build.sh`, at the time of writing: @@ -533,6 +529,50 @@ TARGET=nightly-2021-01-14 \ # the date doesn't matter curator snapshot ``` +#### Pinging maintainers after disabling packages + +After lifting a bound We often have to disable additional packages due +to compilation failures. `affected` figures out which packages have +been disabled and which maintainers are affected. Note that this does +not handle disabled test suites and benchmarks as the snapshots don't +contain this information. + +``` +./commenter affected +``` + +E.g.: +``` +$ commenter affected ../stackage-snapshots/nightly/2022/1/2.yaml ../stackage-snapshots/nightly/2022/2/7.yaml +``` +``` +alg-0.2.13.1: Matthew Farkas-Dyck @strake +butter-0.1.0.6: Matthew Ahrens @mpahrens +category-0.2.5.0: Matthew Farkas-Dyck @strake +constraint-0.1.4.0: Matthew Farkas-Dyck @strake +dl-fedora-0.9.2: Jens Petersen @juhp +foldable1-0.1.0.0: Matthew Farkas-Dyck @strake +gitlab-haskell-0.3.2.0: Rob Stewart @robstewart57 +hslua-module-doclayout-1.0.0: Albert Krewinkel @tarleb +util-0.1.17.1: Matthew Farkas-Dyck @strake +wai-middleware-auth-0.2.5.1: Alexey Kuleshevich @lehins +yesod-csp-0.2.5.0: Bob Long @bobjflong +``` + +#### Finding disabled packages with lots of dependents + +`./commenter disabled` prints the number of transitive dependents a disabled package has. Low hanging fruit to get a lot of packages included again. + +Example output: +``` +[...] +stringable is disabled with 10 dependents +llvm-hs is disabled with 12 dependents +th-data-compat is disabled with 12 dependents +amazonka-core is disabled with 96 dependents +gogol-core is disabled with 96 dependents +``` + ## Adding new curators 1. Add public ssh key to `~/.ssh/authorized_keys` on build server diff --git a/automated/dockerfiles/lts-18.27/Dockerfile b/automated/dockerfiles/lts-18.27/Dockerfile new file mode 100644 index 00000000..3e7c4e68 --- /dev/null +++ b/automated/dockerfiles/lts-18.27/Dockerfile @@ -0,0 +1,3 @@ +FROM $DOCKER_REPO:lts-18.26 +ARG STACK_VERSION=2.7.5 +RUN 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/local/bin '*/stack' diff --git a/automated/dockerfiles/lts-18.9/Dockerfile b/automated/dockerfiles/lts-18.9/Dockerfile new file mode 100644 index 00000000..36b65837 --- /dev/null +++ b/automated/dockerfiles/lts-18.9/Dockerfile @@ -0,0 +1,90 @@ +FROM ubuntu:18.04 + +LABEL maintainer="manny@fpcomplete.com" + +ARG GHC_VERSION=8.10.7 +ARG LTS_SLUG=lts-18.9 +ARG PID1_VERSION=0.1.2.0 +ARG STACK_VERSION=2.7.3 +ARG CUDA_VERSION=10.0 +ARG JVM_PATH=/usr/lib/jvm/java-8-openjdk-amd64 +ARG LLVM_PATH=/usr/lib/llvm-7 +ARG BOOTSTRAP_COMMIT=b1d40e112040a7f44eff47a9fafb6937f5d02dff + +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 debian-bootstrap.sh script to install system libraries and +# tools required to build any Stackage package. +# Re-installs 'stack' *after* running debian-bootstrap.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/fpco/stackage/$BOOTSTRAP_COMMIT/debian-bootstrap.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/build-constraints.yaml b/build-constraints.yaml index bda8b3ce..8271f4fe 100644 --- a/build-constraints.yaml +++ b/build-constraints.yaml @@ -1,6 +1,6 @@ ghc-major-version: "9.2" # new curator is supposed to use exact GHC version -ghc-version: "9.2.1" +ghc-version: "9.2.2" # 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,15 @@ cabal-format-version: "3.0" # Constraints for brand new builds packages: + "Xy Ren @re-xyr": + - cleff + - rec-smallarray + + "Janus Troelsen @ysangkok": + - ListZipper + - rollbar + - timezone-olson-th + "David Burkett @Disco-Dave": - katip-wai @@ -17,7 +26,7 @@ packages: - socket - spacecookie - gopher-proxy - - filepath-bytestring < 1.4.2.1.10 # OK for GHC 9.2 https://github.com/commercialhaskell/stackage/issues/6355 + - filepath-bytestring - download-curl - cabal2nix - distribution-nixpkgs @@ -47,26 +56,31 @@ packages: - geniplate-mirror "Andreas Abel @andreasabel": - - BNFC - - Sit - - STMonadTrans + - Agda - agda2lagda + - BNFC - cabal-clean - - ListLike - - haskell-src - fix-whitespace - - hs-tags - goldplate - hasktags + - hs-tags + - java-adt + - Sit + + - haskell-src + - ListLike + - MissingH - regex-base - regex-compat - regex-pcre - regex-posix - regex-posix-clib - regex-tdfa - - java-adt + - shelly + - STMonadTrans - tasty-silver + - acid-state "Diogo Biazus ": - hasql-notifications @@ -152,7 +166,7 @@ packages: - lens-regex-pcre - lens-csv - selections - - slick + - slick < 0 # 1.1.2.2 cempile fail against aeson 2.0 - unipatterns "Emily Pillmore @topos": @@ -307,8 +321,10 @@ packages: - essence-of-live-coding-gloss - essence-of-live-coding-pulse - essence-of-live-coding-quickcheck + - essence-of-live-coding-warp - pulse-simple - simple-affine-space + - has-transformers "Paul Johnson @PaulJohnson": - geodetics @@ -655,7 +671,7 @@ packages: - bench-show - monad-recorder - packcheck - - streamly + - streamly < 0.8.2 - unicode-transforms - xls @@ -755,7 +771,7 @@ packages: - cryptonite-conduit - streaming-commons - - alex + - alex < 3.2.7 || > 3.2.7 - async - base16-bytestring - csv-conduit @@ -764,7 +780,7 @@ packages: - foreign-store - formatting - gtk2hs-buildtools - - happy + - happy < 1.21.0 || > 1.21.0 # https://github.com/commercialhaskell/stackage/issues/6294 - hybrid-vectors - indents - language-c @@ -890,7 +906,6 @@ packages: - wai-slack-middleware - sysinfo - xmonad-extras - - shelly - persistent-redis - fakedata - fakedata-parser @@ -1055,7 +1070,7 @@ packages: - structs - tagged - tagged-transformer - - transformers-compat <0.7 # OK for GHC 9.2 https://github.com/commercialhaskell/stackage/issues/6137 + - transformers-compat - trifecta - unique - vector-instances @@ -1138,7 +1153,7 @@ packages: - nonempty-zipper - sendgrid-v3 - yesod-auth-oauth2 - - hspec-junit-formatter < 1.1 # https://github.com/freckle/freckle-app/issues/43 + - hspec-junit-formatter - aws-xray-client - aws-xray-client-wai - freckle-app @@ -1217,7 +1232,7 @@ packages: - binary-list - byteset - Clipboard - - gmail-simple < 0 # 0.1.0.2 https://github.com/Daniel-Diaz/gmail-simple/issues/1 + - gmail-simple - grouped-list - haskintex - HaTeX @@ -1442,10 +1457,10 @@ packages: # rather than disabling the latest hledger-lib and hledger. # (#3494/closed, #5779/closed) # Temporary upper bound to avoid mistaken and deprecated 1.24.99 release: - - hledger < 1.24.99 - - hledger-lib < 1.24.99 - - hledger-ui < 1.24.99 - - hledger-web < 1.24.99 + - hledger < 1.24.99 || > 1.24.99 + - hledger-lib < 1.24.99 || > 1.24.99 + - hledger-ui < 1.24.99 || > 1.24.99 + - hledger-web < 1.24.99 || > 1.24.99 "Mihai Maruseac @mihaimaruseac": - io-manager @@ -1511,7 +1526,7 @@ packages: - mwc-random-monad "Flavio Corpa @kutyel": - - language-avro + - language-avro < 0 # via avro "Matvey Aksenov @supki": - terminal-size @@ -1540,7 +1555,6 @@ packages: - interpolatedstring-perl6 - iproute - missing-foreign - - MissingH - multimap - parallel-io - text-binary @@ -1597,9 +1611,10 @@ packages: - stm-hamt - template-haskell-compat-v0208 - text-builder + - text-builder-dev - th-lego - vector-builder - - yaml-unscrambler >= 0.1.0.5 # https://github.com/commercialhaskell/stackage/issues/6348 + - yaml-unscrambler - xml-parser "Iustin Pop @iustin": @@ -1904,7 +1919,7 @@ packages: - amazonka-ds - amazonka-dynamodb - amazonka-dynamodb-streams - - amazonka-ec2 < 0 # takes too much memory to build https://github.com/brendanhay/amazonka/issues/549 + - amazonka-ec2 < 0 # 1.6.1 takes too much memory to build https://github.com/brendanhay/amazonka/issues/549 - amazonka-ecr - amazonka-ecs - amazonka-efs @@ -2329,7 +2344,7 @@ packages: - distributed-closure - inline-java - inline-r - - jni < 0 # compile fail + - jni < 0 # 0.8.0 compile fail - jvm - jvm-streaming - H @@ -2442,7 +2457,7 @@ packages: - hspec-golden - inflections - stache - - scalendar + - scalendar < 1.2.0 || > 1.2.0 "Sergey Alirzaev @l29ah": - monad-peel @@ -2689,7 +2704,7 @@ packages: - flexible-defaults - funcmp - hackage-db - - hledger-interest + - hledger-interest < 0 # https://github.com/commercialhaskell/stackage/issues/6473 - hopenssl - hsdns - hsemail @@ -2703,7 +2718,7 @@ packages: - nix-paths - parsec-class - prim-uniq - - random-fu < 0 # 0.2.7.7 compile fail + - random-fu - random-source - rvar - SafeSemaphore @@ -3007,7 +3022,7 @@ packages: "Justus Adam @JustusAdam": - marvin - marvin-interpolate - - mustache + - mustache < 0 # https://github.com/JustusAdam/mustache/issues/58 - exit-codes >= 1.0.0 "Cindy Wang @CindyLinz": @@ -3066,7 +3081,7 @@ packages: "Mikhail Glushenkov @23Skidoo": # - Cabal # take the one that ships with GHC - - cabal-install + - cabal-install < 3.6 - pointful "Lennart Kolmodin @kolmodin": @@ -3136,7 +3151,7 @@ packages: - irc-dcc "Alexey Raga @AlexeyRaga": - - hw-kafka-client + - hw-kafka-client < 4.0.4 "John Ky newhoggy@gmail.com @newhoggy": - aeson-lens @@ -3149,7 +3164,7 @@ packages: - arbor-lru-cache - arbor-postgres - asif - - avro + - avro < 0 # https://github.com/haskell-works/avro/issues/177 - bits-extra - hw-balancedparens - hw-bits @@ -3278,9 +3293,6 @@ packages: "Brandon Simmons @jberryman": - directory-tree - "Ian Grant Jeffries @seagreen": - - hjsonpointer - "Drew Hess @dhess": - hpio @@ -3344,6 +3356,7 @@ packages: - quote-quot - tasty-bench - tasty-inspection-testing + - text-rope "Ashley Yakeley @AshleyYakeley": - countable @@ -3564,7 +3577,7 @@ packages: - printcess "Alexey Kuleshevich @lehins": - - wai-middleware-auth + - wai-middleware-auth < 0 # 0.2.5.1 fails to build, https://github.com/commercialhaskell/stackage/issues/6436 - hip - massiv - massiv-io @@ -3576,9 +3589,10 @@ packages: - safe-decimal - flush-queue - pvar + - conduit-aeson "Hans-Peter Deifel @hpdeifel": - - hledger-iadd + - hledger-iadd < 0 # https://github.com/commercialhaskell/stackage/issues/6473 "Roy Levien @orome": - crypto-enigma @@ -3713,7 +3727,7 @@ packages: - wai-middleware-rollbar "Andrey Mokhov @snowleopard": - - algebraic-graphs < 0.6 # OK for GHC 9.2 https://github.com/commercialhaskell/stackage/issues/6362 + - algebraic-graphs "Albert Krewinkel @tarleb": - hslua @@ -4149,7 +4163,7 @@ packages: "Domen Kozar @domenkozar": - elm2nix - - mixpanel-client + - mixpanel-client < 0 # 0.3.0 aeson 2, https://github.com/commercialhaskell/stackage/issues/6443 - netrc - pretty-sop - servant-auth @@ -4388,7 +4402,7 @@ packages: - reanimate - earcut - vector-circular - - hgeometry >= 0.12.0.2 # required by reanimate as of 0.4.2.0 + - hgeometry < 0 # 0.13 compile fail - hgeometry-combinatorial - approximate-equality # required by hgeometry-combinatorial - type-level-natural-number # required by approximate-equality @@ -4428,7 +4442,7 @@ packages: - gtk-strut - rate-limit - status-notifier-item - - taffybar + - taffybar < 0 # 3.3.0 compile fail https://github.com/taffybar/taffybar/issues/542 - time-units - xml-helpers - xdg-desktop-entry @@ -4541,7 +4555,7 @@ packages: - multi-containers "Vaclav Svejcar @vaclavsvejcar": - - headroom < 0 # 0.4.2.0 compile fail https://github.com/commercialhaskell/stackage/issues/6342 + - headroom < 0 # via mustache - vcs-ignore "Adrian Sieber @ad-si": @@ -4584,6 +4598,7 @@ packages: - logstash - monad-logger-logstash - moss + - network-wait - wai-rate-limit - wai-rate-limit-redis - wai-saml2 @@ -4740,8 +4755,26 @@ packages: "Ghais Issa <0x47@0x49.dev> @ghais": - LetsBeRational + "Edward Yang @qwbarch": + - captcha-core + - captcha-2captcha + - captcha-capmonster + - data-default-extra + - data-default-instances-base + - data-default-instances-bytestring + - data-default-instances-case-insensitive + - data-default-instances-new-base + - data-default-instances-text + - data-default-instances-unordered-containers + - data-default-instances-vector + + "comp @1Computer1": + - errata + - reorder-expression + "Grandfathered dependencies": - Boolean + - Cabal-syntax - Decimal - Diff - FloatingHex @@ -4879,6 +4912,7 @@ packages: - enclosed-exceptions - entropy - erf + - errorcall-eq-instance - errors - expiring-cache-map - extensible-exceptions @@ -5241,9 +5275,8 @@ packages: - shellmet # #5965/closed - slist # #5965/closed - type-errors-pretty # #5965/closed - - typerep-map # #5965/closed + - typerep-map < 0 # internal library #5965/closed - unordered-intmap # #6326/closed - - validation-selective # #5965/closed - word-trie # #6326/closed - xdg-basedir # #6326/closed - yi-rope # #6326/closed @@ -5259,32 +5292,34 @@ packages: # affected. Packages will be kept in this list indefinitely so # that new packages depending on it will be flagged as well. "Removed packages": - - PSQueue < 0 # compile fail - - Unique < 0 - - cli < 0 # compile fail - - co-log-core < 0 # #5965/closed - - co-log-polysemy < 0 # #5965/closed - - fingertree-psqueue < 0 # compile fail - - hastache < 0 # bounds - - heart-core < 0 # deprecated - - hnix < 0 # #6271/closed - - json-builder < 0 # compile fail https://github.com/lpsmith/json-builder/issues/2 - - lens-labels < 0 # deprecated #4358/closed - - membrain < 0 # #5965/closed - - preprocessor-tools < 0 # compile fail - - present < 0 # #6271 - - prim-array < 0 # compile fail - - proto-lens-combinators < 0 # deprecated https://github.com/commercialhaskell/stackage/pull/4358 - - shortcut-links < 0 # #5965/closed - - snap-server < 0 # #6271 - - syb-with-class < 0 # compile fail - - tinytemplate < 0 # compile fail - - tomland < 0 # #5965/closed - - type-combinators < 0 # compile fail https://github.com/kylcarte/type-combinators/issues/8 - - wai-route < 0 # compile fail - - xxhash < 0 # compile fail - - universe-instances-base < 0 # deprecated - - universe-instances-trans < 0 # deprecated + - 2captcha < 0 # 0.1.0.0 deprecated + - PSQueue < 0 # 1.1.0.1 bounds + - Unique < 0 # 0.4.7.9 removed + - cli < 0 # 0.2.0 removed + - co-log-core < 0 # 0.3.1.0 removed #5965/closed + - co-log-polysemy < 0 # 0.0.1.3 removed #5965/closed + - 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.16.0 #6271/closed + - json-builder < 0 # 0.3 bounds + - lens-labels < 0 # 0.3.0.1 bounds, deprecated #4358/closed + - membrain < 0 # 0.0.0.2 bounds #5965/closed + - preprocessor-tools < 0 # 2.0.2 + - present < 0 # 4.1.0 compile fail #6271 + - prim-array < 0 # 0.2.2 bounds + - proto-lens-combinators < 0 # 0.4.0.1 deprecated https://github.com/commercialhaskell/stackage/pull/4358 + - shortcut-links < 0 # 0.5.1.1 #5965/closed + - snap-server < 0 # 1.1.2.0 #6271 + - syb-with-class < 0 # 0.6.1.13 compile fail + - tinytemplate < 0 # 0.1.2.0 compile fail + - tomland < 0 # 1.3.3.1 #5965/closed + - type-combinators < 0 # 0.2.4.3 compile fail https://github.com/kylcarte/type-combinators/issues/8 + - universe-instances-base < 0 # 1.1 deprecated + - universe-instances-trans < 0 # 1.1 deprecated + - validation-selective < 0 # 0.1.0.1 #5965/closed + - wai-route < 0 # 1.0.0 compile fail + - xxhash < 0 # 0.0.2 compile fail "GHC upper bounds": # Need to always match the version shipped with GHC @@ -5299,13 +5334,19 @@ packages: # it's clear that they must be built if we want to confirm that # they are working. "Compilation failures": + - BiobaseBlast < 0 # 0.3.3.0 compile fail aeson 2.0 - Fin < 0 # 0.2.9.0 `@' not in scope - HDBC-mysql < 0 # 0.7.1.0 - Spock-core < 0 # 0.14.0.0 + - Taxonomy < 0 # 2.2.0 compile fail aeson 2.0 - Workflow < 0 # 0.8.3 - accuerr < 0 # 0.2.0.2 + - aeson-combinators < 0 # 0.0.5.0 compile fail aeson 2.0 - 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 + - autodocodec < 0 # 0.0.1.0 compile fail aeson 2.0 + - aws-lambda-haskell-runtime < 0 # 4.1.1 compile fail aeson 2.0 - aws-xray-client < 0 # 0.1.0.1 - backprop < 0 # 0.2.6.4 - binary-ext < 0 # 2.0.4 @@ -5317,55 +5358,74 @@ packages: - cabal-toolkit < 0 # 0.0.7 - chaselev-deque < 0 # 0.5.0.5 - compdata < 0 # 0.12.1 + - composable-associations-aeson < 0 # 0.1.0.1 compile fail aeson 2.0 - courier < 0 # 0.1.1.5 - cql < 0 # 4.0.3 - crypto-numbers < 0 # 0.2.7 - cuckoo-filter < 0 # 0.2.0.2 benchmarks are an exe - - derive-topdown < 0 # 0.0.2.2 + - datadog < 0 # 0.2.5.0 compile fail aeson 2.0 + - descriptive < 0 # 0.9.5 compile fail aeson 2.0 - distributed-closure < 0 # 0.4.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 + - elm2nix # 0.2.1 compile fail aeson 2.0 + - elm2nix < 0 # 0.2.1 compile fail aeson 2.0 - enum-subset-generate < 0 # 0.1.0.0 - essence-of-live-coding-quickcheck < 0 # 0.2.5 + - etc < 0 # 0.4.1.0 compile fail aeson 2.0 - etcd < 0 # 1.0.5 - - farmhash < 0 # 0.1.0.5 - eve < 0 # 0.1.9.0 + - eventsource-api < 0 # 1.5.1 compile fail aeson 2.0 - eventsource-store-specs < 0 # 1.2.1 - exinst < 0 # 0.8 + - farmhash < 0 # 0.1.0.5 + - fb < 0 # 2.1.1 compile fail aeson 2.0 - 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 - haskell-import-graph < 0 # 1.0.4 - haskell-spacegoo < 0 # 0.2.0.1 - - haskoin-node < 0 # libsecp256k1 + - haskoin-node < 0 # 0.17.14 libsecp256k1 - haxl < 0 # 2.3.0.0 - hbeanstalk < 0 # 0.2.4 - - heterocephalus < 0 # 1.0.5.4 - hexml-lens < 0 # 0.2.1 - hexstring < 0 # 0.11.1 + - highjson < 0 # 0.5.0.0 compile fail aeson 2.0 - hs-functors < 0 # 0.1.7.1 - hschema < 0 # 0.0.1.1 + - hsebaysdk < 0 # 0.4.1.0 compile fail aeson 2.0 - hstatsd < 0 # 0.1 - interpolator < 0 # 1.1.0.2 - io-choice < 0 # 0.0.7 + - jmacro < 0 # 0.6.17 compile fail aeson 2.0 + - json-rpc < 0 # 1.0.3 compile fail aeson 2.0 + - json-rpc-generic < 0 # 0.2.1.6 compile fail aeson 2.0 + - json-stream < 0 # 0.4.2.4 compile fail aeson 2.0 - katydid < 0 # 0.4.0.2 MonadFail + - kawhi < 0 # 0.3.0 compile fail aeson 2.0 - kdt < 0 # 0.2.4 https://github.com/giogadi/kdt/issues/5 - lens-typelevel < 0 # 0.1.1.0 - - llvm-hs < 0 # llvm-config + - llvm-hs < 0 # 9.0.1 llvm-config - llvm-hs-pretty < 0 # 0.9.0.0 - machines-binary < 0 # 7.0.0.0 - machines-io < 0 # 7.0.0.0 - marvin-interpolate < 0 # 1.1.2 + - mergeful < 0 # 0.2.0.0 compile fail aeson 2.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 - nvim-hs-contrib < 0 # 2.0.0.0 - - odbc < 0 # odbc + - oauthenticated < 0 # 0.2.1.0 compile fail aeson 2.0 + - odbc < 0 # 0.2.6 odbc - open-witness < 0 # 0.5 - pencil < 0 # 1.0.1 + - persistent-typed-db < 0 # 0.1.0.5 compile fail aeson 2.0 - pipes-aeson < 0 # 0.4.1.8 - pipes-binary < 0 # 0.4.3 - pipes-network < 0 # 0.6.5 @@ -5373,19 +5433,28 @@ packages: - pkcs10 < 0 # 0.2.0.0 - planb-token-introspection < 0 # 0.1.4.0 - postgresql-transactional < 0 # 1.1.1 + - pushbullet-types < 0 # 0.4.1.0 compile fail aeson 2.0 - raaz < 0 # 0.3.6 multiple libraries - regex-compat-tdfa < 0 # 0.95.1.4 - rhine < 0 # 0.7.0 - - rose-trees < 0 # compilation seems to hang? - - sdl2-gfx < 0 # SDL2_gfx - - sdl2-image < 0 # SDL2_image - - sdl2-mixer < 0 # SDL2_mixer + - rigel-viz < 0 # 0.2.0.0 compile fail aeson 2.0 + - rose-trees < 0 # 0.0.4.5 compilation seems to hang? + - sdl2-gfx < 0 # 0.3.0.0 SDL2_gfx + - sdl2-image < 0 # 2.1.0.0 SDL2_image + - sdl2-mixer < 0 # 1.2.0.0 SDL2_mixer + - servant-cli < 0 # 0.1.0.2 compile fail aeson 2.0 + - servant-github-webhook < 0 # 0.4.2.0 compile fail aeson 2.0 + - servant-tracing < 0 # 0.2.0.0 compile fail aeson 2.0 - sessiontypes < 0 # 0.1.2 + - simple-templates < 0 # 1.0.0 compile fail aeson 2.0 - simplistic-generics < 0 # 2.0.0 - slack-api < 0 # 0.12 - squeal-postgresql < 0 # 0.8.1.1 - stm-stats < 0 # 0.2.0.0 + - stratosphere < 0 # 0.59.1 compile fail aeson 2.0 + - swagger < 0 # 0.3.0 compile fail aeson 2.0 - sydtest-persistent-sqlite < 0 # 0.2.0.0 + - template-toolkit < 0 # 0.1.1.0 compile fail aeson 2.0 - text-region < 0 # 0.3.1.0 - th-data-compat < 0 # 0.1.0.0 - throttle-io-stream < 0 # 0.2.0.1 @@ -5401,6 +5470,7 @@ packages: - uncertain < 0 # 0.3.1.0 - unordered-intmap < 0 # 0.1.1 - users-persistent < 0 # 0.5.0.2 + - validity-aeson < 0 # 0.2.0.4 compile fail aeson 2.0 - wai-predicates < 0 # 1.0.0 - webex-teams-pipes < 0 # 0.2.0.1 - websockets-rpc < 0 # 0.7.0 @@ -5408,7 +5478,8 @@ packages: - xls < 0 # 0.1.3 gcc failed - xml-conduit-parse < 0 # 0.3.1.2 - xml-lens < 0 # 0.3 - - xturtle < 0 # xft + - xml-to-json < 0 # 2.0.1 compile fail aeson 2.0 + - xturtle < 0 # 0.2.0.0 xft - yeshql-hdbc < 0 # 4.2.0.0 @@ -5420,84 +5491,75 @@ packages: # verify if they have been fixeq. "Library and exe bounds failures": - ALUT < 0 # tried ALUT-2.4.0.3, but its *library* requires the disabled package: OpenAL - - Allure < 0 # tried Allure-0.11.0.0, but its *library* requires the disabled package: LambdaHack + - Agda < 0 # tried Agda-2.6.2.1, but its *library* does not support: bytestring-0.11.3.0 - BNFC-meta < 0 # tried BNFC-meta-0.6.1, but its *library* does not support: template-haskell-2.18.0.0 - - BiobaseBlast < 0 # tried BiobaseBlast-0.3.3.0, but its *library* requires the disabled package: BiobaseTypes - - BiobaseBlast < 0 # tried BiobaseBlast-0.3.3.0, but its *library* requires the disabled package: BiobaseXNA - - BiobaseBlast < 0 # tried BiobaseBlast-0.3.3.0, but its *library* requires the disabled package: PrimitiveArray - - BiobaseBlast < 0 # tried BiobaseBlast-0.3.3.0, but its *library* requires the disabled package: SciBaseTypes - BiobaseENA < 0 # tried BiobaseENA-0.0.0.2, but its *library* requires the disabled package: BiobaseTypes - BiobaseFasta < 0 # tried BiobaseFasta-0.4.0.1, but its *library* requires the disabled package: streaming-bytestring - - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* does not support: network-3.1.2.5 + - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* does not support: network-3.1.2.7 + - BiobaseHTTP < 0 # tried BiobaseHTTP-1.2.0, but its *library* requires the disabled package: Taxonomy - BiobaseTypes < 0 # tried BiobaseTypes-0.2.1.0, but its *library* requires the disabled package: DPutils - BiobaseXNA < 0 # tried BiobaseXNA-0.11.1.1, but its *library* requires the disabled package: DPutils - - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* does not support: network-3.1.2.5 + - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* does not support: network-3.1.2.7 + - BlastHTTP < 0 # tried BlastHTTP-1.4.2, but its *library* requires the disabled package: BiobaseBlast + - ChannelT < 0 # tried ChannelT-0.0.0.7, but its *library* does not support: mmorph-1.2.0 - Chart < 0 # tried Chart-1.9.3, but its *library* does not support: lens-5.1 - Chart-cairo < 0 # tried Chart-cairo-1.9.3, but its *library* does not support: lens-5.1 - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* does not support: SVGFonts-1.8.0.1 - Chart-diagrams < 0 # tried Chart-diagrams-1.9.3, but its *library* does not support: lens-5.1 - - DAV < 0 # tried DAV-1.3.4, but its *library* requires the disabled package: http-client-tls - DPutils < 0 # tried DPutils-0.1.1.0, but its *library* requires the disabled package: streaming-bytestring - - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: biocore + - EntrezHTTP < 0 # tried EntrezHTTP-1.0.4, but its *library* requires the disabled package: Taxonomy - FPretty < 0 # tried FPretty-1.1, but its *library* does not support: base-4.16.0.0 - - Frames < 0 # tried Frames-0.7.2, but its *library* does not support: base-4.16.0.0 - - Frames < 0 # tried Frames-0.7.2, but its *library* does not support: ghc-prim-0.8.0 + - Frames < 0 # tried Frames-0.7.3, but its *library* requires the disabled package: readable - GLUT < 0 # tried GLUT-2.7.0.16, but its *library* requires the disabled package: OpenGL - GPipe < 0 # tried GPipe-2.2.5, but its *library* does not support: hashtables-1.3 - GPipe < 0 # tried GPipe-2.2.5, but its *library* does not support: linear-1.21.8 - Genbank < 0 # tried Genbank-1.0.3, but its *library* requires the disabled package: biocore - H < 0 # tried H-0.9.0.1, but its *executable* requires the disabled package: inline-r - - HDBC < 0 # tried HDBC-2.4.0.3, but its *library* does not support: time-1.11.1.1 - - HDBC-session < 0 # tried HDBC-session-0.1.2.0, but its *library* requires the disabled package: HDBC - HStringTemplate < 0 # tried HStringTemplate-0.8.8, but its *library* does not support: bytestring-0.11.1.0 + - HStringTemplate < 0 # tried HStringTemplate-0.8.8, but its *library* does not support: semigroups-0.20 - HStringTemplate < 0 # tried HStringTemplate-0.8.8, but its *library* does not support: template-haskell-2.18.0.0 - HStringTemplate < 0 # tried HStringTemplate-0.8.8, but its *library* does not support: time-1.11.1.1 - - HaTeX < 0 # tried HaTeX-3.22.3.0, but its *library* does not support: bytestring-0.11.1.0 - - HaTeX < 0 # tried HaTeX-3.22.3.0, but its *library* does not support: hashable-1.4.0.2 - HaskellNet < 0 # tried HaskellNet-0.6, but its *library* does not support: base-4.16.0.0 - HaskellNet-SSL < 0 # tried HaskellNet-SSL-0.3.4.4, but its *library* requires the disabled package: HaskellNet - Hoed < 0 # tried Hoed-0.5.1, but its *library* requires the disabled package: regex-tdfa-text - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: fast-logger-3.1.0 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: optparse-applicative-0.16.1.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: fast-logger-3.1.1 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: optparse-applicative-0.17.0.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *executable* does not support: wai-logger-2.4.0 - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: IPv6Addr-2.0.4 - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: aeson-2.0.3.0 - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: attoparsec-0.14.4 - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: bytestring-0.11.1.0 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: hedis-0.15.0 - - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: unordered-containers-0.2.16.0 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: hedis-0.15.1 + - IPv6DB < 0 # tried IPv6DB-0.3.2, but its *library* does not support: unordered-containers-0.2.17.0 - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: attoparsec-0.14.4 - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: bytestring-0.11.1.0 - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: hashable-1.4.0.2 - JuicyPixels-blp < 0 # tried JuicyPixels-blp-0.2.0.0, but its *library* does not support: text-show-3.9.6 - JuicyPixels-blurhash < 0 # tried JuicyPixels-blurhash-0.1.0.3, but its *library* does not support: bytestring-0.11.1.0 - - LambdaHack < 0 # tried LambdaHack-0.11.0.0, but its *library* requires the disabled package: sdl2 - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: Workflow - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: monadloc - MFlow < 0 # tried MFlow-0.4.6.0, but its *library* requires the disabled package: pwstore-fast - MapWith < 0 # tried MapWith-0.2.0.0, but its *library* does not support: base-4.16.0.0 - - MusicBrainz < 0 # tried MusicBrainz-0.4.1, but its *library* requires the disabled package: http-conduit - - NanoID < 0 # tried NanoID-3.1.1, but its *library* does not support: base-4.16.0.0 - Network-NineP < 0 # tried Network-NineP-0.4.7.1, but its *library* does not support: bytestring-0.11.1.0 - Network-NineP < 0 # tried Network-NineP-0.4.7.1, but its *library* requires the disabled package: mstate - NoTrace < 0 # tried NoTrace-0.3.0.4, but its *library* does not support: base-4.16.0.0 - OpenAL < 0 # tried OpenAL-1.7.0.5, but its *library* requires the disabled package: OpenGL - OpenGL < 0 # tried OpenGL-3.0.3.0, but its *library* does not support: bytestring-0.11.1.0 - PrimitiveArray < 0 # tried PrimitiveArray-0.10.1.1, but its *library* requires the disabled package: DPutils - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseBlast-0.3.3.0 - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseFasta-0.4.0.1 - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseHTTP-1.2.0 - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: BiobaseTypes-0.2.1.0 - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: aeson-2.0.3.0 - - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: network-3.1.2.5 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* does not support: network-3.1.2.7 + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: BiobaseBlast + - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: Taxonomy - RNAlien < 0 # tried RNAlien-1.7.0, but its *library* requires the disabled package: hierarchical-clustering - - RSA < 0 # tried RSA-2.4.1, but its *library* requires the disabled package: crypto-pubkey-types - SciBaseTypes < 0 # tried SciBaseTypes-0.1.1.0, but its *library* requires the disabled package: DPutils - Spock < 0 # tried Spock-0.14.0.0, but its *library* requires the disabled package: Spock-core - Spock-api-server < 0 # tried Spock-api-server-0.14.0.0, but its *library* requires the disabled package: Spock-core - Spock-lucid < 0 # tried Spock-lucid-0.4.0.1, but its *library* requires the disabled package: Spock - Spock-worker < 0 # tried Spock-worker-0.3.1.0, but its *library* requires the disabled package: Spock - Strafunski-StrategyLib < 0 # tried Strafunski-StrategyLib-5.0.1.0, but its *library* does not support: base-4.16.0.0 - - Taxonomy < 0 # tried Taxonomy-2.2.0, but its *library* requires the disabled package: graphviz - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: base-4.16.0.0 - TotalMap < 0 # tried TotalMap-0.1.1.1, but its *library* does not support: lens-5.1 - YampaSynth < 0 # tried YampaSynth-0.2, but its *executable* requires the disabled package: Yampa @@ -5534,19 +5596,19 @@ packages: - advent-of-code-api < 0 # tried advent-of-code-api-0.2.8.1, but its *library* requires the disabled package: servant - advent-of-code-api < 0 # tried advent-of-code-api-0.2.8.1, but its *library* requires the disabled package: servant-client - advent-of-code-api < 0 # tried advent-of-code-api-0.2.8.1, but its *library* requires the disabled package: servant-client-core - - aeson-better-errors < 0 # tried aeson-better-errors-0.9.1.0, but its *library* does not support: aeson-2.0.3.0 - aeson-default < 0 # tried aeson-default-0.9.1.0, but its *library* does not support: aeson-2.0.3.0 - - aeson-diff < 0 # tried aeson-diff-1.1.0.9, but its *library* does not support: base-4.16.0.0 - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: aeson-2.0.3.0 - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: base-4.16.0.0 - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: lens-5.1 + - aeson-injector < 0 # tried aeson-injector-1.1.5.0, but its *library* does not support: servant-docs-0.12 - aeson-iproute < 0 # tried aeson-iproute-0.2.1, but its *library* does not support: aeson-2.0.3.0 - aeson-picker < 0 # tried aeson-picker-0.1.0.5, but its *library* does not support: aeson-2.0.3.0 - aeson-picker < 0 # tried aeson-picker-0.1.0.5, but its *library* does not support: lens-5.1 - aeson-typescript < 0 # tried aeson-typescript-0.3.0.1, but its *library* requires the disabled package: string-interpolate - airship < 0 # tried airship-0.9.4, but its *library* does not support: base64-bytestring-1.2.1.0 - airship < 0 # tried airship-0.9.4, but its *library* does not support: bytestring-trie-0.2.6 - - airship < 0 # tried airship-0.9.4, but its *library* does not support: semigroups-0.19.2 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: mmorph-1.2.0 + - airship < 0 # tried airship-0.9.4, but its *library* does not support: semigroups-0.20 - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-3.2.3 - airship < 0 # tried airship-0.9.4, but its *library* does not support: wai-extra-3.1.8 - alarmclock < 0 # tried alarmclock-0.7.0.5, but its *library* does not support: time-1.11.1.1 @@ -5554,7 +5616,7 @@ packages: - alg < 0 # tried alg-0.2.13.1, but its *library* requires the disabled package: util - align-audio < 0 # tried align-audio-0.0, but its *executable* requires the disabled package: soxlib - alsa-seq < 0 # tried alsa-seq-0.6.0.8, but its *library* does not support: bytestring-0.11.1.0 - - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: http-client-0.7.9 + - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: http-client-0.7.11 - amazonka < 0 # tried amazonka-1.6.1, but its *library* does not support: unliftio-core-0.2.0.1 - amazonka-apigateway < 0 # tried amazonka-apigateway-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-application-autoscaling < 0 # tried amazonka-application-autoscaling-1.6.1, but its *library* requires the disabled package: amazonka-core @@ -5581,7 +5643,7 @@ packages: - amazonka-cognito-sync < 0 # tried amazonka-cognito-sync-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-config < 0 # tried amazonka-config-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-core < 0 # tried amazonka-core-1.6.1, but its *library* does not support: aeson-2.0.3.0 - - amazonka-core < 0 # tried amazonka-core-1.6.1, but its *library* does not support: http-client-0.7.9 + - amazonka-core < 0 # tried amazonka-core-1.6.1, but its *library* does not support: http-client-0.7.11 - amazonka-datapipeline < 0 # tried amazonka-datapipeline-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-devicefarm < 0 # tried amazonka-devicefarm-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-directconnect < 0 # tried amazonka-directconnect-1.6.1, but its *library* requires the disabled package: amazonka-core @@ -5646,8 +5708,7 @@ packages: - amazonka-waf < 0 # tried amazonka-waf-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-workspaces < 0 # tried amazonka-workspaces-1.6.1, but its *library* requires the disabled package: amazonka-core - amazonka-xray < 0 # tried amazonka-xray-1.6.1, but its *library* requires the disabled package: amazonka-core - - amqp < 0 # tried amqp-0.22.0, but its *library* requires the disabled package: connection - - amqp-utils < 0 # tried amqp-utils-0.6.3.2, but its *executable* requires the disabled package: tls + - amqp-utils < 0 # tried amqp-utils-0.6.3.2, but its *executable* requires the disabled package: filepath-bytestring - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: ansi-terminal-0.11.1 - ansigraph < 0 # tried ansigraph-0.3.0.5, but its *library* does not support: base-4.16.0.0 - antiope-core < 0 # tried antiope-core-7.5.3, but its *library* requires the disabled package: amazonka @@ -5662,41 +5723,35 @@ packages: - antiope-sns < 0 # tried antiope-sns-7.5.3, but its *library* requires the disabled package: amazonka-core - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka - antiope-sqs < 0 # tried antiope-sqs-7.5.3, but its *library* requires the disabled package: amazonka-core - - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: memory - aos-signature < 0 # tried aos-signature-0.1.1, but its *library* requires the disabled package: protolude - apecs-gloss < 0 # tried apecs-gloss-0.2.4, but its *library* requires the disabled package: gloss - api-maker < 0 # tried api-maker-0.1.0.6, but its *library* requires the disabled package: req - - apply-refact < 0 # tried apply-refact-0.9.3.0, but its *library* does not support: base-4.16.0.0 - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: bytestring-0.11.1.0 - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: lens-5.1 - - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: optparse-applicative-0.16.1.0 + - arbor-postgres < 0 # tried arbor-postgres-0.0.5, but its *library* does not support: optparse-applicative-0.17.0.0 - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* does not support: haskell-src-exts-1.23.1 - arrowp-qq < 0 # tried arrowp-qq-0.3.0, but its *library* does not support: template-haskell-2.18.0.0 - asif < 0 # tried asif-6.0.4, but its *library* requires the disabled package: thyme - - asn1-encoding < 0 # tried asn1-encoding-0.9.6, but its *library* requires the disabled package: asn1-types - - asn1-parse < 0 # tried asn1-parse-0.9.5, but its *library* requires the disabled package: asn1-types - - asn1-types < 0 # tried asn1-types-0.3.4, but its *library* requires the disabled package: memory - async-timer < 0 # tried async-timer-0.2.0.0, but its *library* does not support: unliftio-core-0.2.0.1 - atom-conduit < 0 # tried atom-conduit-0.9.0.1, but its *library* requires the disabled package: relude - - audacity < 0 # tried audacity-0.0.2, but its *library* does not support: bytestring-0.11.1.0 - - aura < 0 # tried aura-3.2.6, but its *library* does not support: bytestring-0.11.1.0 - - aura < 0 # tried aura-3.2.6, but its *library* does not support: hashable-1.4.0.2 - - aura < 0 # tried aura-3.2.6, but its *library* does not support: time-1.11.1.1 - - authenticate < 0 # tried authenticate-1.3.5, but its *library* does not support: aeson-2.0.3.0 - - authenticate-oauth < 0 # tried authenticate-oauth-1.7, but its *library* requires the disabled package: crypto-pubkey-types - - autodocodec-openapi3 < 0 # tried autodocodec-openapi3-0.1.0.0, but its *library* requires the disabled package: openapi3 + - audacity < 0 # tried audacity-0.0.2.1, but its *library* does not support: bytestring-0.11.1.0 + - aura < 0 # tried aura-3.2.7, but its *library* does not support: bytestring-0.11.1.0 + - aura < 0 # tried aura-3.2.7, but its *library* does not support: time-1.11.1.1 + - autodocodec-openapi3 < 0 # tried autodocodec-openapi3-0.1.0.0, but its *library* requires the disabled package: autodocodec + - autodocodec-schema < 0 # tried autodocodec-schema-0.1.0.0, but its *library* requires the disabled package: autodocodec + - autodocodec-schema < 0 # tried autodocodec-schema-0.1.0.0, but its *library* requires the disabled package: validity-aeson + - autodocodec-yaml < 0 # tried autodocodec-yaml-0.1.0.0, but its *library* requires the disabled package: autodocodec - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: aeson-2.0.3.0 - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: attoparsec-0.14.4 - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: base-4.16.0.0 - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: bytestring-0.11.1.0 - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: cryptonite-0.29 - - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: memory-0.16.0 + - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: memory-0.17.0 - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: template-haskell-2.18.0.0 - avers < 0 # tried avers-0.0.17.1, but its *library* does not support: time-1.11.1.1 - avers-api < 0 # tried avers-api-0.1.0, but its *library* requires the disabled package: avers - avers-api < 0 # tried avers-api-0.1.0, but its *library* requires the disabled package: servant - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: avers - - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: memory - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: servant - avers-server < 0 # tried avers-server-0.1.0.1, but its *library* requires the disabled package: servant-server - avwx < 0 # tried avwx-0.3.0.3, but its *library* does not support: lens-5.1 @@ -5706,7 +5761,7 @@ packages: - axel < 0 # tried axel-0.0.12, but its *library* does not support: base-4.16.0.0 - axiom < 0 # tried axiom-0.4.7, but its *library* requires the disabled package: transient-universe - b9 < 0 # tried b9-3.2.0, but its *library* does not support: aeson-2.0.3.0 - - b9 < 0 # tried b9-3.2.0, but its *library* does not support: hspec-2.8.5 + - b9 < 0 # tried b9-3.2.0, but its *library* does not support: hspec-2.9.4 - b9 < 0 # tried b9-3.2.0, but its *library* does not support: lens-5.1 - b9 < 0 # tried b9-3.2.0, but its *library* does not support: shake-0.19.6 - b9 < 0 # tried b9-3.2.0, but its *library* requires the disabled package: posix-pty @@ -5728,41 +5783,17 @@ packages: - bcp47 < 0 # tried bcp47-0.2.0.5, but its *library* requires the disabled package: country - bcp47-orphans < 0 # tried bcp47-orphans-0.1.0.4, but its *library* requires the disabled package: esqueleto - bcp47-orphans < 0 # tried bcp47-orphans-0.1.0.4, but its *library* requires the disabled package: persistent - - bcrypt < 0 # tried bcrypt-0.0.11, but its *library* requires the disabled package: memory - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: aeson-2.0.3.0 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: bytestring-0.11.1.0 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: dlist-1.0 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: ghc-prim-0.8.0 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: hashable-1.4.0.2 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: time-1.11.1.1 - - beam-core < 0 # tried beam-core-0.9.1.0, but its *library* does not support: vector-sized-1.5.0 - - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: aeson-2.0.3.0 - - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: bytestring-0.11.1.0 - - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: ghc-prim-0.8.0 - - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: hashable-1.4.0.2 - - beam-migrate < 0 # tried beam-migrate-0.5.1.0, but its *library* does not support: time-1.11.1.1 - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: aeson-2.0.3.0 - - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: beam-core-0.9.1.0 + - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: beam-core-0.9.2.1 - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: bytestring-0.11.1.0 - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: hashable-1.4.0.2 - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: mysql-0.2.1 - beam-mysql < 0 # tried beam-mysql-0.2.0.0, but its *library* does not support: time-1.11.1.1 - - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: aeson-2.0.3.0 - - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: attoparsec-0.14.4 - - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: bytestring-0.11.1.0 - - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: hashable-1.4.0.2 - - beam-postgres < 0 # tried beam-postgres-0.5.1.0, but its *library* does not support: time-1.11.1.1 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: aeson-2.0.3.0 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: attoparsec-0.14.4 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: bytestring-0.11.1.0 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: dlist-1.0 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: hashable-1.4.0.2 - - beam-sqlite < 0 # tried beam-sqlite-0.5.1.0, but its *library* does not support: time-1.11.1.1 - - bech32 < 0 # tried bech32-1.1.2, but its *executable* requires the disabled package: memory - - bech32-th < 0 # tried bech32-th-1.1.1, but its *library* requires the disabled package: bech32 - - bench-show < 0 # tried bench-show-0.3.1, but its *library* does not support: statistics-0.16.0.1 + - beam-sqlite < 0 # tried beam-sqlite-0.5.1.2, but its *library* requires the disabled package: sqlite-simple + - bench-show < 0 # tried bench-show-0.3.2, but its *library* requires the disabled package: Chart + - bench-show < 0 # tried bench-show-0.3.2, but its *library* requires the disabled package: Chart-diagrams - benchpress < 0 # tried benchpress-0.2.2.18, but its *library* does not support: base-4.16.0.0 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: brick-0.65 + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: brick-0.68 - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: bytestring-0.11.1.0 - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: directory-1.3.6.2 - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: filepath-1.4.2.1 @@ -5773,8 +5804,7 @@ packages: - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: time-1.11.1.1 - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: typed-process-0.2.8.0 - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vector-0.12.3.1 - - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vty-5.33 - - bimap-server < 0 # tried bimap-server-0.1.0.1, but its *library* requires the disabled package: warp + - bhoogle < 0 # tried bhoogle-0.1.3.5, but its *executable* does not support: vty-5.34 - binary-bits < 0 # tried binary-bits-0.5, but its *library* does not support: base-4.16.0.0 - binary-parsers < 0 # tried binary-parsers-0.2.4.0, but its *library* does not support: bytestring-0.11.1.0 - bioace < 0 # tried bioace-0.0.1, but its *library* requires the disabled package: biocore @@ -5798,53 +5828,58 @@ packages: - blaze-colonnade < 0 # tried blaze-colonnade-1.2.2.1, but its *library* requires the disabled package: colonnade - bloodhound < 0 # tried bloodhound-0.18.0.0, but its *library* does not support: aeson-2.0.3.0 - blosum < 0 # tried blosum-0.1.1.4, but its *executable* requires the disabled package: pipes-text - - bnb-staking-csvs < 0 # tried bnb-staking-csvs-0.2.0.0, but its *library* requires the disabled package: req + - bnb-staking-csvs < 0 # tried bnb-staking-csvs-0.2.1.0, but its *library* requires the disabled package: req - board-games < 0 # tried board-games-0.3, but its *library* requires the disabled package: cgi - - bodhi < 0 # tried bodhi-0.1.0, but its *library* requires the disabled package: http-query - boolean-normal-forms < 0 # tried boolean-normal-forms-0.0.1.1, but its *library* does not support: base-4.16.0.0 + - boomerang < 0 # tried boomerang-1.4.7, but its *library* does not support: semigroups-0.20 - boomerang < 0 # tried boomerang-1.4.7, but its *library* does not support: template-haskell-2.18.0.0 + - both < 0 # tried both-0.1.1.2, but its *library* requires the disabled package: zero - boundingboxes < 0 # tried boundingboxes-0.2.3, but its *library* does not support: lens-5.1 - - bower-json < 0 # tried bower-json-1.0.0.1, but its *library* requires the disabled package: aeson-better-errors - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: base-4.16.0.0 - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: bytestring-0.11.1.0 - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: ghc-9.2.1 - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: ghc-boot-9.2.1 - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: ghc-boot-th-9.2.1 - - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: ghc-exactprint-1.4.1 - - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: hledger - - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: hledger-lib + - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: ghc-exactprint-1.5.0 + - brittany < 0 # tried brittany-0.14.0.2, but its *library* does not support: semigroups-0.20 - buchhaltung < 0 # tried buchhaltung-0.0.7, but its *library* requires the disabled package: regex-tdfa-text - - bugsnag-haskell < 0 # tried bugsnag-haskell-0.0.4.3, but its *executable* requires the disabled package: yesod-core - - bugsnag-haskell < 0 # tried bugsnag-haskell-0.0.4.3, but its *library* requires the disabled package: http-client-tls - - bugzilla-redhat < 0 # tried bugzilla-redhat-0.3.3, but its *library* does not support: bytestring-0.11.1.0 - - bugzilla-redhat < 0 # tried bugzilla-redhat-0.3.3, but its *library* does not support: time-1.11.1.1 + - bugzilla-redhat < 0 # tried bugzilla-redhat-1.0.0, but its *library* does not support: bytestring-0.11.1.0 + - bugzilla-redhat < 0 # tried bugzilla-redhat-1.0.0, but its *library* does not support: time-1.11.1.1 - bulletproofs < 0 # tried bulletproofs-1.1.0, but its *library* requires the disabled package: elliptic-curve - - butcher < 0 # tried butcher-1.3.3.2, but its *library* does not support: base-4.16.0.0 - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* does not support: bytestring-0.11.1.0 + - buttplug-hs-core < 0 # tried buttplug-hs-core-0.1.0.1, but its *library* does not support: wuss-2.0.0.1 - bzlib < 0 # tried bzlib-0.5.1.0, but its *library* does not support: base-4.16.0.0 - bzlib < 0 # tried bzlib-0.5.1.0, but its *library* does not support: bytestring-0.11.1.0 - c14n < 0 # tried c14n-0.1.0.1, but its *library* does not support: bytestring-0.11.1.0 - cabal-appimage < 0 # tried cabal-appimage-0.3.0.3, but its *library* does not support: base-4.16.0.0 - cabal-file < 0 # tried cabal-file-0.1.1, but its *library* requires the disabled package: hackage-security - - cabal-flatpak < 0 # tried cabal-flatpak-0.1.0.3, but its *executable* requires the disabled package: http-client-tls - - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: Cabal-3.6.0.0 - - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: base-4.16.0.0 - - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: hashable-1.4.0.2 - - cabal-install < 0 # tried cabal-install-3.6.2.0, but its *executable* does not support: time-1.11.1.1 + - cabal-flatpak < 0 # tried cabal-flatpak-0.1.0.3, but its *executable* requires the disabled package: cabal-plan + - cabal-install < 0 # tried cabal-install-3.4.1.0, but its *executable* does not support: Cabal-3.6.0.0 + - cabal-install < 0 # tried cabal-install-3.4.1.0, but its *executable* does not support: HTTP-4000.4.0 + - cabal-install < 0 # tried cabal-install-3.4.1.0, but its *executable* does not support: base-4.16.0.0 + - cabal-install < 0 # tried cabal-install-3.4.1.0, but its *executable* does not support: bytestring-0.11.1.0 + - cabal-install < 0 # tried cabal-install-3.4.1.0, but its *executable* does not support: hashable-1.4.0.2 + - cabal-install < 0 # tried cabal-install-3.4.1.0, but its *executable* does not support: time-1.11.1.1 + - cabal-plan < 0 # tried cabal-plan-0.7.2.1, but its *executable* does not support: optparse-applicative-0.17.0.0 - cabal-rpm < 0 # tried cabal-rpm-2.0.10, but its *executable* does not support: Cabal-3.6.0.0 - cabal2nix < 0 # tried cabal2nix-2.18.0, but its *library* requires the disabled package: hpack - - cabal2spec < 0 # tried cabal2spec-2.6.2, but its *library* does not support: Cabal-3.6.0.0 - - cached-json-file < 0 # tried cached-json-file-0.1.1, but its *library* requires the disabled package: http-query - - cacophony < 0 # tried cacophony-0.10.1, but its *library* requires the disabled package: memory + - cacophony < 0 # tried cacophony-0.10.1, but its *library* requires the disabled package: monad-coroutine - cairo < 0 # tried cairo-0.13.8.1, but its *library* does not support: Cabal-3.6.0.0 - capability < 0 # tried capability-0.5.0.0, but its *library* does not support: lens-5.1 - - cardano-coin-selection < 0 # tried cardano-coin-selection-1.0.1, but its *library* requires the disabled package: cryptonite - - casa-client < 0 # tried casa-client-0.0.1, but its *library* requires the disabled package: memory + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* does not support: aeson-2.0.3.0 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* does not support: bytestring-0.11.1.0 + - captcha-2captcha < 0 # tried captcha-2captcha-0.1.0.0, but its *library* does not support: lens-5.1 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* does not support: aeson-2.0.3.0 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* does not support: bytestring-0.11.1.0 + - captcha-capmonster < 0 # tried captcha-capmonster-0.1.0.0, but its *library* does not support: lens-5.1 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* does not support: aeson-2.0.3.0 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* does not support: bytestring-0.11.1.0 + - captcha-core < 0 # tried captcha-core-0.1.0.1, but its *library* does not support: lens-5.1 + - casa-client < 0 # tried casa-client-0.0.1, but its *library* requires the disabled package: casa-types - casa-types < 0 # tried casa-types-0.0.2, but its *library* requires the disabled package: persistent - cassava-conduit < 0 # tried cassava-conduit-0.6.0, but its *library* does not support: bytestring-0.11.1.0 - caster < 0 # tried caster-0.0.3.0, but its *library* requires the disabled package: fast-builder - category < 0 # tried category-0.2.5.0, but its *library* requires the disabled package: alg - - cayley-client < 0 # tried cayley-client-0.4.17, but its *library* requires the disabled package: http-conduit - cereal-time < 0 # tried cereal-time-0.1.0.0, but its *library* does not support: time-1.11.1.1 - cgi < 0 # tried cgi-3001.5.0.0, but its *library* does not support: bytestring-0.11.1.0 - cgi < 0 # tried cgi-3001.5.0.0, but its *library* does not support: time-1.11.1.1 @@ -5853,43 +5888,31 @@ packages: - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: bytestring-0.11.1.0 - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: connection-0.3.1 - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-api-data-0.4.3 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-client-0.7.9 - - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: req-3.9.2 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: http-client-0.7.11 + - chatwork < 0 # tried chatwork-0.1.3.5, but its *library* does not support: req-3.10.0 - check-email < 0 # tried check-email-1.0.2, but its *library* requires the disabled package: email-validate - chiphunk < 0 # tried chiphunk-0.1.4.0, but its *library* does not support: hashable-1.4.0.2 - - chronos < 0 # tried chronos-1.1.3, but its *library* does not support: aeson-2.0.3.0 - - chronos < 0 # tried chronos-1.1.3, but its *library* does not support: bytestring-0.11.1.0 - - chronos < 0 # tried chronos-1.1.3, but its *library* does not support: hashable-1.4.0.2 - - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytebuild - - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: byteslice - - chronos < 0 # tried chronos-1.1.3, but its *library* requires the disabled package: bytesmith + - chronos < 0 # tried chronos-1.1.4, but its *library* does not support: base-4.16.0.0 + - chronos < 0 # tried chronos-1.1.4, but its *library* does not support: hashable-1.4.0.2 + - chronos < 0 # tried chronos-1.1.4, but its *library* does not support: semigroups-0.20 + - chronos < 0 # tried chronos-1.1.4, but its *library* requires the disabled package: bytebuild + - chronos < 0 # tried chronos-1.1.4, but its *library* requires the disabled package: byteslice + - chronos < 0 # tried chronos-1.1.4, but its *library* requires the disabled package: bytesmith - chronos-bench < 0 # tried chronos-bench-0.2.0.2, but its *library* requires the disabled package: chronos - - cipher-aes < 0 # tried cipher-aes-0.2.11, but its *library* requires the disabled package: securemem - - cipher-camellia < 0 # tried cipher-camellia-0.0.2, but its *library* requires the disabled package: securemem - - cipher-des < 0 # tried cipher-des-0.0.6, but its *library* requires the disabled package: securemem - - cipher-rc4 < 0 # tried cipher-rc4-0.1.4, but its *library* requires the disabled package: crypto-cipher-types - clang-compilation-database < 0 # tried clang-compilation-database-0.1.0.1, but its *library* does not support: base-4.16.0.0 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: ghc-9.2.1 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: ghc-bignum-1.2 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: ghc-boot-9.2.1 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: ghc-prim-0.8.0 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: ghci-9.2.1 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: hashable-1.4.0.2 - - clash-ghc < 0 # tried clash-ghc-1.4.6, but its *library* does not support: template-haskell-2.18.0.0 - - clash-lib < 0 # tried clash-lib-1.4.6, but its *library* does not support: ghc-9.2.1 - - clash-lib < 0 # tried clash-lib-1.4.6, but its *library* does not support: ghc-bignum-1.2 - - clash-lib < 0 # tried clash-lib-1.4.6, but its *library* does not support: hashable-1.4.0.2 - - clash-lib < 0 # tried clash-lib-1.4.6, but its *library* does not support: template-haskell-2.18.0.0 - - clash-prelude < 0 # tried clash-prelude-1.4.6, but its *library* does not support: ghc-bignum-1.2 - - clash-prelude < 0 # tried clash-prelude-1.4.6, but its *library* does not support: ghc-prim-0.8.0 - - clash-prelude < 0 # tried clash-prelude-1.4.6, but its *library* does not support: hashable-1.4.0.2 - - clash-prelude < 0 # tried clash-prelude-1.4.6, but its *library* does not support: template-haskell-2.18.0.0 + - clash-ghc < 0 # tried clash-ghc-1.6.2, but its *library* does not support: ghc-9.2.1 + - clash-ghc < 0 # tried clash-ghc-1.6.2, but its *library* does not support: ghc-boot-9.2.1 + - clash-ghc < 0 # tried clash-ghc-1.6.2, but its *library* does not support: ghc-prim-0.8.0 + - clash-ghc < 0 # tried clash-ghc-1.6.2, but its *library* does not support: ghci-9.2.1 + - clash-ghc < 0 # tried clash-ghc-1.6.2, but its *library* does not support: template-haskell-2.18.0.0 + - clash-lib < 0 # tried clash-lib-1.6.2, but its *library* does not support: ghc-9.2.1 + - clash-lib < 0 # tried clash-lib-1.6.2, but its *library* does not support: template-haskell-2.18.0.0 + - clash-prelude < 0 # tried clash-prelude-1.6.2, but its *library* does not support: ghc-prim-0.8.0 + - clash-prelude < 0 # tried clash-prelude-1.6.2, but its *library* does not support: template-haskell-2.18.0.0 - classy-prelude-yesod < 0 # tried classy-prelude-yesod-1.5.0, but its *library* requires the disabled package: persistent - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: base-4.16.0.0 - classyplate < 0 # tried classyplate-0.3.2.0, but its *library* does not support: template-haskell-2.18.0.0 - - clientsession < 0 # tried clientsession-0.9.1.2, but its *library* requires the disabled package: cipher-aes - - clientsession < 0 # tried clientsession-0.9.1.2, but its *library* requires the disabled package: crypto-random - - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* does not support: clock-0.8.2 + - clock-extras < 0 # tried clock-extras-0.1.0.2, but its *library* does not support: clock-0.8.3 - closed < 0 # tried closed-0.2.0.1, but its *library* requires the disabled package: persistent - cmark-highlight < 0 # tried cmark-highlight-0.2.0.0, but its *library* does not support: cmark-0.6 - co-log-concurrent < 0 # tried co-log-concurrent-0.5.1.0, but its *library* does not support: base-4.16.0.0 @@ -5897,6 +5920,7 @@ packages: - codec < 0 # tried codec-0.2.1, but its *library* requires the disabled package: binary-bits - cointracking-imports < 0 # tried cointracking-imports-0.1.0.1, but its *library* requires the disabled package: xlsx - colonnade < 0 # tried colonnade-1.2.0.2, but its *library* does not support: bytestring-0.11.1.0 + - colonnade < 0 # tried colonnade-1.2.0.2, but its *library* does not support: semigroups-0.20 - colour-accelerate < 0 # tried colour-accelerate-0.4.0.0, but its *library* requires the disabled package: accelerate - compact < 0 # tried compact-0.2.0.0, but its *library* does not support: base-4.16.0.0 - compact < 0 # tried compact-0.2.0.0, but its *library* does not support: bytestring-0.11.1.0 @@ -5904,19 +5928,21 @@ packages: - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: generic-deriving-1.14.1 - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: hashable-1.4.0.2 - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: lens-5.1 + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: mmorph-1.2.0 - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: profunctors-5.6.2 - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: template-haskell-2.18.0.0 - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: time-1.11.1.1 + - composite-aeson < 0 # tried composite-aeson-0.7.5.0, but its *library* does not support: vinyl-0.14.2 - composite-aeson-path < 0 # tried composite-aeson-path-0.7.5.0, but its *library* does not support: path-0.9.2 - - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: aeson-better-errors - composite-aeson-refined < 0 # tried composite-aeson-refined-0.7.5.0, but its *library* requires the disabled package: composite-aeson - - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: aeson-better-errors - composite-aeson-throw < 0 # tried composite-aeson-throw-0.1.0.0, but its *library* requires the disabled package: composite-aeson - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: lens-5.1 - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: profunctors-5.6.2 - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: template-haskell-2.18.0.0 + - composite-base < 0 # tried composite-base-0.7.5.0, but its *library* does not support: vinyl-0.14.2 - composite-binary < 0 # tried composite-binary-0.7.5.0, but its *library* requires the disabled package: composite-base - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* does not support: lens-5.1 + - composite-ekg < 0 # tried composite-ekg-0.7.5.0, but its *library* does not support: vinyl-0.14.2 - composite-hashable < 0 # tried composite-hashable-0.7.5.0, but its *library* does not support: hashable-1.4.0.2 - 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 @@ -5926,87 +5952,55 @@ packages: - conduit-connection < 0 # tried conduit-connection-0.1.0.5, but its *library* does not support: bytestring-0.11.1.0 - conduit-throttle < 0 # tried conduit-throttle-0.3.1.0, but its *library* requires the disabled package: throttle-io-stream - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* does not support: bytestring-0.11.1.0 - - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* does not support: optparse-applicative-0.16.1.0 + - confcrypt < 0 # tried confcrypt-0.2.3.3, but its *library* does not support: optparse-applicative-0.17.0.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* does not support: bytestring-0.11.1.0 - conferer-aeson < 0 # tried conferer-aeson-1.1.0.2, but its *library* does not support: bytestring-0.11.1.0 - - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* does not support: hspec-core-2.8.5 + - conferer-hspec < 0 # tried conferer-hspec-1.1.0.0, but its *library* does not support: hspec-core-2.9.4 - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* does not support: conferer-1.1.0.0 - conferer-snap < 0 # tried conferer-snap-1.0.0.0, but its *library* requires the disabled package: snap-server - conferer-warp < 0 # tried conferer-warp-1.1.0.0, but its *library* requires the disabled package: conferer - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: base-4.16.0.0 - configurator-pg < 0 # tried configurator-pg-0.2.5, but its *library* does not support: megaparsec-9.2.0 - - connection < 0 # tried connection-0.3.1, but its *library* requires the disabled package: tls - - 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-validation - constraint < 0 # tried constraint-0.1.4.0, but its *library* requires the disabled package: category - construct < 0 # tried construct-0.3.0.2, but its *library* requires the disabled package: input-parsers - containers-unicode-symbols < 0 # tried containers-unicode-symbols-0.3.1.3, but its *library* does not support: containers-0.6.5.1 - - copr-api < 0 # tried copr-api-0.1.0, but its *library* requires the disabled package: http-query - - core-telemetry < 0 # tried core-telemetry-0.1.8.1, but its *library* requires the disabled package: http-streams - - core-telemetry < 0 # tried core-telemetry-0.1.8.1, but its *library* requires the disabled package: locators - country < 0 # tried country-0.2.1, but its *library* does not support: aeson-2.0.3.0 - country < 0 # tried country-0.2.1, but its *library* does not support: attoparsec-0.14.4 - country < 0 # tried country-0.2.1, but its *library* does not support: base-4.16.0.0 - country < 0 # tried country-0.2.1, but its *library* does not support: bytestring-0.11.1.0 - country < 0 # tried country-0.2.1, but its *library* does not support: hashable-1.4.0.2 - - cprng-aes < 0 # tried cprng-aes-0.6.1, but its *library* requires the disabled package: cipher-aes - - cprng-aes < 0 # tried cprng-aes-0.6.1, but its *library* requires the disabled package: crypto-random - cql-io < 0 # tried cql-io-1.1.1, but its *library* requires the disabled package: cql - crackNum < 0 # tried crackNum-3.2, but its *executable* requires the disabled package: sbv - crc32c < 0 # tried crc32c-0.0.0, but its *library* does not support: bytestring-0.11.1.0 - - credential-store < 0 # tried credential-store-0.1.2, but its *library* requires the disabled package: memory - - crypto-cipher-tests < 0 # tried crypto-cipher-tests-0.0.11, but its *library* requires the disabled package: securemem - - crypto-cipher-types < 0 # tried crypto-cipher-types-0.0.9, but its *library* requires the disabled package: securemem - crypto-pubkey < 0 # tried crypto-pubkey-0.2.8, but its *library* requires the disabled package: crypto-numbers - - crypto-pubkey-types < 0 # tried crypto-pubkey-types-0.4.3, but its *library* requires the disabled package: asn1-types - - crypto-random < 0 # tried crypto-random-0.0.9, but its *library* requires the disabled package: securemem - cryptocipher < 0 # tried cryptocipher-0.6.2, but its *library* requires the disabled package: cipher-blowfish - - cryptocompare < 0 # tried cryptocompare-0.1.2, but its *library* requires the disabled package: http-conduit - - cryptohash < 0 # tried cryptohash-0.11.9, but its *library* requires the disabled package: memory - - cryptohash-cryptoapi < 0 # tried cryptohash-cryptoapi-0.1.4, but its *library* requires the disabled package: memory - - cryptonite < 0 # tried cryptonite-0.29, but its *library* requires the disabled package: memory - - cryptonite-conduit < 0 # tried cryptonite-conduit-0.2.2, but its *library* requires the disabled package: memory - - cryptonite-openssl < 0 # tried cryptonite-openssl-0.7, but its *library* requires the disabled package: memory - - cryptostore < 0 # tried cryptostore-0.2.1.0, but its *library* requires the disabled package: memory - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: QuickCheck-2.14.2 - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: attoparsec-0.14.4 - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: bytestring-0.11.1.0 - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: simple-vec3-0.6.0.1 - csg < 0 # tried csg-0.1.0.6, but its *library* does not support: strict-0.4.0.1 - css-syntax < 0 # tried css-syntax-0.1.0.0, but its *library* does not support: base-4.16.0.0 - - curl-runnings < 0 # tried curl-runnings-0.16.0, but its *library* requires the disabled package: http-client-tls - cutter < 0 # tried cutter-0.0, but its *executable* does not support: bytestring-0.11.1.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: Cabal-3.6.0.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: attoparsec-0.14.4 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: base-4.16.0.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: bytestring-0.11.1.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: constraints-0.13.2 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: cryptonite-0.29 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: hashable-1.4.0.2 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: memory-0.16.0 - - darcs < 0 # tried darcs-2.16.4, but its *library* does not support: time-1.11.1.1 - - darcs < 0 # tried darcs-2.16.4, but its *library* requires the disabled package: regex-compat-tdfa + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: attoparsec-0.14.4 + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: base-4.16.0.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: bytestring-0.11.1.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: constraints-0.13.3 + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: hashable-1.4.0.2 + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: memory-0.17.0 + - darcs < 0 # tried darcs-2.16.5, but its *library* does not support: time-1.11.1.1 - data-accessor-template < 0 # tried data-accessor-template-0.2.1.16, but its *library* does not support: template-haskell-2.18.0.0 - data-compat < 0 # tried data-compat-0.1.0.3, but its *library* does not support: base-4.16.0.0 - - data-tree-print < 0 # tried data-tree-print-0.1.0.2, but its *library* does not support: base-4.16.0.0 - - datadog < 0 # tried datadog-0.2.5.0, but its *library* requires the disabled package: http-client-tls - datasets < 0 # tried datasets-0.4.0, but its *library* requires the disabled package: req - datasets < 0 # tried datasets-0.4.0, but its *library* requires the disabled package: streaming-bytestring - decidable < 0 # tried decidable-0.3.0.0, but its *library* requires the disabled package: functor-products - deepseq-instances < 0 # tried deepseq-instances-0.1.0.1, but its *library* does not support: base-4.16.0.0 - - dhall < 0 # tried dhall-1.40.2, but its *library* requires the disabled package: http-client-tls - - dhall-bash < 0 # tried dhall-bash-1.0.39, but its *library* requires the disabled package: dhall - - dhall-json < 0 # tried dhall-json-1.7.9, but its *library* requires the disabled package: dhall - - dhall-lsp-server < 0 # tried dhall-lsp-server-1.0.17, but its *library* does not support: aeson-2.0.3.0 - - dhall-nix < 0 # tried dhall-nix-1.1.23, but its *library* requires the disabled package: hnix - - dhall-yaml < 0 # tried dhall-yaml-1.2.9, but its *library* requires the disabled package: dhall + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.0, but its *library* does not support: aeson-2.0.3.0 + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.0, but its *library* does not support: lsp-1.4.0.0 + - dhall-lsp-server < 0 # tried dhall-lsp-server-1.1.0, but its *library* does not support: rope-utf16-splay-0.4.0.0 + - dhall-nix < 0 # tried dhall-nix-1.1.24, but its *library* requires the disabled package: hnix - diagrams-builder < 0 # tried diagrams-builder-0.8.0.5, but its *library* requires the disabled package: haskell-src-exts-simple - - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* does not support: base-4.16.0.0 - - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* does not support: bytestring-0.11.1.0 - - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* does not support: hashable-1.4.0.2 - - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* does not support: lens-5.1 - - diagrams-cairo < 0 # tried diagrams-cairo-1.4.1.1, but its *library* requires the disabled package: statestack + - diagrams-cairo < 0 # tried diagrams-cairo-1.4.2, but its *library* requires the disabled package: statestack - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* does not support: base-4.16.0.0 - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* does not support: lens-5.1 - diagrams-canvas < 0 # tried diagrams-canvas-1.4.1, but its *library* requires the disabled package: blank-canvas @@ -6017,15 +6011,15 @@ packages: - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: containers-0.6.5.1 - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: diagrams-core-1.5.0 - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: lens-5.1 - - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: optparse-applicative-0.16.1.0 + - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* does not support: optparse-applicative-0.17.0.0 - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: statestack - diagrams-html5 < 0 # tried diagrams-html5-1.4.1, but its *library* requires the disabled package: static-canvas - diagrams-postscript < 0 # tried diagrams-postscript-1.5.1, but its *library* requires the disabled package: statestack - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* does not support: aeson-2.0.3.0 - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* does not support: base-4.16.0.0 - dialogflow-fulfillment < 0 # tried dialogflow-fulfillment-0.1.1.4, but its *library* does not support: bytestring-0.11.1.0 - - dice < 0 # tried dice-0.1.0.1, but its *library* requires the disabled package: random-fu - - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* does not support: criterion-1.5.12.0 + - dice < 0 # tried dice-0.1.0.1, but its *library* does not support: random-fu-0.3.0.0 + - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *executable* does not support: criterion-1.5.13.0 - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: attoparsec-0.14.4 - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: base-4.16.0.0 - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: bytestring-0.11.1.0 @@ -6034,6 +6028,7 @@ packages: - dictionaries < 0 # tried dictionaries-0.2.0.4, but its *library* does not support: time-1.11.1.1 - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* does not support: Cabal-3.6.0.0 - direct-rocksdb < 0 # tried direct-rocksdb-0.0.3, but its *library* requires the disabled package: cabal-toolkit + - direct-sqlite < 0 # tried direct-sqlite-2.3.26, but its *library* does not support: semigroups-0.20 - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: bytestring-0.11.1.0 - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: containers-0.6.5.1 - distributed-process < 0 # tried distributed-process-0.7.4, but its *library* does not support: hashable-1.4.0.2 @@ -6044,28 +6039,29 @@ packages: - distributed-process-monad-control < 0 # tried distributed-process-monad-control-0.5.1.3, but its *library* requires the disabled package: distributed-process - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: bytestring-0.11.1.0 - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: containers-0.6.5.1 - - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-3.1.2.5 + - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-3.1.2.7 - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* does not support: network-transport-tcp-0.8.0 - distributed-process-simplelocalnet < 0 # tried distributed-process-simplelocalnet-0.2.4, but its *library* requires the disabled package: network-multicast - - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: network-3.1.2.5 + - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: network-3.1.2.7 - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* does not support: random-1.2.1 - distributed-process-tests < 0 # tried distributed-process-tests-0.4.11, but its *library* requires the disabled package: rematch - distributed-static < 0 # tried distributed-static-0.3.9, but its *library* does not support: bytestring-0.11.1.0 - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: containers-0.6.5.1 - distribution < 0 # tried distribution-1.1.1.0, but its *library* does not support: random-1.2.1 - diversity < 0 # tried diversity-0.8.1.0, but its *library* requires the disabled package: fasta - - dns < 0 # tried dns-4.0.1, but its *library* requires the disabled package: cryptonite - docker < 0 # tried docker-0.6.0.6, but its *library* does not support: aeson-2.0.3.0 - docker < 0 # tried docker-0.6.0.6, but its *library* does not support: bytestring-0.11.1.0 - docker < 0 # tried docker-0.6.0.6, but its *library* does not support: unliftio-core-0.2.0.1 - - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* does not support: language-docker-10.4.0 + - docker-build-cacher < 0 # tried docker-build-cacher-2.1.1, but its *library* does not support: language-docker-10.4.2 - docopt < 0 # tried docopt-0.7.0.7, but its *library* does not support: template-haskell-2.18.0.0 + - doctest-extract < 0 # tried doctest-extract-0.1, but its *executable* does not support: optparse-applicative-0.17.0.0 - dom-parser < 0 # tried dom-parser-3.1.0, but its *library* requires the disabled package: xml-lens - domain < 0 # tried domain-0.1.1.3, but its *library* requires the disabled package: yaml-unscrambler + - dotenv < 0 # tried dotenv-0.9.0.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - drawille < 0 # tried drawille-0.1.2.0, but its *library* does not support: containers-0.6.5.1 - - eap < 0 # tried eap-0.9.0.2, but its *library* requires the disabled package: memory + - drifter-sqlite < 0 # tried drifter-sqlite-0.1.0.0, but its *library* requires the disabled package: sqlite-simple - earcut < 0 # tried earcut-0.1.0.4, but its *library* does not support: base-4.16.0.0 - - easytest < 0 # tried easytest-0.3, but its *library* does not support: hedgehog-1.0.5 + - easytest < 0 # tried easytest-0.3, but its *library* does not support: hedgehog-1.1.1 - ed25519 < 0 # tried ed25519-0.0.5.0, but its *library* does not support: bytestring-0.11.1.0 - ed25519 < 0 # tried ed25519-0.0.5.0, but its *library* does not support: ghc-prim-0.8.0 - ede < 0 # tried ede-0.3.2.0, but its *library* does not support: aeson-2.0.3.0 @@ -6089,106 +6085,99 @@ packages: - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* does not support: base-4.16.0.0 - ekg-statsd < 0 # tried ekg-statsd-0.2.5.0, but its *library* does not support: time-1.11.1.1 - ekg-wai < 0 # tried ekg-wai-0.1.0.3, but its *library* does not support: time-1.11.1.1 - - elm-export-persistent < 0 # tried elm-export-persistent-1.0.0, but its *library* requires the disabled package: persistent + - elm-street < 0 # tried elm-street-0.1.0.4, but its *executable* does not support: servant-0.19 + - elm-street < 0 # tried elm-street-0.1.0.4, but its *executable* does not support: servant-server-0.19 - elm-street < 0 # tried elm-street-0.1.0.4, but its *library* does not support: base-4.16.0.0 - - elm2nix < 0 # tried elm2nix-0.2.1, but its *library* requires the disabled package: req - - elynx < 0 # tried elynx-0.6.1.0, but its *executable* requires the disabled package: tlynx - email-validate < 0 # tried email-validate-2.3.2.15, but its *library* does not support: template-haskell-2.18.0.0 - envy < 0 # tried envy-2.1.0.0, but its *library* does not support: bytestring-0.11.1.0 - epub-metadata < 0 # tried epub-metadata-4.5, but its *library* requires the disabled package: regex-compat-tdfa - equal-files < 0 # tried equal-files-0.0.5.3, but its *executable* does not support: bytestring-0.11.1.0 - - esqueleto < 0 # tried esqueleto-3.5.3.0, but its *library* does not support: time-1.11.1.1 - - essence-of-live-coding-gloss < 0 # tried essence-of-live-coding-gloss-0.2.5, but its *library* requires the disabled package: gloss + - esqueleto < 0 # tried esqueleto-3.5.3.1, but its *library* does not support: time-1.11.1.1 + - essence-of-live-coding-gloss < 0 # tried essence-of-live-coding-gloss-0.2.6, but its *library* requires the disabled package: gloss - euler-tour-tree < 0 # tried euler-tour-tree-0.1.1.0, but its *library* requires the disabled package: Unique - event < 0 # tried event-0.1.4, but its *library* does not support: containers-0.6.5.1 - - event < 0 # tried event-0.1.4, but its *library* does not support: semigroups-0.19.2 + - event < 0 # tried event-0.1.4, but its *library* does not support: semigroups-0.20 - eventful-dynamodb < 0 # tried eventful-dynamodb-0.2.0, but its *library* requires the disabled package: amazonka - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: eventful-sql-common - eventful-postgresql < 0 # tried eventful-postgresql-0.2.0, but its *library* requires the disabled package: persistent - eventful-sql-common < 0 # tried eventful-sql-common-0.2.0, but its *library* does not support: persistent-template-2.12.0.0 - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: eventful-sql-common - eventful-sqlite < 0 # tried eventful-sqlite-0.2.0, but its *library* requires the disabled package: persistent + - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-api - eventsource-geteventstore-store < 0 # tried eventsource-geteventstore-store-1.2.1, but its *library* requires the disabled package: eventsource-store-specs - - eventstore < 0 # tried eventstore-1.4.2, but its *library* requires the disabled package: connection - - eventstore < 0 # tried eventstore-1.4.2, but its *library* requires the disabled package: dns - - evm-opcodes < 0 # tried evm-opcodes-0.1.0, but its *library* does not support: base-4.16.0.0 - - exception-hierarchy < 0 # tried exception-hierarchy-0.1.0.4, but its *library* does not support: template-haskell-2.18.0.0 - - executable-hash < 0 # tried executable-hash-0.2.0.4, but its *library* requires the disabled package: cryptohash - - experimenter < 0 # tried experimenter-0.1.0.12, but its *library* requires the disabled package: HaTeX + - eventsource-stub-store < 0 # tried eventsource-stub-store-1.1.1, but its *library* requires the disabled package: eventsource-api + - exception-hierarchy < 0 # tried exception-hierarchy-0.1.0.6, but its *library* does not support: template-haskell-2.18.0.0 - experimenter < 0 # tried experimenter-0.1.0.12, but its *library* requires the disabled package: esqueleto - experimenter < 0 # tried experimenter-0.1.0.12, but its *library* requires the disabled package: persistent - - faktory < 0 # tried faktory-1.1.2.1, but its *library* requires the disabled package: memory - fast-builder < 0 # tried fast-builder-0.1.3.0, but its *library* does not support: base-4.16.0.0 - fasta < 0 # tried fasta-0.10.4.2, but its *library* requires the disabled package: pipes-text - - fb < 0 # tried fb-2.1.1, but its *library* requires the disabled package: memory - fib < 0 # tried fib-0.1.0.1, but its *library* requires the disabled package: base-noprelude - filecache < 0 # tried filecache-0.4.1, but its *library* requires the disabled package: strict-base-types - - filter-logger < 0 # tried filter-logger-0.6.0.0, but its *executable* requires the disabled package: scotty - - filter-logger < 0 # tried filter-logger-0.6.0.0, but its *library* requires the disabled package: wai-extra + - filepath-bytestring < 0 # tried filepath-bytestring-1.4.2.1.10, but its *library* does not support: bytestring-0.11.1.0 - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: BiobaseNewick - find-clumpiness < 0 # tried find-clumpiness-0.2.3.2, but its *library* requires the disabled package: hierarchical-clustering - flat < 0 # tried flat-0.4.4, but its *library* does not support: base-4.16.0.0 - - fn < 0 # tried fn-0.3.0.2, but its *library* requires the disabled package: wai-extra - fold-debounce < 0 # tried fold-debounce-0.2.0.9, but its *library* does not support: time-1.11.1.1 - fold-debounce-conduit < 0 # tried fold-debounce-conduit-0.2.0.6, but its *library* does not support: base-4.16.0.0 - foldable1 < 0 # tried foldable1-0.1.0.0, but its *library* requires the disabled package: util - - freckle-app < 0 # tried freckle-app-1.0.2.3, but its *library* does not support: hspec-2.8.5 - - freckle-app < 0 # tried freckle-app-1.0.2.3, but its *library* does not support: hspec-core-2.8.5 - - freckle-app < 0 # tried freckle-app-1.0.2.3, but its *library* does not support: hspec-junit-formatter-1.0.3.0 + - freckle-app < 0 # tried freckle-app-1.0.2.9, but its *library* does not support: aeson-2.0.3.0 + - freckle-app < 0 # tried freckle-app-1.0.2.9, but its *library* requires the disabled package: datadog - friday < 0 # tried friday-0.2.3.1, but its *library* does not support: containers-0.6.5.1 - friday < 0 # tried friday-0.2.3.1, but its *library* requires the disabled package: ratio-int - friday-juicypixels < 0 # tried friday-juicypixels-0.1.2.4, but its *library* requires the disabled package: friday - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: base-4.16.0.0 - fswatch < 0 # tried fswatch-0.1.0.6, but its *library* does not support: haskeline-0.8.2 - - ftp-client < 0 # tried ftp-client-0.5.1.4, but its *library* requires the disabled package: connection - - fused-effects < 0 # tried fused-effects-1.1.1.1, but its *library* does not support: base-4.16.0.0 - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: poly-0.5.0.0 - galois-field < 0 # tried galois-field-1.0.2, but its *library* does not support: protolude-0.3.0 - gdax < 0 # tried gdax-0.6.0.0, but its *library* requires the disabled package: regex-tdfa-text - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: base-4.16.0.0 - generic-xmlpickler < 0 # tried generic-xmlpickler-0.1.0.6, but its *library* does not support: generic-deriving-1.14.1 - geniplate-mirror < 0 # tried geniplate-mirror-0.7.8, but its *library* does not support: template-haskell-2.18.0.0 + - genvalidity-aeson < 0 # tried genvalidity-aeson-1.0.0.0, but its *library* requires the disabled package: validity-aeson - genvalidity-hspec-persistent < 0 # tried genvalidity-hspec-persistent-1.0.0.0, but its *library* requires the disabled package: persistent + - genvalidity-mergeful < 0 # tried genvalidity-mergeful-0.3.0.0, but its *library* requires the disabled package: mergeful - genvalidity-persistent < 0 # tried genvalidity-persistent-1.0.0.0, but its *library* requires the disabled package: persistent + - genvalidity-sydtest < 0 # tried genvalidity-sydtest-1.0.0.0, but its *library* requires the disabled package: sydtest + - genvalidity-sydtest-aeson < 0 # tried genvalidity-sydtest-aeson-1.0.0.0, but its *library* requires the disabled package: sydtest + - genvalidity-sydtest-hashable < 0 # tried genvalidity-sydtest-hashable-1.0.0.0, but its *library* requires the disabled package: sydtest + - genvalidity-sydtest-lens < 0 # tried genvalidity-sydtest-lens-1.0.0.0, but its *library* requires the disabled package: sydtest - genvalidity-sydtest-persistent < 0 # tried genvalidity-sydtest-persistent-1.0.0.0, but its *library* requires the disabled package: persistent - - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: dhall-1.40.2 + - genvalidity-sydtest-persistent < 0 # tried genvalidity-sydtest-persistent-1.0.0.0, but its *library* requires the disabled package: sydtest + - genvalidity-typed-uuid < 0 # tried genvalidity-typed-uuid-0.1.0.1, but its *library* requires the disabled package: typed-uuid + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: dhall-1.41.1 - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: ghc-9.2.1 + - ghc-clippy-plugin < 0 # tried ghc-clippy-plugin-0.0.0.1, but its *library* does not support: text-icu-0.8.0.1 - ghc-parser < 0 # tried ghc-parser-0.2.3.0, but its *library* does not support: ghc-9.2.1 - ghc-prof < 0 # tried ghc-prof-1.4.1.9, but its *library* does not support: base-4.16.0.0 - - ghc-source-gen < 0 # tried ghc-source-gen-0.4.2.0, but its *library* does not support: ghc-9.2.1 - ghc-syb-utils < 0 # tried ghc-syb-utils-0.3.0.0, but its *library* does not support: ghc-9.2.1 - - ghc-typelits-extra < 0 # tried ghc-typelits-extra-0.4.3, but its *library* does not support: ghc-bignum-1.2 - ghcjs-dom < 0 # tried ghcjs-dom-0.9.5.0, but its *library* requires the disabled package: ghcjs-dom-jsaddle - gi-gsk < 0 # tried gi-gsk-4.0.4, but its *library* does not support: gi-gdk-3.0.25 - gi-webkit2 < 0 # tried gi-webkit2-4.0.28, but its *library* requires the disabled package: gi-soup + - ginger < 0 # tried ginger-0.10.4.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - ginger < 0 # tried ginger-0.10.4.0, but its *library* does not support: bytestring-0.11.1.0 - gingersnap < 0 # tried gingersnap-0.3.1.0, but its *library* requires the disabled package: snap-core - gio < 0 # tried gio-0.13.8.1, but its *library* does not support: Cabal-3.6.0.0 - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: IfElse - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: aws - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: bloomfilter - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: fdo-notify - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: git-lfs - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: http-client-restricted - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: network-multicast - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: sandi - - git-annex < 0 # tried git-annex-8.20211231, but its *executable* requires the disabled package: torrent + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: IfElse + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: aws + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: bloomfilter + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: fdo-notify + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: git-lfs + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: http-client-restricted + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: network-multicast + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: sandi + - git-annex < 0 # tried git-annex-10.20220222, but its *executable* requires the disabled package: torrent - git-vogue < 0 # tried git-vogue-0.3.0.2, but its *executable* requires the disabled package: hlint - git-vogue < 0 # tried git-vogue-0.3.0.2, but its *executable* requires the disabled package: stylish-haskell - - github < 0 # tried github-0.27, but its *library* requires the disabled package: http-client-tls - - github < 0 # tried github-0.27, but its *library* requires the disabled package: tls - - github-release < 0 # tried github-release-2.0.0.0, but its *library* requires the disabled package: http-client-tls - - github-rest < 0 # tried github-rest-1.1.2, but its *library* requires the disabled package: http-client-tls - - github-rest < 0 # tried github-rest-1.1.2, but its *library* requires the disabled package: jwt - github-webhook-handler < 0 # tried github-webhook-handler-0.0.8, but its *library* does not support: base-4.16.0.0 - github-webhook-handler-snap < 0 # tried github-webhook-handler-snap-0.0.7, but its *library* does not support: base-4.16.0.0 - - github-webhooks < 0 # tried github-webhooks-0.15.0, but its *library* requires the disabled package: memory - gitlib-libgit2 < 0 # tried gitlib-libgit2-3.1.2.1, but its *library* requires the disabled package: gitlib - glabrous < 0 # tried glabrous-2.0.5, but its *library* does not support: bytestring-0.11.1.0 - glaze < 0 # tried glaze-0.3.0.1, but its *library* does not support: lens-5.1 - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: ghcjs-base-stub - glazier-react < 0 # tried glazier-react-1.0.0.0, but its *library* requires the disabled package: glazier - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: data-diverse-lens + - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: ghcjs-base-stub - glazier-react-widget < 0 # tried glazier-react-widget-1.0.0.0, but its *library* requires the disabled package: glazier - glib < 0 # tried glib-0.13.8.1, but its *library* does not support: Cabal-3.6.0.0 - glib < 0 # tried glib-0.13.8.1, but its *library* does not support: bytestring-0.11.1.0 @@ -6205,7 +6194,7 @@ packages: - gloss-raster-accelerate < 0 # tried gloss-raster-accelerate-2.1.0.0, but its *library* requires the disabled package: accelerate - gloss-raster-accelerate < 0 # tried gloss-raster-accelerate-2.1.0.0, but its *library* requires the disabled package: gloss - gloss-rendering < 0 # tried gloss-rendering-1.13.1.1, but its *library* does not support: bytestring-0.11.1.0 - - gnuplot < 0 # tried gnuplot-0.5.6.1, but its *library* does not support: time-1.11.1.1 + - gmail-simple < 0 # tried gmail-simple-0.1.0.4, but its *library* requires the disabled package: base64 - gogol < 0 # tried gogol-0.5.0, but its *library* requires the disabled package: gogol-core - gogol-adexchange-buyer < 0 # tried gogol-adexchange-buyer-0.5.0, but its *library* requires the disabled package: gogol-core - gogol-adexchange-seller < 0 # tried gogol-adexchange-seller-0.5.0, but its *library* requires the disabled package: gogol-core @@ -6303,17 +6292,17 @@ packages: - gogol-youtube-analytics < 0 # tried gogol-youtube-analytics-0.5.0, but its *library* requires the disabled package: gogol-core - gogol-youtube-reporting < 0 # tried gogol-youtube-reporting-0.5.0, but its *library* requires the disabled package: gogol-core - google-cloud < 0 # tried google-cloud-0.0.4, but its *library* does not support: base-4.16.0.0 - - google-isbn < 0 # tried google-isbn-1.0.3, but its *library* requires the disabled package: http-conduit - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* does not support: base64-bytestring-1.2.1.0 - google-oauth2-jwt < 0 # tried google-oauth2-jwt-0.3.3, but its *library* does not support: bytestring-0.11.1.0 - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: bytestring-0.11.1.0 - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-api-data-0.4.3 - - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-client-0.7.9 - - gopher-proxy < 0 # tried gopher-proxy-0.1.1.3, but its *executable* requires the disabled package: warp + - google-translate < 0 # tried google-translate-0.5, but its *library* does not support: http-client-0.7.11 - gothic < 0 # tried gothic-0.1.8, but its *library* does not support: bytestring-0.11.1.0 - graphite < 0 # tried graphite-0.10.0.1, but its *library* requires the disabled package: graphviz - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: bytestring-0.11.1.0 + - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: optparse-applicative-0.17.0.0 - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: path-0.9.2 + - graphql-client < 0 # tried graphql-client-1.1.1, but its *executable* does not support: path-io-1.7.0 - graphql-client < 0 # tried graphql-client-1.1.1, but its *library* does not support: aeson-2.0.3.0 - graphula < 0 # tried graphula-2.0.1.0, but its *library* requires the disabled package: persistent - graphviz < 0 # tried graphviz-2999.20.1.0, but its *library* does not support: bytestring-0.11.1.0 @@ -6325,31 +6314,32 @@ packages: - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* does not support: groundhog-0.12.0 - groundhog-inspector < 0 # tried groundhog-inspector-0.11.0, but its *library* does not support: groundhog-th-0.12 - groundhog-mysql < 0 # tried groundhog-mysql-0.12, but its *library* does not support: mysql-0.2.1 + - groundhog-sqlite < 0 # tried groundhog-sqlite-0.12.0, but its *library* requires the disabled package: direct-sqlite - groundhog-th < 0 # tried groundhog-th-0.12, but its *library* does not support: aeson-2.0.3.0 - group-by-date < 0 # tried group-by-date-0.1.0.4, but its *executable* does not support: time-1.11.1.1 - grouped-list < 0 # tried grouped-list-0.2.2.1, but its *library* does not support: base-4.16.0.0 - gtk3 < 0 # tried gtk3-0.15.6, but its *library* does not support: Cabal-3.6.0.0 - hOpenPGP < 0 # tried hOpenPGP-2.9.7, but its *library* requires the disabled package: ixset-typed - - hOpenPGP < 0 # tried hOpenPGP-2.9.7, but its *library* requires the disabled package: memory - hOpenPGP < 0 # tried hOpenPGP-2.9.7, but its *library* requires the disabled package: nettle - - hackage-security < 0 # tried hackage-security-0.6.0.1, but its *library* does not support: time-1.11.1.1 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: http-client-0.7.9 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-0.18.3 - - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-client-0.18.3 + - hackage-security < 0 # tried hackage-security-0.6.2.1, but its *library* requires the disabled package: ed25519 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: http-client-0.7.11 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-0.19 + - hackernews < 0 # tried hackernews-1.4.0.0, but its *library* does not support: servant-client-0.19 - hadolint < 0 # tried hadolint-2.8.0, but its *library* does not support: deepseq-1.4.6.0 - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: colourista - hadolint < 0 # tried hadolint-2.8.0, but its *library* requires the disabled package: spdx - hadoop-streaming < 0 # tried hadoop-streaming-0.2.0.3, but its *library* does not support: bytestring-0.11.1.0 - - hakyll < 0 # tried hakyll-4.15.1.0, but its *library* does not support: template-haskell-2.18.0.0 + - hakyll < 0 # tried hakyll-4.15.1.1, but its *library* does not support: template-haskell-2.18.0.0 - hakyll-convert < 0 # tried hakyll-convert-0.3.0.4, but its *library* does not support: time-1.11.1.1 - - hal < 0 # tried hal-0.4.8, but its *library* does not support: aeson-2.0.3.0 - - handwriting < 0 # tried handwriting-0.1.0.3, but its *library* requires the disabled package: wreq + - hal < 0 # tried hal-0.4.9, but its *library* requires the disabled package: envy + - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *executable* does not support: optparse-applicative-0.17.0.0 + - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *executable* does not support: path-io-1.7.0 - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *library* does not support: aeson-2.0.3.0 - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *library* does not support: path-0.9.2 - hapistrano < 0 # tried hapistrano-0.4.3.0, but its *library* does not support: time-1.11.1.1 - happstack-hsp < 0 # tried happstack-hsp-7.3.7.5, but its *library* requires the disabled package: harp + - happstack-jmacro < 0 # tried happstack-jmacro-7.0.12.3, but its *library* requires the disabled package: jmacro - happy-meta < 0 # tried happy-meta-0.2.0.11, but its *library* does not support: template-haskell-2.18.0.0 - - hasbolt < 0 # tried hasbolt-0.1.6.1, but its *library* requires the disabled package: connection - hashable-time < 0 # tried hashable-time-0.3, but its *library* does not support: base-4.16.0.0 - hashing < 0 # tried hashing-0.1.0.1, but its *library* does not support: bytestring-0.11.1.0 - haskell-lsp < 0 # tried haskell-lsp-0.24.0.0, but its *library* does not support: aeson-2.0.3.0 @@ -6369,7 +6359,7 @@ packages: - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* does not support: template-haskell-2.18.0.0 - haskell-tools-backend-ghc < 0 # tried haskell-tools-backend-ghc-1.1.1.0, but its *library* requires the disabled package: references - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: Glob-0.10.2 - - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: optparse-applicative-0.16.1.0 + - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: base-4.16.0.0 - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: ghc-9.2.1 - haskell-tools-cli < 0 # tried haskell-tools-cli-1.1.1.0, but its *library* does not support: strict-0.4.0.1 @@ -6380,8 +6370,8 @@ packages: - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: aeson-2.0.3.0 - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: base-4.16.0.0 - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: ghc-9.2.1 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: network-3.1.2.5 - - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: optparse-applicative-0.16.1.0 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: network-3.1.2.7 + - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: optparse-applicative-0.17.0.0 - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: strict-0.4.0.1 - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* does not support: template-haskell-2.18.0.0 - haskell-tools-daemon < 0 # tried haskell-tools-daemon-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings @@ -6395,7 +6385,7 @@ packages: - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: base-4.16.0.0 - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: bytestring-0.11.1.0 - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: ghc-9.2.1 - - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: warp-3.3.18 + - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* does not support: warp-3.3.20 - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: haskell-tools-builtin-refactorings - haskell-tools-demo < 0 # tried haskell-tools-demo-1.1.1.0, but its *library* requires the disabled package: references - haskell-tools-prettyprint < 0 # tried haskell-tools-prettyprint-1.1.1.0, but its *library* does not support: base-4.16.0.0 @@ -6412,23 +6402,14 @@ packages: - haskell-tools-rewrite < 0 # tried haskell-tools-rewrite-1.1.1.0, but its *library* requires the disabled package: references - haskey < 0 # tried haskey-0.3.1.0, but its *library* does not support: stm-containers-1.2 - haskey-mtl < 0 # tried haskey-mtl-0.3.1.0, but its *library* does not support: monad-control-1.0.3.1 - - haskintex < 0 # tried haskintex-0.8.0.0, but its *library* requires the disabled package: HaTeX - - haskoin-core < 0 # tried haskoin-core-0.21.1, but its *library* requires the disabled package: memory - haskoin-core < 0 # tried haskoin-core-0.21.1, but its *library* requires the disabled package: secp256k1-haskell - - haskoin-store < 0 # tried haskoin-store-0.64.16, but its *library* requires the disabled package: haskoin-node - - haskoin-store < 0 # tried haskoin-store-0.64.16, but its *library* requires the disabled package: haskoin-store-data + - haskoin-store < 0 # tried haskoin-store-0.65.0, but its *library* requires the disabled package: haskoin-node + - haskoin-store < 0 # tried haskoin-store-0.65.0, but its *library* requires the disabled package: haskoin-store-data - hasmin < 0 # tried hasmin-1.0.3, but its *executable* does not support: bytestring-0.11.1.0 - - hasmin < 0 # tried hasmin-1.0.3, but its *executable* does not support: optparse-applicative-0.16.1.0 + - hasmin < 0 # tried hasmin-1.0.3, but its *executable* does not support: optparse-applicative-0.17.0.0 - hasmin < 0 # tried hasmin-1.0.3, but its *library* does not support: attoparsec-0.14.4 - - hasql-migration < 0 # tried hasql-migration-0.3.0, but its *library* requires the disabled package: memory - haxl-amazonka < 0 # tried haxl-amazonka-0.1.1, but its *library* requires the disabled package: haxl - haxr < 0 # tried haxr-3000.11.4.1, but its *library* does not support: base-4.16.0.0 - - hedgehog < 0 # tried hedgehog-1.0.5, but its *library* does not support: template-haskell-2.18.0.0 - - hedgehog-classes < 0 # tried hedgehog-classes-0.2.5.3, but its *library* requires the disabled package: hedgehog - - hedgehog-fakedata < 0 # tried hedgehog-fakedata-0.0.1.4, but its *library* requires the disabled package: hedgehog - - hedgehog-fn < 0 # tried hedgehog-fn-1.0, but its *library* requires the disabled package: hedgehog - - hedgehog-quickcheck < 0 # tried hedgehog-quickcheck-0.1.1, but its *library* requires the disabled package: hedgehog - - hedis < 0 # tried hedis-0.15.0, but its *library* requires the disabled package: tls - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: aeson-2.0.3.0 - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: attoparsec-0.14.4 - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: base-4.16.0.0 @@ -6437,13 +6418,11 @@ packages: - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: hashable-1.4.0.2 - heist < 0 # tried heist-1.1.0.1, but its *library* does not support: time-1.11.1.1 - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: ansi-terminal-0.11.1 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: brick-0.65 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: optparse-applicative-0.16.1.0 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: semigroups-0.19.2 - - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: vty-5.33 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: brick-0.68 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: optparse-applicative-0.17.0.0 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: semigroups-0.20 + - herms < 0 # tried herms-1.9.0.4, but its *executable* does not support: vty-5.34 - hex-text < 0 # tried hex-text-0.1.0.4, but its *library* does not support: base-4.16.0.0 - - hgeometry < 0 # tried hgeometry-0.13, but its *library* requires the disabled package: vector-circular - - hgeometry-combinatorial < 0 # tried hgeometry-combinatorial-0.13, but its *library* requires the disabled package: vector-circular - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: aeson-2.0.3.0 - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: base-4.16.0.0 - hgrev < 0 # tried hgrev-0.2.6, but its *library* does not support: bytestring-0.11.1.0 @@ -6451,56 +6430,50 @@ packages: - hid < 0 # tried hid-0.2.2, but its *library* does not support: bytestring-0.11.1.0 - hidden-char < 0 # tried hidden-char-0.1.0.2, but its *library* does not support: base-4.16.0.0 - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* does not support: base-4.16.0.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* does not support: mmorph-1.2.0 + - hierarchy < 0 # tried hierarchy-1.0.2, but its *library* does not support: transformers-compat-0.7.1 - higher-leveldb < 0 # tried higher-leveldb-0.6.0.0, but its *library* does not support: bytestring-0.11.1.0 - - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: swagger2 - - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: swagger2 + - highjson-swagger < 0 # tried highjson-swagger-0.5.0.0, but its *library* requires the disabled package: highjson + - highjson-th < 0 # tried highjson-th-0.5.0.0, but its *library* requires the disabled package: highjson - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart - hip < 0 # tried hip-1.5.6.0, but its *library* requires the disabled package: Chart-diagrams - hit < 0 # tried hit-0.7.0, but its *executable* requires the disabled package: git - hjsmin < 0 # tried hjsmin-0.2.0.4, but its *executable* does not support: bytestring-0.11.1.0 - - hledger < 0 # tried hledger-1.24.1, but its *library* does not support: base-4.16.0.0 - - hledger-iadd < 0 # tried hledger-iadd-1.3.16, but its *library* requires the disabled package: hledger-lib - - hledger-interest < 0 # tried hledger-interest-1.6.3, but its *executable* requires the disabled package: hledger-lib - - hledger-lib < 0 # tried hledger-lib-1.24.1, but its *library* does not support: base-4.16.0.0 - - hledger-stockquotes < 0 # tried hledger-stockquotes-0.1.2.0, but its *library* requires the disabled package: hledger-lib - hledger-stockquotes < 0 # tried hledger-stockquotes-0.1.2.0, but its *library* requires the disabled package: req - - hledger-ui < 0 # tried hledger-ui-1.24.1, but its *executable* does not support: base-4.16.0.0 - - hledger-web < 0 # tried hledger-web-1.24.1, but its *library* does not support: base-4.16.0.0 - - hlint < 0 # tried hlint-3.3.6, but its *library* does not support: ghc-lib-parser-9.2.1.20220109 - - hlint < 0 # tried hlint-3.3.6, but its *library* does not support: ghc-lib-parser-ex-9.2.0.1 + - hledger-web < 0 # tried hledger-web-1.25, but its *library* requires the disabled package: base64 + - hledger-web < 0 # tried hledger-web-1.25, but its *library* requires the disabled package: hjsmin + - hlint < 0 # tried hlint-3.3.6, but its *library* does not support: ghc-lib-parser-9.2.2.20220307 + - hlint < 0 # tried hlint-3.3.6, but its *library* does not support: ghc-lib-parser-ex-9.2.0.3 - hmatrix-backprop < 0 # tried hmatrix-backprop-0.1.3.0, but its *library* requires the disabled package: backprop - hmm-lapack < 0 # tried hmm-lapack-0.5, but its *library* requires the disabled package: lapack - hmpfr < 0 # tried hmpfr-0.4.4, but its *library* does not support: integer-gmp-1.1 - - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* requires the disabled package: memory - - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* requires the disabled package: saltine - - hoauth2 < 0 # tried hoauth2-1.16.1, but its *library* does not support: aeson-2.0.3.0 - - hoauth2 < 0 # tried hoauth2-1.16.1, but its *library* does not support: binary-0.8.9.0 - - hoauth2 < 0 # tried hoauth2-1.16.1, but its *library* does not support: bytestring-0.11.1.0 + - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* does not support: algebraic-graphs-0.6 + - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* does not support: base-4.16.0.0 + - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* does not support: bytestring-0.11.1.0 + - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* does not support: memory-0.17.0 + - hnix-store-core < 0 # tried hnix-store-core-0.5.0.0, but its *library* does not support: time-1.11.1.1 + - hoauth2 < 0 # tried hoauth2-2.3.0, but its *library* does not support: binary-0.8.9.0 + - hoauth2 < 0 # tried hoauth2-2.3.0, but its *library* does not support: bytestring-0.11.1.0 - hocilib < 0 # tried hocilib-0.2.0, but its *library* does not support: bytestring-0.11.1.0 + - hocon < 0 # tried hocon-0.1.0.4, but its *library* does not support: MissingH-1.5.0.0 - holy-project < 0 # tried holy-project-0.2.0.1, but its *library* requires the disabled package: hastache - - hoogle < 0 # tried hoogle-5.0.18.3, but its *library* requires the disabled package: connection - - hoogle < 0 # tried hoogle-5.0.18.3, but its *library* requires the disabled package: http-conduit - - hoogle < 0 # tried hoogle-5.0.18.3, but its *library* requires the disabled package: warp - - hoogle < 0 # tried hoogle-5.0.18.3, but its *library* requires the disabled package: warp-tls - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.6, but its *executable* requires the disabled package: graphviz - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.6, but its *executable* requires the disabled package: ixset-typed - - hopenpgp-tools < 0 # tried hopenpgp-tools-0.23.6, but its *executable* requires the disabled package: memory - hpack < 0 # tried hpack-0.34.6, but its *library* does not support: Cabal-3.6.0.0 - hpack-dhall < 0 # tried hpack-dhall-0.5.4, but its *library* requires the disabled package: hpack - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: aeson-2.0.3.0 - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: bytestring-0.11.1.0 - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: containers-0.6.5.1 - - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: retry-0.9.0.0 + - hpc-coveralls < 0 # tried hpc-coveralls-1.0.10, but its *library* does not support: retry-0.9.2.0 - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: aeson-2.0.3.0 + - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: optparse-applicative-0.17.0.0 - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: path-0.9.2 - - hpio < 0 # tried hpio-0.9.0.7, but its *executable* does not support: optparse-applicative-0.16.1.0 + - hpc-lcov < 0 # tried hpc-lcov-1.0.1, but its *executable* does not support: path-io-1.7.0 + - hpio < 0 # tried hpio-0.9.0.7, but its *executable* does not support: optparse-applicative-0.17.0.0 - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: QuickCheck-2.14.2 - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: bytestring-0.11.1.0 - hpio < 0 # tried hpio-0.9.0.7, but its *library* does not support: protolude-0.3.0 - hpp < 0 # tried hpp-0.6.4, but its *library* does not support: base-4.16.0.0 - - hpqtypes < 0 # tried hpqtypes-1.9.2.1, but its *library* does not support: Cabal-3.6.0.0 - - hpqtypes < 0 # tried hpqtypes-1.9.2.1, but its *library* does not support: aeson-2.0.3.0 - - hpqtypes-extras < 0 # tried hpqtypes-extras-1.14.1.0, but its *library* requires the disabled package: hpqtypes - hpqtypes-extras < 0 # tried hpqtypes-extras-1.14.1.0, but its *library* requires the disabled package: log-base - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: containers-0.6.5.1 - hquantlib < 0 # tried hquantlib-0.0.5.0, but its *library* does not support: hmatrix-0.20.2 @@ -6519,76 +6492,68 @@ packages: - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: attoparsec-0.14.4 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: bytestring-0.11.1.0 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-boot-9.2.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-lib-parser-9.2.1.20220109 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: ghc-lib-parser-9.2.2.20220307 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: hlint-3.3.6 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: http-client-0.7.9 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: http-client-0.7.11 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: lens-5.1 - - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: optparse-applicative-0.16.1.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: mmorph-1.2.0 + - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: optparse-applicative-0.17.0.0 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: template-haskell-2.18.0.0 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* does not support: time-1.11.1.1 - hsdev < 0 # tried hsdev-0.3.4.0, but its *library* requires the disabled package: text-region - - hsebaysdk < 0 # tried hsebaysdk-0.4.1.0, but its *library* requires the disabled package: http-client-tls - hsexif < 0 # tried hsexif-0.6.1.8, but its *library* does not support: bytestring-0.11.1.0 - hsexif < 0 # tried hsexif-0.6.1.8, but its *library* does not support: time-1.11.1.1 - - hspec-hedgehog < 0 # tried hspec-hedgehog-0.0.1.2, but its *library* requires the disabled package: hedgehog - hspec-need-env < 0 # tried hspec-need-env-0.1.0.8, but its *library* does not support: base-4.16.0.0 - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: base-4.16.0.0 - - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: hspec-core-2.8.5 + - hspec-tables < 0 # tried hspec-tables-0.0.1, but its *library* does not support: hspec-core-2.9.4 - hspec-tmp-proc < 0 # tried hspec-tmp-proc-0.5.0.1, but its *library* does not support: base-4.16.0.0 - - hspec-wai < 0 # tried hspec-wai-0.11.1, but its *library* requires the disabled package: wai-extra + - hspec-tmp-proc < 0 # tried hspec-tmp-proc-0.5.0.1, but its *library* does not support: hspec-2.9.4 - hspec-wai-json < 0 # tried hspec-wai-json-0.11.0, but its *library* does not support: hspec-wai-0.11.1 - hspec-webdriver < 0 # tried hspec-webdriver-1.2.0, but its *library* requires the disabled package: webdriver + - hsx-jmacro < 0 # tried hsx-jmacro-7.3.8.1, but its *library* requires the disabled package: jmacro - hsx2hs < 0 # tried hsx2hs-0.14.1.8, but its *library* does not support: template-haskell-2.18.0.0 - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* does not support: bytestring-0.11.1.0 - hsyslog-udp < 0 # tried hsyslog-udp-0.2.5, but its *library* does not support: time-1.11.1.1 - htoml < 0 # tried htoml-1.0.0.3, but its *library* does not support: aeson-2.0.3.0 - - http-client-overrides < 0 # tried http-client-overrides-0.1.1.0, but its *executable* requires the disabled package: http-client-tls - - http-client-tls < 0 # tried http-client-tls-0.3.5.3, but its *library* requires the disabled package: memory - - http-conduit < 0 # tried http-conduit-2.3.8, but its *library* requires the disabled package: http-client-tls - - http-directory < 0 # tried http-directory-0.1.9, but its *library* requires the disabled package: http-client-tls - - http-download < 0 # tried http-download-0.2.0.0, but its *library* requires the disabled package: memory - - http-query < 0 # tried http-query-0.1.1, but its *library* requires the disabled package: http-conduit - - http-streams < 0 # tried http-streams-0.8.9.4, but its *library* requires the disabled package: openssl-streams - - http2 < 0 # tried http2-3.0.2, but its *executable* requires the disabled package: cryptonite - - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.1, but its *library* requires the disabled package: hw-bits - - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.1, but its *library* requires the disabled package: hw-prim + - hw-balancedparens < 0 # tried hw-balancedparens-0.4.1.1, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-bits < 0 # tried hw-bits-0.7.2.1, but its *library* does not support: bytestring-0.11.1.0 - hw-conduit < 0 # tried hw-conduit-0.2.1.0, but its *library* does not support: bytestring-0.11.1.0 - hw-conduit < 0 # tried hw-conduit-0.2.1.0, but its *library* does not support: time-1.11.1.1 + - hw-dsv < 0 # tried hw-dsv-0.4.1.0, but its *executable* does not support: hedgehog-1.1.1 + - hw-dsv < 0 # tried hw-dsv-0.4.1.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-dsv < 0 # tried hw-dsv-0.4.1.0, but its *library* does not support: ghc-prim-0.8.0 - - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.0, but its *library* requires the disabled package: hw-bits - - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.0, but its *library* requires the disabled package: hw-prim + - hw-eliasfano < 0 # tried hw-eliasfano-0.1.2.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-excess < 0 # tried hw-excess-0.2.3.0, but its *library* requires the disabled package: hw-bits - hw-excess < 0 # tried hw-excess-0.2.3.0, but its *library* requires the disabled package: hw-prim - hw-fingertree < 0 # tried hw-fingertree-0.1.2.0, but its *library* requires the disabled package: hw-prim - - hw-hedgehog < 0 # tried hw-hedgehog-0.1.1.0, but its *library* requires the disabled package: hedgehog - - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.0, but its *library* does not support: hspec-2.8.5 - - hw-ip < 0 # tried hw-ip-2.4.2.0, but its *library* requires the disabled package: hw-bits + - hw-hedgehog < 0 # tried hw-hedgehog-0.1.1.0, but its *library* does not support: hedgehog-1.1.1 + - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.0, but its *library* does not support: hedgehog-1.1.1 + - hw-hspec-hedgehog < 0 # tried hw-hspec-hedgehog-0.1.1.0, but its *library* does not support: hspec-2.9.4 + - hw-ip < 0 # tried hw-ip-2.4.2.0, but its *executable* does not support: optparse-applicative-0.17.0.0 + - hw-json < 0 # tried hw-json-1.3.2.2, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-json < 0 # tried hw-json-1.3.2.2, but its *library* does not support: aeson-2.0.3.0 - - hw-json-simd < 0 # tried hw-json-simd-0.1.1.0, but its *library* requires the disabled package: hw-prim - - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.0, but its *library* requires the disabled package: hw-bits - - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.0, but its *library* requires the disabled package: hw-prim - - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.1, but its *library* requires the disabled package: bits-extra - - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.1, but its *library* requires the disabled package: hw-bits - - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.1, but its *library* requires the disabled package: hw-prim - - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.0, but its *library* requires the disabled package: hw-bits - - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.0, but its *library* requires the disabled package: hw-prim + - hw-json-simd < 0 # tried hw-json-simd-0.1.1.0, but its *executable* does not support: optparse-applicative-0.17.0.0 + - hw-json-simple-cursor < 0 # tried hw-json-simple-cursor-0.1.1.0, but its *executable* does not support: optparse-applicative-0.17.0.0 + - hw-json-standard-cursor < 0 # tried hw-json-standard-cursor-0.2.3.1, but its *executable* does not support: optparse-applicative-0.17.0.0 + - hw-packed-vector < 0 # tried hw-packed-vector-0.2.1.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-parser < 0 # tried hw-parser-0.1.1.0, but its *library* requires the disabled package: hw-prim - hw-prim < 0 # tried hw-prim-0.6.3.0, but its *library* does not support: bytestring-0.11.1.0 - hw-prim < 0 # tried hw-prim-0.6.3.0, but its *library* does not support: ghc-prim-0.8.0 - - hw-rankselect < 0 # tried hw-rankselect-0.13.4.0, but its *library* requires the disabled package: hw-bits - - hw-rankselect < 0 # tried hw-rankselect-0.13.4.0, but its *library* requires the disabled package: hw-prim + - hw-rankselect < 0 # tried hw-rankselect-0.13.4.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-rankselect-base < 0 # tried hw-rankselect-base-0.3.4.1, but its *library* requires the disabled package: bits-extra - hw-rankselect-base < 0 # tried hw-rankselect-base-0.3.4.1, but its *library* requires the disabled package: hw-bits - hw-rankselect-base < 0 # tried hw-rankselect-base-0.3.4.1, but its *library* requires the disabled package: hw-prim - hw-simd < 0 # tried hw-simd-0.1.2.0, but its *library* requires the disabled package: bits-extra - hw-simd < 0 # tried hw-simd-0.1.2.0, but its *library* requires the disabled package: hw-bits - hw-simd < 0 # tried hw-simd-0.1.2.0, but its *library* requires the disabled package: hw-prim + - hw-simd < 0 # tried hw-simd-0.1.2.0, but its *library* requires the disabled package: hw-rankselect - hw-streams < 0 # tried hw-streams-0.0.1.0, but its *library* does not support: ghc-prim-0.8.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-bits - hw-succinct < 0 # tried hw-succinct-0.1.0.1, but its *library* requires the disabled package: hw-prim + - 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.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - hw-xml < 0 # tried hw-xml-0.5.1.0, but its *library* does not support: ghc-prim-0.8.0 - - hworker < 0 # tried hworker-0.1.0.1, but its *library* requires the disabled package: hedis - hyper < 0 # tried hyper-0.2.1.1, but its *library* does not support: base-4.16.0.0 - hyperloglog < 0 # tried hyperloglog-0.4.5, but its *library* requires the disabled package: siphash - hyraxAbif < 0 # tried hyraxAbif-0.2.3.27, but its *library* does not support: bytestring-0.11.1.0 @@ -6597,13 +6562,14 @@ packages: - idris < 0 # tried idris-1.3.4, but its *library* does not support: Cabal-3.6.0.0 - idris < 0 # tried idris-1.3.4, but its *library* does not support: aeson-2.0.3.0 - idris < 0 # tried idris-1.3.4, but its *library* does not support: bytestring-0.11.1.0 - - idris < 0 # tried idris-1.3.4, but its *library* does not support: network-3.1.2.5 + - idris < 0 # tried idris-1.3.4, but its *library* does not support: network-3.1.2.7 + - idris < 0 # tried idris-1.3.4, but its *library* does not support: optparse-applicative-0.17.0.0 - iff < 0 # tried iff-0.0.6, but its *library* does not support: bytestring-0.11.1.0 - ihaskell < 0 # tried ihaskell-0.10.2.2, but its *library* requires the disabled package: ghc-parser - ihaskell < 0 # tried ihaskell-0.10.2.2, but its *library* requires the disabled package: hlint - ihaskell-hvega < 0 # tried ihaskell-hvega-0.5.0.2, but its *library* requires the disabled package: ihaskell - importify < 0 # tried importify-1.0.1, but its *library* requires the disabled package: hse-cpp - - incremental-parser < 0 # tried incremental-parser-0.5.0.2, but its *library* requires the disabled package: input-parsers + - incremental-parser < 0 # tried incremental-parser-0.5.0.3, but its *library* requires the disabled package: input-parsers - indentation-core < 0 # tried indentation-core-0.0.0.2, but its *library* does not support: base-4.16.0.0 - indentation-parsec < 0 # tried indentation-parsec-0.0.0.2, but its *library* does not support: base-4.16.0.0 - inline-java < 0 # tried inline-java-0.10.0, but its *library* does not support: ghc-9.2.1 @@ -6614,31 +6580,31 @@ packages: - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* does not support: bytestring-0.11.1.0 - interpolatedstring-qq2 < 0 # tried interpolatedstring-qq2-0.1.0.0, but its *library* does not support: template-haskell-2.18.0.0 - intro < 0 # tried intro-0.9.0.0, but its *library* does not support: bytestring-0.11.1.0 - - invertible-grammar < 0 # tried invertible-grammar-0.1.3.2, but its *library* does not support: template-haskell-2.18.0.0 - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: attoparsec-0.14.4 - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: base-4.16.0.0 - io-streams-haproxy < 0 # tried io-streams-haproxy-1.0.1.0, but its *library* does not support: bytestring-0.11.1.0 - ipa < 0 # tried ipa-0.3.1.1, but its *library* does not support: template-haskell-2.18.0.0 - ipa < 0 # tried ipa-0.3.1.1, but its *library* does not support: unicode-transforms-0.4.0 - - ipython-kernel < 0 # tried ipython-kernel-0.10.2.2, but its *library* requires the disabled package: memory - irc-client < 0 # tried irc-client-1.1.2.2, but its *library* does not support: bytestring-0.11.1.0 - irc-client < 0 # tried irc-client-1.1.2.2, but its *library* does not support: time-1.11.1.1 - irc-conduit < 0 # tried irc-conduit-0.3.0.5, but its *library* does not support: bytestring-0.11.1.0 - irc-conduit < 0 # tried irc-conduit-0.3.0.5, but its *library* does not support: time-1.11.1.1 - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: attoparsec-0.14.4 - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: bytestring-0.11.1.0 - - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: network-3.1.2.5 + - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: network-3.1.2.7 - irc-dcc < 0 # tried irc-dcc-2.0.1, but its *library* does not support: path-0.9.2 - - it-has < 0 # tried it-has-0.2.0.0, but its *library* does not support: generic-lens-2.2.0.0 + - it-has < 0 # tried it-has-0.2.0.0, but its *library* does not support: generic-lens-2.2.1.0 - ixset < 0 # tried ixset-1.1.1.1, but its *library* requires the disabled package: syb-with-class - ixset-typed < 0 # tried ixset-typed-0.5, but its *library* does not support: template-haskell-2.18.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 - jack < 0 # tried jack-0.7.2, but its *library* does not support: bytestring-0.11.1.0 - - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: snap-core - - jose < 0 # tried jose-0.9, but its *library* requires the disabled package: memory - - jose-jwt < 0 # tried jose-jwt-0.9.2, but its *library* requires the disabled package: memory + - javascript-extras < 0 # tried javascript-extras-0.5.0.0, but its *library* requires the disabled package: ghcjs-base-stub + - jmacro-rpc < 0 # tried jmacro-rpc-0.3.3, but its *library* requires the disabled package: jmacro + - jmacro-rpc-happstack < 0 # tried jmacro-rpc-happstack-0.3.2, but its *library* requires the disabled package: jmacro + - jmacro-rpc-snap < 0 # tried jmacro-rpc-snap-0.3, but its *library* requires the disabled package: jmacro + - jose-jwt < 0 # tried jose-jwt-0.9.3, but its *library* does not support: aeson-2.0.3.0 - jsaddle < 0 # tried jsaddle-0.9.8.1, but its *library* does not support: aeson-2.0.3.0 - jsaddle < 0 # tried jsaddle-0.9.8.1, but its *library* does not support: attoparsec-0.14.4 - jsaddle < 0 # tried jsaddle-0.9.8.1, but its *library* does not support: base-compat-0.12.1 @@ -6661,15 +6627,12 @@ packages: - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* does not support: aeson-2.0.3.0 - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* does not support: base-4.16.0.0 - json-rpc-server < 0 # tried json-rpc-server-0.2.6.0, but its *library* does not support: bytestring-0.11.1.0 - - json-stream < 0 # tried json-stream-0.4.2.4, but its *library* does not support: aeson-2.0.3.0 - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: distributed-closure - jvm < 0 # tried jvm-0.6.0, but its *library* requires the disabled package: jni - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: distributed-closure - jvm-batching < 0 # tried jvm-batching-0.2.0, but its *library* requires the disabled package: jni - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: distributed-closure - jvm-streaming < 0 # tried jvm-streaming-0.4.0, but its *library* requires the disabled package: jni - - jwt < 0 # tried jwt-0.11.0, but its *library* requires the disabled package: memory - - katip-logstash < 0 # tried katip-logstash-0.1.0.2, but its *library* requires the disabled package: logstash - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: aeson-2.0.3.0 - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: async-2.2.4 - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: katip-0.8.7.0 @@ -6677,7 +6640,6 @@ packages: - katip-rollbar < 0 # tried katip-rollbar-0.3.0.1, but its *library* does not support: time-1.11.1.1 - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: aeson-2.0.3.0 - katip-scalyr-scribe < 0 # tried katip-scalyr-scribe-0.1.0.1, but its *library* does not support: katip-0.8.7.0 - - kawhi < 0 # tried kawhi-0.3.0, but its *library* requires the disabled package: http-conduit - kind-generics-th < 0 # tried kind-generics-th-0.2.2.2, but its *library* does not support: template-haskell-2.18.0.0 - koji < 0 # tried koji-0.0.2, but its *library* requires the disabled package: haxr - koofr-client < 0 # tried koofr-client-1.0.0.3, but its *library* does not support: aeson-2.0.3.0 @@ -6686,7 +6648,7 @@ packages: - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* does not support: aeson-2.0.3.0 - kubernetes-webhook-haskell < 0 # tried kubernetes-webhook-haskell-0.2.0.3, but its *library* does not support: bytestring-0.11.1.0 - lackey < 0 # tried lackey-2.0.0.0, but its *library* requires the disabled package: servant-foreign - - lambdabot-core < 0 # tried lambdabot-core-5.3.0.2, but its *library* requires the disabled package: random-fu + - lambdabot-core < 0 # tried lambdabot-core-5.3.0.2, but its *library* does not support: random-fu-0.3.0.0 - lambdabot-irc-plugins < 0 # tried lambdabot-irc-plugins-5.3.0.2, but its *library* requires the disabled package: lambdabot-core - language-haskell-extract < 0 # tried language-haskell-extract-0.2.4, but its *library* does not support: template-haskell-2.18.0.0 - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: aeson-2.0.3.0 @@ -6697,15 +6659,13 @@ packages: - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: hruby-0.5.0.0 - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: lens-5.1 - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: megaparsec-9.2.0 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: memory-0.16.0 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-0.18.3 - - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-client-0.18.3 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: memory-0.17.0 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-0.19 + - language-puppet < 0 # tried language-puppet-1.4.6.5, but its *library* does not support: servant-client-0.19 - lapack < 0 # tried lapack-0.5, but its *library* requires the disabled package: hyper - - lapack-ffi-tools < 0 # tried lapack-ffi-tools-0.1.2.1, but its *executable* does not support: bytestring-0.11.1.0 - lapack-hmatrix < 0 # tried lapack-hmatrix-0.0.0.1, but its *library* requires the disabled package: lapack - large-hashable < 0 # tried large-hashable-0.1.0.4, but its *library* does not support: template-haskell-2.18.0.0 - learn-physics < 0 # tried learn-physics-0.6.5, but its *library* requires the disabled package: gloss - - learn-physics < 0 # tried learn-physics-0.6.5, but its *library* requires the disabled package: gnuplot - lens-accelerate < 0 # tried lens-accelerate-0.3.0.0, but its *library* does not support: lens-5.1 - lens-datetime < 0 # tried lens-datetime-0.3, but its *library* does not support: lens-5.1 - lens-process < 0 # tried lens-process-0.4.0.0, but its *library* does not support: lens-5.1 @@ -6723,7 +6683,6 @@ packages: - libraft < 0 # tried libraft-0.5.0.0, but its *library* requires the disabled package: protolude - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: Cabal-3.6.0.0 - licensor < 0 # tried licensor-0.5.0, but its *library* does not support: base-4.16.0.0 - - line < 0 # tried line-4.0.1, but its *library* requires the disabled package: http-conduit - linear-accelerate < 0 # tried linear-accelerate-0.7.0.0, but its *library* does not support: lens-5.1 - linear-circuit < 0 # tried linear-circuit-0.1.0.4, but its *library* requires the disabled package: lapack - linked-list-with-iterator < 0 # tried linked-list-with-iterator-0.1.1.0, but its *library* does not support: containers-0.6.5.1 @@ -6733,10 +6692,11 @@ packages: - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log - little-logger < 0 # tried little-logger-0.3.2, but its *library* requires the disabled package: co-log-core - llvm-hs-pure < 0 # tried llvm-hs-pure-9.0.0, but its *library* does not support: bytestring-0.11.1.0 - - locators < 0 # tried locators-0.3.0.3, but its *library* requires the disabled package: memory - log-base < 0 # tried log-base-0.11.0.0, but its *library* does not support: aeson-2.0.3.0 + - log-base < 0 # tried log-base-0.11.0.0, but its *library* does not support: mmorph-1.2.0 - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: aeson-2.0.3.0 - - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: o-clock-1.2.1 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: mmorph-1.2.0 + - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: o-clock-1.2.1.1 - log-warper < 0 # tried log-warper-1.9.0, but its *library* does not support: universum-1.7.2 - logger-thread < 0 # tried logger-thread-0.1.0.2, but its *library* requires the disabled package: protolude - logging-effect-extra < 0 # tried logging-effect-extra-2.0.0, but its *library* does not support: base-4.16.0.0 @@ -6749,12 +6709,14 @@ packages: - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: prettyprinter-1.7.1 - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* does not support: time-1.11.1.1 - logging-effect-extra-handler < 0 # tried logging-effect-extra-handler-2.0.1, but its *library* requires the disabled package: logging-effect - - logstash < 0 # tried logstash-0.1.0.3, but its *library* requires the disabled package: tls - loopbreaker < 0 # tried loopbreaker-0.1.1.1, but its *library* does not support: ghc-9.2.1 + - lsp < 0 # tried lsp-1.4.0.0, but its *library* requires the disabled package: lsp-types + - lsp-test < 0 # tried lsp-test-0.14.0.2, but its *library* requires the disabled package: lsp-types + - lsp-types < 0 # tried lsp-types-1.4.0.1, but its *library* requires the disabled package: rope-utf16-splay - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: aeson-2.0.3.0 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: network-3.1.2.5 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-0.18.3 - - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-client-0.18.3 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: network-3.1.2.7 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-0.19 + - lxd-client < 0 # tried lxd-client-0.1.0.6, but its *library* does not support: servant-client-0.19 - lzma-conduit < 0 # tried lzma-conduit-1.2.2, but its *library* does not support: bytestring-0.11.1.0 - machines-directory < 0 # tried machines-directory-7.0.0.0, but its *library* requires the disabled package: machines-io - magicbane < 0 # tried magicbane-0.5.1, but its *library* requires the disabled package: ekg-core @@ -6766,43 +6728,46 @@ packages: - makefile < 0 # tried makefile-1.1.0.0, but its *library* does not support: attoparsec-0.14.4 - mallard < 0 # tried mallard-0.6.1.1, but its *library* does not support: megaparsec-9.2.0 - mallard < 0 # tried mallard-0.6.1.1, but its *library* requires the disabled package: Interpolation - - mandrill < 0 # tried mandrill-0.5.5.0, but its *library* does not support: aeson-2.0.3.0 + - mandrill < 0 # tried mandrill-0.5.6.0, but its *library* requires the disabled package: email-validate - map-syntax < 0 # tried map-syntax-0.3, but its *library* does not support: base-4.16.0.0 - markup < 0 # tried markup-4.2.0, but its *library* requires the disabled package: attoparsec-uri + - marvin < 0 # tried marvin-0.2.5, but its *executable* requires the disabled package: mustache - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: aeson-2.0.3.0 - - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: http-client-0.7.9 + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: http-client-0.7.11 - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: lens-5.1 + - marvin < 0 # tried marvin-0.2.5, but its *library* does not support: text-icu-0.8.0.1 - marvin < 0 # tried marvin-0.2.5, but its *library* requires the disabled package: marvin-interpolate - mbox < 0 # tried mbox-0.3.4, but its *library* does not support: time-1.11.1.1 - mbox-utility < 0 # tried mbox-utility-0.0.3.1, but its *executable* does not support: bytestring-0.11.1.0 - mbox-utility < 0 # tried mbox-utility-0.0.3.1, but its *executable* does not support: time-1.11.1.1 + - mbtiles < 0 # tried mbtiles-0.6.0.0, but its *library* requires the disabled package: sqlite-simple - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: bytestring-0.11.1.0 - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: extra-1.7.10 - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: formatting-7.1.3 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: http-client-0.7.9 - - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: optparse-applicative-0.16.1.0 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: http-client-0.7.11 + - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: optparse-applicative-0.17.0.0 - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: scalpel-core-0.6.2 - mbug < 0 # tried mbug-1.3.2, but its *library* does not support: time-1.11.1.1 - - med-module < 0 # tried med-module-0.1.2.1, but its *library* does not support: bytestring-0.11.1.0 + - mcmc < 0 # tried mcmc-0.6.2.0, but its *library* requires the disabled package: monad-parallel - medea < 0 # tried medea-1.2.0, but its *library* does not support: aeson-2.0.3.0 + - medea < 0 # tried medea-1.2.0, but its *library* does not support: algebraic-graphs-0.6 - medea < 0 # tried medea-1.2.0, but its *library* does not support: bytestring-0.11.1.0 - medea < 0 # tried medea-1.2.0, but its *library* does not support: hashable-1.4.0.2 - - mega-sdist < 0 # tried mega-sdist-0.4.1.0, but its *executable* requires the disabled package: pantry - - memory < 0 # tried memory-0.16.0, but its *library* does not support: base-4.16.0.0 - - memory < 0 # tried memory-0.16.0, but its *library* does not support: ghc-prim-0.8.0 - - menshen < 0 # tried menshen-0.0.3, but its *library* does not support: regex-tdfa-1.3.1.1 - - merkle-tree < 0 # tried merkle-tree-0.1.1, but its *library* requires the disabled package: memory + - mega-sdist < 0 # tried mega-sdist-0.4.2.1, but its *executable* requires the disabled package: pantry + - menshen < 0 # tried menshen-0.0.3, but its *library* does not support: regex-tdfa-1.3.1.2 + - mercury-api < 0 # tried mercury-api-0.1.0.2, but its *executable* does not support: optparse-applicative-0.17.0.0 - merkle-tree < 0 # tried merkle-tree-0.1.1, but its *library* requires the disabled package: protolude - messagepack < 0 # tried messagepack-0.5.4, but its *library* does not support: bytestring-0.11.1.0 - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* does not support: bytestring-0.11.1.0 - messagepack-rpc < 0 # tried messagepack-rpc-0.5.1, but its *library* does not support: containers-0.6.5.1 + - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *executable* requires the disabled package: aws-lambda-haskell-runtime-wai - microformats2-parser < 0 # tried microformats2-parser-1.0.2.0, but its *library* requires the disabled package: xml-lens - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: bytestring-0.11.1.0 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-client-0.7.9 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-client-0.7.11 - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: http-media-0.8.0.0 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-0.18.3 - - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-client-0.18.3 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-0.19 + - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: servant-client-0.19 - microsoft-translator < 0 # tried microsoft-translator-0.1.2, but its *library* does not support: time-1.11.1.1 - midi < 0 # tried midi-0.2.2.2, but its *library* does not support: bytestring-0.11.1.0 - midi-alsa < 0 # tried midi-alsa-0.2.1, but its *library* requires the disabled package: alsa-seq @@ -6811,45 +6776,40 @@ packages: - midi-music-box < 0 # tried midi-music-box-0.0.1.2, but its *executable* requires the disabled package: midi - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: bytestring-0.11.1.0 - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: lens-5.1 - - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: network-3.1.2.5 + - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: network-3.1.2.7 - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: random-1.2.1 - - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: semigroups-0.19.2 - - mime-mail-ses < 0 # tried mime-mail-ses-0.4.3, but its *library* requires the disabled package: cryptohash - - mime-mail-ses < 0 # tried mime-mail-ses-0.4.3, but its *library* requires the disabled package: http-client-tls + - milena < 0 # tried milena-0.5.4.0, but its *library* does not support: semigroups-0.20 - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src - mini-egison < 0 # tried mini-egison-1.0.0, but its *library* requires the disabled package: egison-pattern-src-th-mode - - minio-hs < 0 # tried minio-hs-1.5.3, but its *library* requires the disabled package: memory - minio-hs < 0 # tried minio-hs-1.5.3, but its *library* requires the disabled package: protolude + - misfortune < 0 # tried misfortune-0.1.1.2, but its *library* does not support: random-fu-0.3.0.0 - misfortune < 0 # tried misfortune-0.1.1.2, but its *library* requires the disabled package: knob - - misfortune < 0 # tried misfortune-0.1.1.2, but its *library* requires the disabled package: random-fu - miso < 0 # tried miso-1.8.1.0, but its *library* requires the disabled package: jsaddle - miso < 0 # tried miso-1.8.1.0, but its *library* requires the disabled package: servant - - mixpanel-client < 0 # tried mixpanel-client-0.3.0, but its *library* requires the disabled package: servant - - mixpanel-client < 0 # tried mixpanel-client-0.3.0, but its *library* requires the disabled package: servant-client - mmark < 0 # tried mmark-0.0.7.4, but its *library* requires the disabled package: email-validate - mmark-cli < 0 # tried mmark-cli-0.0.5.1, but its *executable* requires the disabled package: mmark - mmark-ext < 0 # tried mmark-ext-0.2.1.4, but its *library* requires the disabled package: mmark - - mnist-idx < 0 # tried mnist-idx-0.1.2.8, but its *library* does not support: bytestring-0.11.1.0 - modify-fasta < 0 # tried modify-fasta-0.8.3.0, but its *executable* requires the disabled package: pipes-text - mole < 0 # tried mole-0.0.7, but its *executable* does not support: base-4.16.0.0 - mole < 0 # tried mole-0.0.7, but its *executable* requires the disabled package: snap-server - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: base-4.16.0.0 - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: mwc-random-0.15.0.2 - monad-bayes < 0 # tried monad-bayes-0.1.1.0, but its *library* does not support: statistics-0.16.0.1 - - monad-logger-logstash < 0 # tried monad-logger-logstash-0.2.0.2, but its *library* requires the disabled package: logstash + - monad-control-aligned < 0 # tried monad-control-aligned-0.0.1.1, but its *library* does not support: transformers-compat-0.7.1 + - monad-coroutine < 0 # tried monad-coroutine-0.9.1.3, but its *library* does not support: transformers-compat-0.7.1 - monad-metrics < 0 # tried monad-metrics-0.2.2.0, but its *library* does not support: hashable-1.4.0.2 - monad-mock < 0 # tried monad-mock-0.2.0.0, but its *library* does not support: template-haskell-2.18.0.0 + - monad-parallel < 0 # tried monad-parallel-0.7.2.5, but its *library* does not support: transformers-compat-0.7.1 - monad-unlift-ref < 0 # tried monad-unlift-ref-0.2.1, but its *library* requires the disabled package: monad-unlift - - mongoDB < 0 # tried mongoDB-2.7.1.1, but its *library* requires the disabled package: cryptohash - - mongoDB < 0 # tried mongoDB-2.7.1.1, but its *library* requires the disabled package: tls - monoidal-containers < 0 # tried monoidal-containers-0.6.2.0, but its *library* does not support: base-4.16.0.0 - - monomer < 0 # tried monomer-1.2.0.0, but its *library* does not support: lens-5.1 + - monomer < 0 # tried monomer-1.3.0.0, but its *library* requires the disabled package: OpenGL - morpheus-graphql < 0 # tried morpheus-graphql-0.18.0, but its *library* does not support: aeson-2.0.3.0 - morpheus-graphql < 0 # tried morpheus-graphql-0.18.0, but its *library* does not support: bytestring-0.11.1.0 - morpheus-graphql-app < 0 # tried morpheus-graphql-app-0.18.0, but its *library* does not support: aeson-2.0.3.0 - morpheus-graphql-app < 0 # tried morpheus-graphql-app-0.18.0, but its *library* does not support: bytestring-0.11.1.0 - morpheus-graphql-client < 0 # tried morpheus-graphql-client-0.18.0, but its *library* does not support: aeson-2.0.3.0 - morpheus-graphql-client < 0 # tried morpheus-graphql-client-0.18.0, but its *library* does not support: bytestring-0.11.1.0 + - morpheus-graphql-code-gen < 0 # tried morpheus-graphql-code-gen-0.18.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - morpheus-graphql-code-gen < 0 # tried morpheus-graphql-code-gen-0.18.0, but its *library* does not support: bytestring-0.11.1.0 - morpheus-graphql-core < 0 # tried morpheus-graphql-core-0.18.0, but its *library* does not support: aeson-2.0.3.0 - morpheus-graphql-core < 0 # tried morpheus-graphql-core-0.18.0, but its *library* does not support: bytestring-0.11.1.0 @@ -6871,13 +6831,11 @@ packages: - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: bytestring-0.11.1.0 - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-1.3.4.2 - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: conduit-extra-1.3.5 - - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: network-3.1.2.5 + - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: network-3.1.2.7 - msgpack-rpc < 0 # tried msgpack-rpc-1.0.0, but its *library* does not support: random-1.2.1 - multipart < 0 # tried multipart-0.2.1, but its *library* does not support: bytestring-0.11.1.0 - - multistate < 0 # tried multistate-0.8.0.3, but its *library* does not support: base-4.16.0.0 - - mustache < 0 # tried mustache-2.3.2, but its *library* does not support: aeson-2.0.3.0 - mwc-random-accelerate < 0 # tried mwc-random-accelerate-0.2.0.0, but its *library* requires the disabled package: accelerate - - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* does not support: memory-0.16.0 + - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* does not support: memory-0.17.0 - mysql-haskell < 0 # tried mysql-haskell-0.8.4.3, but its *library* requires the disabled package: word24 - mysql-haskell-nem < 0 # tried mysql-haskell-nem-0.1.0.0, but its *library* requires the disabled package: mysql-haskell - mysql-haskell-openssl < 0 # tried mysql-haskell-openssl-0.8.3.1, but its *library* requires the disabled package: mysql-haskell @@ -6892,20 +6850,11 @@ packages: - naqsha < 0 # tried naqsha-0.3.0.1, but its *library* does not support: bytestring-0.11.1.0 - net-mqtt < 0 # tried net-mqtt-0.8.2.0, but its *library* does not support: attoparsec-0.14.4 - net-mqtt-lens < 0 # tried net-mqtt-lens-0.1.1.0, but its *library* requires the disabled package: net-mqtt - - netrc < 0 # tried netrc-0.2.0.0, but its *library* does not support: base-4.16.0.0 - - netrc < 0 # tried netrc-0.2.0.0, but its *library* does not support: bytestring-0.11.1.0 - nettle < 0 # tried nettle-0.3.0, but its *library* does not support: bytestring-0.11.1.0 - netwire-input-glfw < 0 # tried netwire-input-glfw-0.0.11, but its *executable* requires the disabled package: OpenGL - 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-conduit-tls < 0 # tried network-conduit-tls-1.3.2, but its *library* requires the disabled package: tls - - 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* does not support: network-3.1.2.5 - - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* requires the disabled package: data-default-instances-base - - network-simple-tls < 0 # tried network-simple-tls-0.4, but its *library* requires the disabled package: tls - - network-simple-tls < 0 # tried network-simple-tls-0.4, but its *library* requires the disabled package: tls-session-manager - - network-simple-tls < 0 # tried network-simple-tls-0.4, but its *library* requires the disabled package: x509 - - network-simple-tls < 0 # tried network-simple-tls-0.4, but its *library* requires the disabled package: x509-validation + - network-msgpack-rpc < 0 # tried network-msgpack-rpc-0.0.6, but its *library* does not support: network-3.1.2.7 - network-transport < 0 # tried network-transport-0.5.4, but its *library* does not support: bytestring-0.11.1.0 - network-transport-composed < 0 # tried network-transport-composed-0.2.1, but its *library* requires the disabled package: network-transport - network-transport-inmemory < 0 # tried network-transport-inmemory-0.5.2, but its *library* does not support: bytestring-0.11.1.0 @@ -6913,100 +6862,79 @@ packages: - network-transport-tcp < 0 # tried network-transport-tcp-0.8.0, but its *library* does not support: bytestring-0.11.1.0 - network-transport-tests < 0 # tried network-transport-tests-0.3.0, but its *library* does not support: bytestring-0.11.1.0 - not-gloss < 0 # tried not-gloss-0.7.7.0, but its *library* requires the disabled package: OpenGL - - nri-env-parser < 0 # tried nri-env-parser-0.1.0.7, but its *library* does not support: base-4.16.0.0 - - nri-http < 0 # tried nri-http-0.1.0.3, but its *library* does not support: base-4.16.0.0 - - nri-kafka < 0 # tried nri-kafka-0.1.0.2, but its *library* does not support: base-4.16.0.0 - - nri-observability < 0 # tried nri-observability-0.1.1.3, but its *library* does not support: base-4.16.0.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.3, but its *library* does not support: base-4.16.0.0 - - nri-postgresql < 0 # tried nri-postgresql-0.1.0.3, but its *library* does not support: template-haskell-2.18.0.0 - - nri-prelude < 0 # tried nri-prelude-0.6.0.5, but its *library* does not support: base-4.16.0.0 - - nri-prelude < 0 # tried nri-prelude-0.6.0.5, but its *library* does not support: ghc-9.2.1 - - nri-redis < 0 # tried nri-redis-0.1.0.3, but its *library* does not support: base-4.16.0.0 - - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.1, but its *library* does not support: base-4.16.0.0 - - numhask-prelude < 0 # tried numhask-prelude-0.5.0, but its *library* does not support: numhask-0.8.1.0 - - nuxeo < 0 # tried nuxeo-0.3.2, but its *library* requires the disabled package: http-conduit - - nvim-hs < 0 # tried nvim-hs-2.1.0.7, but its *library* requires the disabled package: messagepack + - 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.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 the disabled package: nri-prelude + - 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 the disabled package: nri-prelude + - nri-redis < 0 # tried nri-redis-0.1.0.4, but its *library* requires the disabled package: nri-prelude + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* does not support: servant-0.19 + - nri-test-encoding < 0 # tried nri-test-encoding-0.1.1.3, but its *library* does not support: servant-server-0.19 + - 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* does not support: numhask-0.10.0.0 + - nvim-hs < 0 # tried nvim-hs-2.2.0.1, but its *library* requires the disabled package: messagepack - nvim-hs-ghcid < 0 # tried nvim-hs-ghcid-2.0.0.0, but its *library* requires the disabled package: nvim-hs-contrib - - o-clock < 0 # tried o-clock-1.2.1, but its *library* does not support: ghc-prim-0.8.0 - - oauthenticated < 0 # tried oauthenticated-0.2.1.0, but its *library* requires the disabled package: memory - - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: memory - oblivious-transfer < 0 # tried oblivious-transfer-0.1.0, but its *library* requires the disabled package: protolude - - oeis2 < 0 # tried oeis2-1.0.6, but its *library* requires the disabled package: http-conduit + - oeis < 0 # tried oeis-0.3.10, but its *library* does not support: HTTP-4000.4.0 - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: Cabal-3.6.0.0 - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: base-4.16.0.0 - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: bytestring-0.11.1.0 - om-elm < 0 # tried om-elm-2.0.0.0, but its *library* does not support: template-haskell-2.18.0.0 - - openapi3 < 0 # tried openapi3-3.2.0, but its *library* does not support: base-4.16.0.0 - - openapi3 < 0 # tried openapi3-3.2.0, but its *library* does not support: bytestring-0.11.1.0 - - openapi3 < 0 # tried openapi3-3.2.0, but its *library* does not support: template-haskell-2.18.0.0 - - openapi3 < 0 # tried openapi3-3.2.0, but its *library* does not support: time-1.11.1.1 - - opensource < 0 # tried opensource-0.1.1.0, but its *library* requires the disabled package: http-client-tls - - openssl-streams < 0 # tried openssl-streams-1.2.3.0, but its *library* does not support: bytestring-0.11.1.0 - - opentelemetry-extra < 0 # tried opentelemetry-extra-0.7.0, but its *library* requires the disabled package: http-client-tls - - opentelemetry-lightstep < 0 # tried opentelemetry-lightstep-0.7.0, but its *library* requires the disabled package: http-client-tls - oset < 0 # tried oset-0.4.0.1, but its *library* does not support: base-4.16.0.0 + - packdeps < 0 # tried packdeps-0.6.0.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - packdeps < 0 # tried packdeps-0.6.0.0, but its *library* does not support: Cabal-3.6.0.0 - - pagure < 0 # tried pagure-0.1.0, but its *library* requires the disabled package: http-query - - pagure-cli < 0 # tried pagure-cli-0.2, but its *executable* requires the disabled package: http-conduit - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: bytestring-0.11.1.0 - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: groups-0.5.3 - pairing < 0 # tried pairing-1.1.0, but its *library* does not support: protolude-0.3.0 - pairing < 0 # tried pairing-1.1.0, but its *library* requires the disabled package: elliptic-curve - - pandoc < 0 # tried pandoc-2.16.2, but its *library* requires the disabled package: http-client-tls + - pandoc < 0 # tried pandoc-2.17.1.1, but its *library* does not support: hslua-2.2.0 + - pandoc < 0 # tried pandoc-2.17.1.1, but its *library* does not support: hslua-aeson-2.2.0 + - pandoc < 0 # tried pandoc-2.17.1.1, but its *library* does not support: hslua-marshalling-2.2.0 - pandoc-csv2table < 0 # tried pandoc-csv2table-1.0.9, but its *library* requires the disabled package: pandoc - - pandoc-dhall-decoder < 0 # tried pandoc-dhall-decoder-0.1.0.1, but its *library* requires the disabled package: dhall - pandoc-dhall-decoder < 0 # tried pandoc-dhall-decoder-0.1.0.1, but its *library* requires the disabled package: pandoc - - pandoc-plot < 0 # tried pandoc-plot-1.4.0, but its *library* requires the disabled package: pandoc + - pandoc-plot < 0 # tried pandoc-plot-1.4.1, but its *library* requires the disabled package: pandoc - pandoc-throw < 0 # tried pandoc-throw-0.1.0.0, but its *library* requires the disabled package: pandoc - pango < 0 # tried pango-0.13.8.1, but its *library* does not support: Cabal-3.6.0.0 - - pantry < 0 # tried pantry-0.5.3, but its *library* does not support: Cabal-3.6.0.0 + - pantry < 0 # tried pantry-0.5.4, but its *library* does not support: Cabal-3.6.0.0 - papillon < 0 # tried papillon-0.1.1.1, but its *library* does not support: bytestring-0.11.1.0 - papillon < 0 # tried papillon-0.1.1.1, but its *library* does not support: template-haskell-2.18.0.0 - paripari < 0 # tried paripari-0.7.0.0, but its *library* does not support: bytestring-0.11.1.0 - paripari < 0 # tried paripari-0.7.0.0, but its *library* does not support: parser-combinators-1.3.0 - - password < 0 # tried password-3.0.0.0, but its *library* does not support: bytestring-0.11.1.0 + - password < 0 # tried password-3.0.1.0, but its *library* does not support: bytestring-0.11.1.0 + - password < 0 # tried password-3.0.1.0, but its *library* does not support: memory-0.17.0 + - password-instances < 0 # tried password-instances-3.0.0.0, but its *library* requires the disabled package: password-types - password-instances < 0 # tried password-instances-3.0.0.0, but its *library* requires the disabled package: persistent - - password-types < 0 # tried password-types-1.0.0.0, but its *library* requires the disabled package: memory - - path-dhall-instance < 0 # tried path-dhall-instance-0.2.1.0, but its *library* requires the disabled package: dhall + - password-types < 0 # tried password-types-1.0.0.0, but its *library* does not support: memory-0.17.0 - path-text-utf8 < 0 # tried path-text-utf8-0.0.1.8, but its *library* does not support: base-4.16.0.0 - path-text-utf8 < 0 # tried path-text-utf8-0.0.1.8, but its *library* does not support: path-0.9.2 - pcf-font-embed < 0 # tried pcf-font-embed-0.1.2.0, but its *library* requires the disabled package: pcf-font - - pdc < 0 # tried pdc-0.1.1, but its *library* requires the disabled package: http-query - - pdf-toolbox-content < 0 # tried pdf-toolbox-content-0.1.1, but its *library* requires the disabled package: pdf-toolbox-core - - pdf-toolbox-core < 0 # tried pdf-toolbox-core-0.1.1, but its *library* requires the disabled package: cryptohash - - pdf-toolbox-document < 0 # tried pdf-toolbox-document-0.1.2, 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: memory - pedersen-commitment < 0 # tried pedersen-commitment-0.2.0, but its *library* requires the disabled package: protolude - - pem < 0 # tried pem-0.2.4, but its *library* requires the disabled package: memory - peregrin < 0 # tried peregrin-0.3.1, but its *library* does not support: bytestring-0.11.1.0 - perf < 0 # tried perf-0.9.0, but its *library* does not support: time-1.11.1.1 - perfect-vector-shuffle < 0 # tried perfect-vector-shuffle-0.1.1.1, but its *library* does not support: base-4.16.0.0 - persistable-record < 0 # tried persistable-record-0.6.0.5, but its *library* requires the disabled package: th-data-compat - - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: HDBC - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: persistable-record - persistable-types-HDBC-pg < 0 # tried persistable-types-HDBC-pg-0.0.3.5, but its *library* requires the disabled package: relational-query-HDBC - - persistent < 0 # tried persistent-2.13.2.1, but its *library* does not support: aeson-2.0.3.0 - - persistent < 0 # tried persistent-2.13.2.1, but its *library* does not support: template-haskell-2.18.0.0 + - persistent < 0 # tried persistent-2.13.3.0, but its *library* does not support: template-haskell-2.18.0.0 - persistent-discover < 0 # tried persistent-discover-0.1.0.5, but its *library* requires the disabled package: persistent - persistent-documentation < 0 # tried persistent-documentation-0.1.0.4, but its *library* requires the disabled package: persistent - persistent-iproute < 0 # tried persistent-iproute-0.2.5, but its *library* requires the disabled package: aeson-iproute - persistent-iproute < 0 # tried persistent-iproute-0.2.5, but its *library* requires the disabled package: persistent - persistent-mongoDB < 0 # tried persistent-mongoDB-2.13.0.0, but its *library* requires the disabled package: persistent - persistent-mtl < 0 # tried persistent-mtl-0.4.0.0, but its *library* does not support: base-4.16.0.0 - - persistent-mysql < 0 # tried persistent-mysql-2.13.0.2, but its *library* requires the disabled package: persistent - - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* does not support: tls-1.5.6 + - persistent-mysql < 0 # tried persistent-mysql-2.13.1.1, but its *library* requires the disabled package: persistent + - persistent-mysql-haskell < 0 # tried persistent-mysql-haskell-0.6.0, but its *library* does not support: tls-1.5.7 - persistent-pagination < 0 # tried persistent-pagination-0.1.1.2, but its *library* requires the disabled package: esqueleto - persistent-pagination < 0 # tried persistent-pagination-0.1.1.2, but its *library* requires the disabled package: persistent - - persistent-postgresql < 0 # tried persistent-postgresql-2.13.2.1, but its *library* requires the disabled package: persistent - - persistent-qq < 0 # tried persistent-qq-2.12.0.1, but its *library* requires the disabled package: persistent + - persistent-postgresql < 0 # tried persistent-postgresql-2.13.4.0, but its *library* requires the disabled package: persistent + - persistent-qq < 0 # tried persistent-qq-2.12.0.2, but its *library* requires the disabled package: persistent - persistent-redis < 0 # tried persistent-redis-2.13.0.0, but its *library* does not support: bytestring-0.11.1.0 - - persistent-sqlite < 0 # tried persistent-sqlite-2.13.0.3, but its *library* requires the disabled package: persistent - - persistent-test < 0 # tried persistent-test-2.13.0.3, but its *library* requires the disabled package: persistent - - persistent-typed-db < 0 # tried persistent-typed-db-0.1.0.5, but its *library* requires the disabled package: persistent + - persistent-sqlite < 0 # tried persistent-sqlite-2.13.1.0, but its *library* requires the disabled package: persistent + - persistent-test < 0 # tried persistent-test-2.13.1.0, but its *library* requires the disabled package: persistent - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: random-1.2.1 - pg-harness-server < 0 # tried pg-harness-server-0.6.2, but its *executable* does not support: scotty-0.12 - picedit < 0 # tried picedit-0.2.3.0, but its *executable* requires the disabled package: cli - - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: JuicyPixels-3.3.6 + - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: JuicyPixels-3.3.7 - picedit < 0 # tried picedit-0.2.3.0, but its *library* does not support: hmatrix-0.20.2 - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: Cabal-3.6.0.0 - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: aeson-2.0.3.0 @@ -7015,28 +6943,25 @@ packages: - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: containers-0.6.5.1 - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: hashable-1.4.0.2 - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: shake-0.19.6 - - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: yaml-0.11.7.0 + - pier < 0 # tried pier-0.3.0.0, but its *executable* does not support: yaml-0.11.8.0 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: Cabal-3.6.0.0 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base-4.16.0.0 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: base64-bytestring-1.2.1.0 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: bytestring-0.11.1.0 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: containers-0.6.5.1 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: hashable-1.4.0.2 - - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: http-client-0.7.9 + - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: http-client-0.7.11 - pier-core < 0 # tried pier-core-0.3.0.0, but its *library* does not support: shake-0.19.6 - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: aeson-2.0.3.0 - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: bytestring-0.11.1.0 - - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: http-client-0.7.9 + - pinboard < 0 # tried pinboard-0.10.2.0, but its *library* does not support: http-client-0.7.11 - pinch < 0 # tried pinch-0.4.1.2, but its *library* does not support: hashable-1.4.0.2 - pipes-category < 0 # tried pipes-category-0.3.0.0, but its *library* does not support: lens-5.1 - pipes-http < 0 # tried pipes-http-1.0.6, but its *library* does not support: bytestring-0.11.1.0 - pipes-misc < 0 # tried pipes-misc-0.5.0.0, but its *library* requires the disabled package: pipes-category - - pipes-mongodb < 0 # tried pipes-mongodb-0.1.0.0, but its *library* requires the disabled package: mongoDB - pipes-network-tls < 0 # tried pipes-network-tls-0.4, but its *library* requires the disabled package: pipes-network - pixelated-avatar-generator < 0 # tried pixelated-avatar-generator-0.1.3, but its *executable* requires the disabled package: cli - - pkgtreediff < 0 # tried pkgtreediff-0.5.0, but its *executable* requires the disabled package: http-client-tls - pkgtreediff < 0 # tried pkgtreediff-0.5.0, but its *executable* requires the disabled package: koji - - plaid < 0 # tried plaid-0.1.0.4, but its *library* requires the disabled package: http-client-tls - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: cairo - plot < 0 # tried plot-0.2.3.11, but its *library* requires the disabled package: pango - pointful < 0 # tried pointful-1.1.0.0, but its *library* does not support: base-4.16.0.0 @@ -7058,24 +6983,23 @@ packages: - polysemy-uncontrolled < 0 # tried polysemy-uncontrolled-0.1.1.0, but its *library* does not support: polysemy-1.7.1.0 - polysemy-video < 0 # tried polysemy-video-0.2.0.1, but its *library* does not support: polysemy-1.7.1.0 - polysemy-vinyl < 0 # tried polysemy-vinyl-0.1.5.0, but its *library* does not support: polysemy-1.7.1.0 - - polysemy-webserver < 0 # tried polysemy-webserver-0.2.1.1, but its *library* requires the disabled package: wai-websockets - - polysemy-webserver < 0 # tried polysemy-webserver-0.2.1.1, but its *library* requires the disabled package: warp - - polysemy-zoo < 0 # tried polysemy-zoo-0.7.0.2, but its *library* does not support: constraints-0.13.2 - - polysemy-zoo < 0 # tried polysemy-zoo-0.7.0.2, but its *library* does not support: ghc-prim-0.8.0 + - polysemy-vinyl < 0 # tried polysemy-vinyl-0.1.5.0, but its *library* does not support: vinyl-0.14.2 + - polysemy-zoo < 0 # tried polysemy-zoo-0.8.0.0, but its *library* does not support: constraints-0.13.3 + - polysemy-zoo < 0 # tried polysemy-zoo-0.8.0.0, but its *library* does not support: ghc-prim-0.8.0 - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: base-4.16.0.0 - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: containers-0.6.5.1 - pomaps < 0 # tried pomaps-0.2.0.1, but its *library* does not support: ghc-prim-0.8.0 - postgresql-migration < 0 # tried postgresql-migration-0.2.1.3, but its *library* does not support: time-1.11.1.1 - - postgresql-typed < 0 # tried postgresql-typed-0.6.2.0, but its *library* requires the disabled package: HDBC - - postgresql-typed < 0 # tried postgresql-typed-0.6.2.0, but its *library* requires the disabled package: memory + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: HTTP-4000.4.0 - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: aeson-2.0.3.0 - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: base-4.16.0.0 - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: bytestring-0.11.1.0 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: hasql-1.5.0.1 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: hasql-1.5.0.2 - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: jose-0.9 - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: lens-5.1 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: retry-0.9.0.0 - - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: swagger2-2.7 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: optparse-applicative-0.17.0.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: retry-0.9.2.0 + - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: swagger2-2.8.2 - postgrest < 0 # tried postgrest-8.0.0, but its *library* does not support: time-1.11.1.1 - postgrest < 0 # tried postgrest-8.0.0, but its *library* requires the disabled package: hasql-dynamic-statements - prairie < 0 # tried prairie-0.0.1.0, but its *library* does not support: template-haskell-2.18.0.0 @@ -7088,15 +7012,13 @@ packages: - profiterole < 0 # tried profiterole-0.1, but its *executable* requires the disabled package: ghc-prof - profiteur < 0 # tried profiteur-0.4.6.0, but its *executable* does not support: aeson-2.0.3.0 - profiteur < 0 # tried profiteur-0.4.6.0, but its *executable* does not support: bytestring-0.11.1.0 - - prometheus < 0 # tried prometheus-2.2.3, but its *library* requires the disabled package: http-client-tls - - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *executable* requires the disabled package: warp - - prometheus-wai-middleware < 0 # tried prometheus-wai-middleware-1.0.1.0, but its *library* requires the disabled package: prometheus - proto-lens < 0 # tried proto-lens-0.7.1.0, but its *library* does not support: base-4.16.0.0 - proto-lens < 0 # tried proto-lens-0.7.1.0, but its *library* does not support: bytestring-0.11.1.0 - proto-lens < 0 # tried proto-lens-0.7.1.0, but its *library* does not support: ghc-prim-0.8.0 - proto-lens-arbitrary < 0 # tried proto-lens-arbitrary-0.1.2.10, but its *library* does not support: base-4.16.0.0 - proto-lens-arbitrary < 0 # tried proto-lens-arbitrary-0.1.2.10, but its *library* does not support: bytestring-0.11.1.0 - proto-lens-optparse < 0 # tried proto-lens-optparse-0.1.1.8, but its *library* does not support: base-4.16.0.0 + - proto-lens-optparse < 0 # tried proto-lens-optparse-0.1.1.8, but its *library* does not support: optparse-applicative-0.17.0.0 - proto-lens-protobuf-types < 0 # tried proto-lens-protobuf-types-0.7.1.0, but its *library* does not support: base-4.16.0.0 - proto-lens-protoc < 0 # tried proto-lens-protoc-0.7.1.0, but its *executable* does not support: bytestring-0.11.1.0 - proto-lens-protoc < 0 # tried proto-lens-protoc-0.7.1.0, but its *executable* does not support: ghc-9.2.1 @@ -7106,17 +7028,16 @@ packages: - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.5, but its *library* does not support: Cabal-3.6.0.0 - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.5, but its *library* does not support: base-4.16.0.0 - proto-lens-setup < 0 # tried proto-lens-setup-0.4.0.5, but its *library* does not support: bytestring-0.11.1.0 - - protocol-radius < 0 # tried protocol-radius-0.0.1.1, but its *library* requires the disabled package: memory - - protocol-radius-test < 0 # tried protocol-radius-test-0.1.0.1, but its *library* requires the disabled package: protocol-radius - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: base-4.16.0.0 - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: bytestring-0.11.1.0 - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: ghc-prim-0.8.0 - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: hashable-1.4.0.2 + - protolude < 0 # tried protolude-0.3.0, but its *library* does not support: transformers-compat-0.7.1 - publicsuffix < 0 # tried publicsuffix-0.20200526, but its *library* does not support: base-4.16.0.0 - pure-io < 0 # tried pure-io-0.2.1, but its *library* does not support: base-4.16.0.0 - - pusher-http-haskell < 0 # tried pusher-http-haskell-2.1.0.8, but its *library* requires the disabled package: memory + - pusher-http-haskell < 0 # tried pusher-http-haskell-2.1.0.8, but its *library* does not support: memory-0.17.0 - qm-interpolated-string < 0 # tried qm-interpolated-string-0.3.0.0, but its *library* does not support: bytestring-0.11.1.0 - - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *executable* does not support: optparse-applicative-0.17.0.0 - qnap-decrypt < 0 # tried qnap-decrypt-0.3.5, but its *library* does not support: bytestring-0.11.1.0 - qrcode-core < 0 # tried qrcode-core-0.9.4, but its *library* does not support: bytestring-0.11.1.0 - qrcode-juicypixels < 0 # tried qrcode-juicypixels-0.8.2, but its *library* does not support: bytestring-0.11.1.0 @@ -7126,36 +7047,36 @@ packages: - quickcheck-arbitrary-template < 0 # tried quickcheck-arbitrary-template-0.2.1.1, but its *library* does not support: template-haskell-2.18.0.0 - quickcheck-combinators < 0 # tried quickcheck-combinators-0.0.5, but its *library* requires the disabled package: unfoldable-restricted - quickcheck-state-machine < 0 # tried quickcheck-state-machine-0.7.1, but its *library* requires the disabled package: markov-chain-usage-model - - radius < 0 # tried radius-0.7.1.0, but its *library* requires the disabled package: memory - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: aeson-2.0.3.0 - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: bytestring-0.11.1.0 - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: connection-0.3.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: constraints-0.13.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: constraints-0.13.3 - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-api-data-0.4.3 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-client-0.7.9 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: http-client-0.7.11 - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: lens-5.1 - - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: req-3.9.2 + - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* does not support: req-3.10.0 - rakuten < 0 # tried rakuten-0.1.1.5, but its *library* requires the disabled package: extensible + - random-source < 0 # tried random-source-0.3.0.11, but its *library* does not support: base-4.16.0.0 - ranged-list < 0 # tried ranged-list-0.1.0.0, but its *library* requires the disabled package: typecheck-plugin-nat-simple - - rank-product < 0 # tried rank-product-0.2.2.0, but its *library* requires the disabled package: random-fu - rate-limit < 0 # tried rate-limit-1.4.2, but its *library* does not support: time-1.11.1.1 - - ratel < 0 # tried ratel-2.0.0.0, but its *library* requires the disabled package: http-client-tls - - ratel-wai < 0 # tried ratel-wai-2.0.0.0, but its *library* requires the disabled package: ratel - rattletrap < 0 # tried rattletrap-11.2.4, but its *library* does not support: base-4.16.0.0 - rattletrap < 0 # tried rattletrap-11.2.4, but its *library* does not support: bytestring-0.11.1.0 - rdf < 0 # tried rdf-0.1.0.5, but its *library* does not support: attoparsec-0.14.4 - readable < 0 # tried readable-0.3.1, but its *library* does not support: bytestring-0.11.1.0 - - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry - - reanimate < 0 # tried reanimate-1.1.4.0, but its *library* requires the disabled package: hgeometry-combinatorial - - rebase < 0 # tried rebase-1.14, but its *library* requires the disabled package: hashable-time + - reanimate < 0 # tried reanimate-1.1.5.0, but its *library* does not support: aeson-2.0.3.0 + - reanimate < 0 # tried reanimate-1.1.5.0, but its *library* requires the disabled package: hgeometry - records-sop < 0 # tried records-sop-0.1.1.0, but its *library* does not support: ghc-prim-0.8.0 - - reddit-scrape < 0 # tried reddit-scrape-0.0.1, but its *library* requires the disabled package: http-client-tls + - reform < 0 # tried reform-0.2.7.4, but its *library* does not support: semigroups-0.20 + - reform-blaze < 0 # tried reform-blaze-0.2.4.3, but its *library* requires the disabled package: reform + - reform-hamlet < 0 # tried reform-hamlet-0.0.5.3, but its *library* requires the disabled package: reform + - reform-happstack < 0 # tried reform-happstack-0.2.5.4, but its *library* requires the disabled package: reform - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: hsx2hs + - reform-hsp < 0 # tried reform-hsp-0.2.7.2, but its *library* requires the disabled package: reform - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: bytestring-0.11.1.0 - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-base-0.94.0.2 - regex-pcre-text < 0 # tried regex-pcre-text-0.94.0.1, but its *library* does not support: regex-pcre-builtin-0.95.2.3.8.44 - regex-tdfa-text < 0 # tried regex-tdfa-text-1.0.0.3, but its *library* does not support: regex-base-0.94.0.2 - - registry < 0 # tried registry-0.2.1.0, but its *library* requires the disabled package: protolude + - registry < 0 # tried registry-0.2.1.0, but its *library* does not support: semigroups-0.20 - relapse < 0 # tried relapse-1.0.0.0, but its *library* does not support: attoparsec-0.14.4 - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: persistable-record - relational-query < 0 # tried relational-query-0.12.3.0, but its *library* requires the disabled package: product-isomorphic @@ -7169,33 +7090,32 @@ packages: - relude < 0 # tried relude-1.0.0.1, but its *library* does not support: hashable-1.4.0.2 - repa-algorithms < 0 # tried repa-algorithms-3.4.1.4, but its *library* does not support: base-4.16.0.0 - repa-io < 0 # tried repa-io-3.4.1.1, but its *library* does not support: bytestring-0.11.1.0 - - req < 0 # tried req-3.9.2, but its *library* does not support: template-haskell-2.18.0.0 + - req < 0 # tried req-3.10.0, but its *library* does not support: template-haskell-2.18.0.0 - req-conduit < 0 # tried req-conduit-1.0.1, but its *library* requires the disabled package: req - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *executable* does not support: aeson-2.0.3.0 - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: base-4.16.0.0 - - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: req-3.9.2 + - req-url-extra < 0 # tried req-url-extra-0.1.1.0, but its *library* does not support: req-3.10.0 - require < 0 # tried require-0.4.11, but its *library* does not support: bytestring-0.11.1.0 - - rerebase < 0 # tried rerebase-1.14, but its *library* requires the disabled package: rebase - resistor-cube < 0 # tried resistor-cube-0.0.1.4, but its *executable* requires the disabled package: lapack - rethinkdb-client-driver < 0 # tried rethinkdb-client-driver-0.0.25, but its *library* does not support: base-4.16.0.0 - rhbzquery < 0 # tried rhbzquery-0.4.4, but its *executable* requires the disabled package: email-validate - - rhine-gloss < 0 # tried rhine-gloss-0.7.0, but its *library* requires the disabled package: rhine + - rhine-gloss < 0 # tried rhine-gloss-0.7.1, but its *library* does not support: base-4.16.0.0 + - rhine-gloss < 0 # tried rhine-gloss-0.7.1, but its *library* requires the disabled package: rhine - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: aeson-2.0.3.0 - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: attoparsec-0.14.4 - - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: network-3.1.2.5 + - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: network-3.1.2.7 - riak < 0 # tried riak-1.2.0.0, but its *library* does not support: time-1.11.1.1 - riak-protobuf < 0 # tried riak-protobuf-0.25.0.0, but its *library* requires the disabled package: proto-lens - riak-protobuf < 0 # tried riak-protobuf-0.25.0.0, but its *library* requires the disabled package: proto-lens-runtime - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: aeson-2.0.3.0 - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: bytestring-0.11.1.0 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: http-client-0.7.9 - - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: network-3.1.2.5 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: http-client-0.7.11 + - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: network-3.1.2.7 - rollbar-hs < 0 # tried rollbar-hs-0.3.1.0, but its *library* does not support: time-1.11.1.1 + - rope-utf16-splay < 0 # tried rope-utf16-splay-0.4.0.0, but its *library* does not support: text-1.2.5.0 - rpmbuild-order < 0 # tried rpmbuild-order-0.4.5, but its *library* requires the disabled package: graphviz - rss-conduit < 0 # tried rss-conduit-0.6.0.1, but its *library* requires the disabled package: atom-conduit - - s3-signer < 0 # tried s3-signer-0.5.0.0, but its *library* requires the disabled package: cryptohash - - safe-json < 0 # tried safe-json-1.1.2.0, but its *library* does not support: bytestring-0.11.1.0 - - safe-json < 0 # tried safe-json-1.1.2.0, but its *library* does not support: time-1.11.1.1 + - safe-json < 0 # tried safe-json-1.1.3.0, but its *library* does not support: time-1.11.1.1 - safe-tensor < 0 # tried safe-tensor-0.2.1.1, but its *library* does not support: singletons-3.0.1 - salak < 0 # tried salak-0.3.6, but its *library* does not support: bytestring-0.11.1.0 - salak < 0 # tried salak-0.3.6, but its *library* does not support: time-1.11.1.1 @@ -7209,17 +7129,12 @@ packages: - sandwich-webdriver < 0 # tried sandwich-webdriver-0.1.0.6, but its *library* requires the disabled package: string-interpolate - sandwich-webdriver < 0 # tried sandwich-webdriver-0.1.0.6, but its *library* requires the disabled package: webdriver - sbv < 0 # tried sbv-8.17, but its *library* does not support: base-4.16.0.0 - - scalendar < 0 # tried scalendar-1.2.0, but its *library* does not support: containers-0.6.5.1 - - scalpel < 0 # tried scalpel-0.6.2, but its *library* requires the disabled package: http-client-tls + - scalendar < 0 # tried scalendar-1.1.1, but its *library* does not support: containers-0.6.5.1 - schematic < 0 # tried schematic-0.5.1.0, but its *library* does not support: aeson-2.0.3.0 - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: hjsonschema - schematic < 0 # tried schematic-0.5.1.0, but its *library* requires the disabled package: validationt - - scotty < 0 # tried scotty-0.12, but its *library* requires the disabled package: warp - - sdl2 < 0 # tried sdl2-2.5.3.0, but its *library* does not support: bytestring-0.11.1.0 - - sdl2-ttf < 0 # tried sdl2-ttf-2.1.2, but its *library* requires the disabled package: sdl2 - secp256k1-haskell < 0 # tried secp256k1-haskell-0.6.0, but its *library* does not support: bytestring-0.11.1.0 - secp256k1-haskell < 0 # tried secp256k1-haskell-0.6.0, but its *library* does not support: hashable-1.4.0.2 - - securemem < 0 # tried securemem-0.1.10, but its *library* requires the disabled package: memory - selda < 0 # tried selda-0.5.1.0, but its *library* does not support: bytestring-0.11.1.0 - selda < 0 # tried selda-0.5.1.0, but its *library* does not support: time-1.11.1.1 - selda-json < 0 # tried selda-json-0.1.1.0, but its *library* does not support: aeson-2.0.3.0 @@ -7233,22 +7148,17 @@ packages: - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: aeson-2.0.3.0 - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: base-4.16.0.0 - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: bytestring-0.11.1.0 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: http-client-0.7.9 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: http-client-0.7.11 - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: lens-5.1 - - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: optparse-applicative-0.16.1.0 + - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: optparse-applicative-0.17.0.0 - sensu-run < 0 # tried sensu-run-0.7.0.5, but its *executable* does not support: time-1.11.1.1 - seqloc < 0 # tried seqloc-0.6.1.1, but its *library* requires the disabled package: biocore - - sequence-formats < 0 # tried sequence-formats-1.6.1, but its *library* does not support: base-4.16.0.0 - - sequenceTools < 0 # tried sequenceTools-1.5.0, but its *library* requires the disabled package: sequence-formats - - servant < 0 # tried servant-0.18.3, but its *library* does not support: aeson-2.0.3.0 - - servant < 0 # tried servant-0.18.3, but its *library* does not support: base-4.16.0.0 - - servant < 0 # tried servant-0.18.3, but its *library* does not support: base-compat-0.12.1 + - servant < 0 # tried servant-0.19, but its *library* does not support: base-4.16.0.0 + - servant < 0 # tried servant-0.19, but its *library* does not support: base-compat-0.12.1 + - servant < 0 # tried servant-0.19, but its *library* does not support: mmorph-1.2.0 - servant-JuicyPixels < 0 # tried servant-JuicyPixels-0.3.1.0, but its *executable* requires the disabled package: servant-server - servant-JuicyPixels < 0 # tried servant-JuicyPixels-0.3.1.0, but its *library* requires the disabled package: servant - - servant-auth < 0 # tried servant-auth-0.4.0.0, but its *library* does not support: aeson-2.0.3.0 - - servant-auth < 0 # tried servant-auth-0.4.0.0, but its *library* does not support: base-4.16.0.0 - - servant-auth < 0 # tried servant-auth-0.4.0.0, but its *library* does not support: jose-0.9 - - servant-auth < 0 # tried servant-auth-0.4.0.0, but its *library* does not support: lens-5.1 + - servant-auth < 0 # tried servant-auth-0.4.1.0, but its *library* does not support: base-4.16.0.0 - servant-auth-client < 0 # tried servant-auth-client-0.4.1.0, but its *library* does not support: base-4.16.0.0 - servant-auth-client < 0 # tried servant-auth-client-0.4.1.0, but its *library* does not support: bytestring-0.11.1.0 - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: blaze-builder-0.4.2.2 @@ -7256,49 +7166,37 @@ packages: - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: exceptions-0.10.4 - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-api-data-0.4.3 - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: http-types-0.12.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: memory-0.16.0 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-0.18.3 - - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-server-0.18.3 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: memory-0.17.0 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-0.19 + - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: servant-server-0.19 - servant-auth-cookie < 0 # tried servant-auth-cookie-0.6.0.3, but its *library* does not support: time-1.11.1.1 - servant-auth-docs < 0 # tried servant-auth-docs-0.2.10.0, but its *library* does not support: base-4.16.0.0 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: aeson-2.0.3.0 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: base-4.16.0.0 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: base64-bytestring-1.2.1.0 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: bytestring-0.11.1.0 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: jose-0.9 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: lens-5.1 - - servant-auth-server < 0 # tried servant-auth-server-0.4.6.0, but its *library* does not support: time-1.11.1.1 + - servant-auth-server < 0 # tried servant-auth-server-0.4.7.0, but its *library* does not support: base-4.16.0.0 + - servant-auth-server < 0 # tried servant-auth-server-0.4.7.0, but its *library* does not support: bytestring-0.11.1.0 + - servant-auth-server < 0 # tried servant-auth-server-0.4.7.0, but its *library* does not support: memory-0.17.0 + - servant-auth-server < 0 # tried servant-auth-server-0.4.7.0, but its *library* does not support: time-1.11.1.1 - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.10.1, but its *library* does not support: base-4.16.0.0 - - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.10.1, but its *library* does not support: lens-5.1 - - servant-auth-swagger < 0 # tried servant-auth-swagger-0.2.10.1, but its *library* does not support: swagger2-2.7 - servant-auth-wordpress < 0 # tried servant-auth-wordpress-1.0.0.2, but its *library* requires the disabled package: servant-server - servant-blaze < 0 # tried servant-blaze-0.9.1, but its *library* requires the disabled package: servant - servant-cassava < 0 # tried servant-cassava-0.10.1, but its *library* does not support: base-compat-0.12.1 + - servant-cassava < 0 # tried servant-cassava-0.10.1, but its *library* does not support: servant-0.19 - servant-checked-exceptions < 0 # tried servant-checked-exceptions-2.2.0.1, but its *library* requires the disabled package: servant - servant-checked-exceptions < 0 # tried servant-checked-exceptions-2.2.0.1, but its *library* requires the disabled package: servant-client - servant-checked-exceptions < 0 # tried servant-checked-exceptions-2.2.0.1, but its *library* requires the disabled package: servant-client-core - servant-checked-exceptions < 0 # tried servant-checked-exceptions-2.2.0.1, but its *library* requires the disabled package: servant-server - servant-checked-exceptions-core < 0 # tried servant-checked-exceptions-core-2.2.0.1, but its *library* requires the disabled package: servant - servant-checked-exceptions-core < 0 # tried servant-checked-exceptions-core-2.2.0.1, but its *library* requires the disabled package: servant-docs - - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *executable* requires the disabled package: servant-client - - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *executable* requires the disabled package: servant-server - - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *library* requires the disabled package: servant - - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *library* requires the disabled package: servant-client-core - - servant-cli < 0 # tried servant-cli-0.1.0.2, but its *library* requires the disabled package: servant-docs - - servant-client < 0 # tried servant-client-0.18.3, but its *library* does not support: base-4.16.0.0 - - servant-client < 0 # tried servant-client-0.18.3, but its *library* does not support: base-compat-0.12.1 - - servant-client < 0 # tried servant-client-0.18.3, but its *library* does not support: time-1.11.1.1 - - servant-client-core < 0 # tried servant-client-core-0.18.3, but its *library* does not support: aeson-2.0.3.0 - - servant-client-core < 0 # tried servant-client-core-0.18.3, but its *library* does not support: base-4.16.0.0 - - servant-client-core < 0 # tried servant-client-core-0.18.3, but its *library* does not support: base-compat-0.12.1 - - servant-client-core < 0 # tried servant-client-core-0.18.3, but its *library* does not support: template-haskell-2.18.0.0 + - servant-client < 0 # tried servant-client-0.19, but its *library* does not support: base-4.16.0.0 + - servant-client < 0 # tried servant-client-0.19, but its *library* does not support: base-compat-0.12.1 + - servant-client < 0 # tried servant-client-0.19, but its *library* does not support: time-1.11.1.1 + - servant-client-core < 0 # tried servant-client-core-0.19, but its *library* does not support: base-4.16.0.0 + - servant-client-core < 0 # tried servant-client-core-0.19, but its *library* does not support: base-compat-0.12.1 + - servant-client-core < 0 # tried servant-client-core-0.19, but its *library* does not support: template-haskell-2.18.0.0 - servant-conduit < 0 # tried servant-conduit-0.15.1, but its *library* requires the disabled package: servant - - servant-docs < 0 # tried servant-docs-0.11.9, but its *library* does not support: aeson-2.0.3.0 - - servant-docs < 0 # tried servant-docs-0.11.9, but its *library* does not support: base-4.16.0.0 - - servant-docs < 0 # tried servant-docs-0.11.9, but its *library* does not support: base-compat-0.12.1 - - servant-docs < 0 # tried servant-docs-0.11.9, but its *library* does not support: hashable-1.4.0.2 - - servant-docs < 0 # tried servant-docs-0.11.9, but its *library* does not support: lens-5.1 + - servant-docs < 0 # tried servant-docs-0.12, but its *library* does not support: base-4.16.0.0 + - servant-docs < 0 # tried servant-docs-0.12, but its *library* does not support: base-compat-0.12.1 - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* does not support: aeson-2.0.3.0 + - servant-docs-simple < 0 # tried servant-docs-simple-0.4.0.0, but its *library* does not support: servant-0.19 - servant-elm < 0 # tried servant-elm-0.7.2, but its *library* requires the disabled package: servant - servant-elm < 0 # tried servant-elm-0.7.2, but its *library* requires the disabled package: servant-foreign - servant-errors < 0 # tried servant-errors-0.1.6.0, but its *library* does not support: base-4.16.0.0 @@ -7307,30 +7205,26 @@ packages: - servant-exceptions-server < 0 # tried servant-exceptions-server-0.2.1, but its *library* requires the disabled package: servant-server - servant-foreign < 0 # tried servant-foreign-0.15.4, but its *library* does not support: base-4.16.0.0 - servant-foreign < 0 # tried servant-foreign-0.15.4, but its *library* does not support: base-compat-0.12.1 - - servant-foreign < 0 # tried servant-foreign-0.15.4, but its *library* does not support: lens-5.1 - - servant-github-webhook < 0 # tried servant-github-webhook-0.4.2.0, but its *library* requires the disabled package: memory - - servant-github-webhook < 0 # tried servant-github-webhook-0.4.2.0, but its *library* requires the disabled package: servant - - servant-github-webhook < 0 # tried servant-github-webhook-0.4.2.0, but its *library* requires the disabled package: servant-server - - servant-http-streams < 0 # tried servant-http-streams-0.18.3, but its *library* does not support: base-4.16.0.0 - - servant-http-streams < 0 # tried servant-http-streams-0.18.3, but its *library* does not support: base-compat-0.12.1 - - servant-http-streams < 0 # tried servant-http-streams-0.18.3, but its *library* does not support: time-1.11.1.1 + - servant-http-streams < 0 # tried servant-http-streams-0.18.4, but its *library* does not support: base-4.16.0.0 + - servant-http-streams < 0 # tried servant-http-streams-0.18.4, but its *library* does not support: base-compat-0.12.1 + - servant-http-streams < 0 # tried servant-http-streams-0.18.4, but its *library* does not support: http-common-0.8.3.4 + - servant-http-streams < 0 # tried servant-http-streams-0.18.4, but its *library* does not support: time-1.11.1.1 + - servant-http-streams < 0 # tried servant-http-streams-0.18.4, but its *library* does not support: transformers-compat-0.7.1 - servant-js < 0 # tried servant-js-0.9.4.2, but its *executable* does not support: aeson-2.0.3.0 - - servant-js < 0 # tried servant-js-0.9.4.2, but its *library* does not support: base-4.16.0.0 - - servant-js < 0 # tried servant-js-0.9.4.2, but its *library* does not support: base-compat-0.12.1 - - servant-js < 0 # tried servant-js-0.9.4.2, but its *library* does not support: lens-5.1 - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: containers-0.6.5.1 - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: formatting-7.1.3 - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: lens-5.1 - - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: servant-0.18.3 + - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: servant-0.19 - servant-kotlin < 0 # tried servant-kotlin-0.1.1.9, but its *library* does not support: time-1.11.1.1 - - servant-lucid < 0 # tried servant-lucid-0.9.0.4, but its *library* requires the disabled package: servant + - servant-lucid < 0 # tried servant-lucid-0.9.0.5, but its *library* requires the disabled package: servant - servant-machines < 0 # tried servant-machines-0.15.1, but its *library* requires the disabled package: servant - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: QuickCheck-2.14.2 - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: base-4.16.0.0 - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: base-compat-0.12.1 - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: bytestring-0.11.1.0 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: servant-0.19 + - servant-mock < 0 # tried servant-mock-0.8.7, but its *library* does not support: servant-server-0.19 - servant-multipart < 0 # tried servant-multipart-0.12.1, but its *library* does not support: bytestring-0.11.1.0 - - servant-multipart < 0 # tried servant-multipart-0.12.1, but its *library* does not support: lens-5.1 - servant-multipart-api < 0 # tried servant-multipart-api-0.12.1, but its *library* does not support: bytestring-0.11.1.0 - servant-multipart-client < 0 # tried servant-multipart-client-0.12.1, but its *library* does not support: bytestring-0.11.1.0 - servant-openapi3 < 0 # tried servant-openapi3-2.0.1.3, but its *library* does not support: Cabal-3.6.0.0 @@ -7341,93 +7235,81 @@ packages: - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: http-media-0.8.0.0 - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: lens-5.1 - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: pandoc-types-1.22.1 + - servant-pandoc < 0 # tried servant-pandoc-0.5.0.0, but its *library* does not support: servant-docs-0.12 - servant-pipes < 0 # tried servant-pipes-0.15.3, but its *library* requires the disabled package: servant - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: aeson-2.0.3.0 - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: base-4.16.0.0 - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: base-compat-batteries-0.12.1 - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: bytestring-0.11.1.0 - - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: hspec-2.8.5 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: hspec-2.9.4 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: servant-0.19 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: servant-client-0.19 + - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: servant-server-0.19 - servant-quickcheck < 0 # tried servant-quickcheck-0.0.10.0, but its *library* does not support: time-1.11.1.1 - servant-rawm < 0 # tried servant-rawm-1.0.0.0, but its *library* requires the disabled package: servant - servant-ruby < 0 # tried servant-ruby-0.9.0.0, but its *library* requires the disabled package: servant-foreign - - servant-server < 0 # tried servant-server-0.18.3, but its *executable* does not support: aeson-2.0.3.0 - - servant-server < 0 # tried servant-server-0.18.3, but its *library* does not support: base-4.16.0.0 - - servant-server < 0 # tried servant-server-0.18.3, but its *library* does not support: base-compat-0.12.1 + - servant-server < 0 # tried servant-server-0.19, but its *library* does not support: base-4.16.0.0 + - servant-server < 0 # tried servant-server-0.19, but its *library* does not support: base-compat-0.12.1 - servant-static-th < 0 # tried servant-static-th-1.0.0.0, but its *library* requires the disabled package: servant - servant-static-th < 0 # tried servant-static-th-1.0.0.0, but its *library* requires the disabled package: servant-server - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: base-4.16.0.0 - - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: servant-0.18.3 + - servant-streaming < 0 # tried servant-streaming-0.3.0.0, but its *library* does not support: servant-0.19 - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: base-4.16.0.0 - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-0.18.3 - - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-client-core-0.18.3 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-0.19 + - servant-streaming-client < 0 # tried servant-streaming-client-0.3.0.0, but its *library* does not support: servant-client-core-0.19 - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: base-4.16.0.0 - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: http-media-0.8.0.0 - - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: servant-server-0.18.3 + - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* does not support: servant-server-0.19 - servant-streaming-server < 0 # tried servant-streaming-server-0.3.0.0, but its *library* requires the disabled package: streaming-wai - servant-subscriber < 0 # tried servant-subscriber-0.7.0.0, but its *library* requires the disabled package: servant - servant-subscriber < 0 # tried servant-subscriber-0.7.0.0, but its *library* requires the disabled package: servant-foreign - servant-subscriber < 0 # tried servant-subscriber-0.7.0.0, but its *library* requires the disabled package: servant-server - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: Cabal-3.6.0.0 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: aeson-2.0.3.0 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: base-4.16.0.0 - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: base-compat-0.12.1 - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: bytestring-0.11.1.0 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: lens-5.1 - - servant-swagger < 0 # tried servant-swagger-1.1.10, but its *library* does not support: swagger2-2.7 - - servant-swagger-ui < 0 # tried servant-swagger-ui-0.3.5.3.52.5, but its *library* does not support: aeson-2.0.3.0 - - servant-swagger-ui < 0 # tried servant-swagger-ui-0.3.5.3.52.5, but its *library* does not support: base-4.16.0.0 - - servant-swagger-ui < 0 # tried servant-swagger-ui-0.3.5.3.52.5, but its *library* does not support: bytestring-0.11.1.0 - - servant-swagger-ui-core < 0 # tried servant-swagger-ui-core-0.3.5, but its *library* does not support: aeson-2.0.3.0 + - servant-swagger-ui < 0 # tried servant-swagger-ui-0.3.5.4.5.0, but its *library* does not support: base-4.16.0.0 - servant-swagger-ui-core < 0 # tried servant-swagger-ui-core-0.3.5, but its *library* does not support: base-4.16.0.0 - - servant-swagger-ui-core < 0 # tried servant-swagger-ui-core-0.3.5, but its *library* does not support: bytestring-0.11.1.0 - - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* does not support: aeson-2.0.3.0 + - servant-swagger-ui-core < 0 # tried servant-swagger-ui-core-0.3.5, but its *library* does not support: transformers-compat-0.7.1 - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* does not support: base-4.16.0.0 - - servant-swagger-ui-redoc < 0 # tried servant-swagger-ui-redoc-0.3.4.1.22.3, but its *library* does not support: bytestring-0.11.1.0 - - servant-tracing < 0 # tried servant-tracing-0.2.0.0, but its *library* requires the disabled package: servant - servant-websockets < 0 # tried servant-websockets-2.0.0, but its *library* requires the disabled package: servant-server - servant-xml < 0 # tried servant-xml-1.0.1.4, but its *library* requires the disabled package: servant - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: base-4.16.0.0 - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: bytestring-0.11.1.0 - - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: servant-0.18.3 + - servant-yaml < 0 # tried servant-yaml-0.1.0.1, but its *library* does not support: servant-0.19 - serverless-haskell < 0 # tried serverless-haskell-0.12.6, but its *library* requires the disabled package: amazonka-core - serversession < 0 # tried serversession-1.0.2, but its *library* requires the disabled package: persistent-test - serversession-backend-persistent < 0 # tried serversession-backend-persistent-1.0.5, but its *library* does not support: base64-bytestring-1.2.1.0 - - serversession-backend-redis < 0 # tried serversession-backend-redis-1.0.4, but its *library* does not support: hedis-0.15.0 + - serversession-backend-redis < 0 # tried serversession-backend-redis-1.0.4, but its *library* does not support: hedis-0.15.1 - serversession-frontend-wai < 0 # tried serversession-frontend-wai-1.0, but its *library* requires the disabled package: serversession - serversession-frontend-yesod < 0 # tried serversession-frontend-yesod-1.0, but its *library* does not support: yesod-core-1.6.21.0 - - servius < 0 # tried servius-1.2.3.0, but its *executable* requires the disabled package: wai-app-static - - ses-html < 0 # tried ses-html-0.4.0.0, but its *library* requires the disabled package: cryptohash - - ses-html < 0 # tried ses-html-0.4.0.0, but its *library* requires the disabled package: http-streams - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* does not support: bytestring-0.11.1.0 - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* does not support: exceptions-0.10.4 - sessiontypes-distributed < 0 # tried sessiontypes-distributed-0.1.1, but its *library* requires the disabled package: sessiontypes - - sexp-grammar < 0 # tried sexp-grammar-2.3.3.1, but its *library* requires the disabled package: invertible-grammar - - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *executable* does not support: bytestring-0.11.1.0 - - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: base-4.16.0.0 - - sexpr-parser < 0 # tried sexpr-parser-0.2.0.0, but its *library* does not support: megaparsec-9.2.0 - shake-plus-extended < 0 # tried shake-plus-extended-0.4.1.0, but its *library* requires the disabled package: ixset-typed - shellmet < 0 # tried shellmet-0.0.4.0, but its *library* does not support: base-4.16.0.0 - show-prettyprint < 0 # tried show-prettyprint-0.3.0.1, but its *library* does not support: trifecta-2.1.2 - shower < 0 # tried shower-0.2.0.2, but its *library* does not support: base-4.16.0.0 - - simple < 0 # tried simple-1.0.0, but its *library* requires the disabled package: wai-extra + - simple < 0 # tried simple-1.0.0, but its *library* requires the disabled package: simple-templates + - simple-log < 0 # tried simple-log-0.9.12, but its *library* does not support: mmorph-1.2.0 - simple-log < 0 # tried simple-log-0.9.12, but its *library* does not support: time-1.11.1.1 - - simple-session < 0 # tried simple-session-1.0.0, but its *library* requires the disabled package: cryptohash + - simple-session < 0 # tried simple-session-1.0.0, but its *library* requires the disabled package: simple - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* does not support: bytestring-0.11.1.0 - simplest-sqlite < 0 # tried simplest-sqlite-0.1.0.2, but its *library* does not support: template-haskell-2.18.0.0 - siphash < 0 # tried siphash-1.0.3, but its *library* does not support: bytestring-0.11.1.0 - size-based < 0 # tried size-based-0.1.2.0, but its *library* does not support: template-haskell-2.18.0.0 - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: aeson-2.0.3.0 - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: base-4.16.0.0 - - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: constraints-0.13.2 + - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: constraints-0.13.3 - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: lens-5.1 - sized-grid < 0 # tried sized-grid-0.2.0.1, but its *library* does not support: random-1.2.1 - skeletons < 0 # tried skeletons-0.4.0, but its *executable* requires the disabled package: tinytemplate - - slack-progressbar < 0 # tried slack-progressbar-0.1.0.1, but its *library* requires the disabled package: wreq - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: aeson-2.0.3.0 - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: base-4.16.0.0 - - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: http-client-0.7.9 - - slick < 0 # tried slick-1.1.2.2, but its *library* requires the disabled package: mustache + - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: http-client-0.7.11 + - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: servant-0.19 + - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: servant-client-0.19 + - slack-web < 0 # tried slack-web-0.4.0.0, but its *library* does not support: servant-client-core-0.19 - slist < 0 # tried slist-0.2.0.0, but its *library* does not support: base-4.16.0.0 - smallcheck-series < 0 # tried smallcheck-series-0.7.1.0, but its *library* does not support: base-4.16.0.0 - smash < 0 # tried smash-0.1.2, but its *library* does not support: base-4.16.0.0 @@ -7436,7 +7318,6 @@ packages: - smash-lens < 0 # tried smash-lens-0.1.0.1, but its *library* does not support: lens-5.1 - smash-microlens < 0 # tried smash-microlens-0.1.0.0, but its *library* requires the disabled package: smash - smoothie < 0 # tried smoothie-0.4.2.11, but its *library* does not support: aeson-2.0.3.0 - - smtp-mail < 0 # tried smtp-mail-0.3.0.0, but its *library* requires the disabled package: memory - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: aeson-2.0.3.0 - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: attoparsec-0.14.4 - snap < 0 # tried snap-1.1.3.1, but its *library* does not support: base-4.16.0.0 @@ -7449,17 +7330,16 @@ packages: - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: pwstore-fast - snap < 0 # tried snap-1.1.3.1, but its *library* requires the disabled package: snap-server - snap-blaze < 0 # tried snap-blaze-0.2.1.5, but its *library* requires the disabled package: snap-core - - snap-core < 0 # tried snap-core-1.0.4.2, but its *library* does not support: attoparsec-0.14.4 - - snap-core < 0 # tried snap-core-1.0.4.2, but its *library* does not support: hashable-1.4.0.2 - - snap-core < 0 # tried snap-core-1.0.4.2, but its *library* does not support: time-1.11.1.1 + - snap-core < 0 # tried snap-core-1.0.5.0, but its *library* does not support: hashable-1.4.0.2 - soap < 0 # tried soap-0.2.3.6, but its *library* does not support: bytestring-0.11.1.0 - soap-openssl < 0 # tried soap-openssl-0.1.0.2, but its *library* requires the disabled package: soap - soap-tls < 0 # tried soap-tls-0.1.1.4, but its *library* requires the disabled package: soap - socket < 0 # tried socket-0.8.3.0, but its *library* does not support: bytestring-0.11.1.0 - - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* does not support: network-3.1.2.5 - - solana-staking-csvs < 0 # tried solana-staking-csvs-0.1.1.0, but its *library* requires the disabled package: req + - socket-activation < 0 # tried socket-activation-0.1.0.2, but its *library* does not support: network-3.1.2.7 + - solana-staking-csvs < 0 # tried solana-staking-csvs-0.1.2.0, but its *library* requires the disabled package: req - sound-collage < 0 # tried sound-collage-0.2.1, but its *executable* requires the disabled package: soxlib - soxlib < 0 # tried soxlib-0.0.3.1, but its *library* does not support: bytestring-0.11.1.0 + - spacecookie < 0 # tried spacecookie-1.0.0.1, but its *library* requires the disabled package: filepath-bytestring - spacecookie < 0 # tried spacecookie-1.0.0.1, but its *library* requires the disabled package: socket - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: inline-java-0.10.0 - sparkle < 0 # tried sparkle-0.7.4, but its *library* does not support: jvm-0.6.0 @@ -7471,19 +7351,19 @@ packages: - splint < 0 # tried splint-1.0.1.4, but its *library* does not support: base-4.16.0.0 - splint < 0 # tried splint-1.0.1.4, but its *library* does not support: ghc-9.2.1 - split-record < 0 # tried split-record-0.1.1.4, but its *executable* requires the disabled package: soxlib + - sqlite-simple < 0 # tried sqlite-simple-0.4.18.0, but its *library* does not support: semigroups-0.20 - sqlite-simple-errors < 0 # tried sqlite-simple-errors-0.6.1.0, but its *library* does not support: text-1.2.5.0 - - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* requires the disabled package: dhall - - stack-all < 0 # tried stack-all-0.3.1, but its *executable* requires the disabled package: http-query + - srt-dhall < 0 # tried srt-dhall-0.1.0.0, but its *library* does not support: dhall-1.41.1 + - stack < 0 # tried stack-2.7.5, but its *library* requires the disabled package: mustache - stackcollapse-ghc < 0 # tried stackcollapse-ghc-0.0.1.4, but its *executable* does not support: base-4.16.0.0 - stm-supply < 0 # tried stm-supply-0.2.0.0, but its *library* requires the disabled package: concurrent-supply - - store < 0 # tried store-0.7.14, but its *library* requires the disabled package: cryptohash - - store-streaming < 0 # tried store-streaming-0.2.0.3, but its *library* requires the disabled package: store - streaming-attoparsec < 0 # tried streaming-attoparsec-1.0.0.1, but its *library* requires the disabled package: streaming-bytestring - streaming-bytestring < 0 # tried streaming-bytestring-0.2.1, but its *library* does not support: ghc-prim-0.8.0 + - streaming-bytestring < 0 # tried streaming-bytestring-0.2.1, but its *library* does not support: mmorph-1.2.0 - streaming-cassava < 0 # tried streaming-cassava-0.2.0.0, but its *library* requires the disabled package: streaming-bytestring + - streamly-bytestring < 0 # tried streamly-bytestring-0.1.4, but its *library* does not support: bytestring-0.11.3.0 - streamproc < 0 # tried streamproc-1.6.2, but its *library* does not support: base-4.16.0.0 - strict-base-types < 0 # tried strict-base-types-0.7, but its *library* requires the disabled package: strict-lens - - strict-tuple < 0 # tried strict-tuple-0.1.4, but its *library* does not support: hashable-1.4.0.2 - strict-tuple-lens < 0 # tried strict-tuple-lens-0.2, but its *library* does not support: lens-5.1 - string-interpolate < 0 # tried string-interpolate-0.3.1.1, but its *library* does not support: bytestring-0.11.1.0 - string-interpolate < 0 # tried string-interpolate-0.3.1.1, but its *library* does not support: template-haskell-2.18.0.0 @@ -7497,18 +7377,21 @@ packages: - stripe-scotty < 0 # tried stripe-scotty-1.1.0.1, but its *library* does not support: base-4.16.0.0 - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: aeson-2.0.3.0 - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: bytestring-0.11.1.0 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-2.8.5 - - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-core-2.8.5 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-2.9.4 + - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: hspec-core-2.9.4 - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: random-1.2.1 - stripe-tests < 0 # tried stripe-tests-2.6.2, but its *library* does not support: time-1.11.1.1 - stripe-wreq < 0 # tried stripe-wreq-1.0.1.12, but its *library* does not support: base-4.16.0.0 - strive < 0 # tried strive-6.0.0.1, but its *library* does not support: time-1.11.1.1 - - strong-path < 0 # tried strong-path-1.1.2.0, but its *library* does not support: template-haskell-2.18.0.0 + - strong-path < 0 # tried strong-path-1.1.3.0, but its *library* does not support: hashable-1.4.0.2 + - strong-path < 0 # tried strong-path-1.1.3.0, but its *library* does not support: template-haskell-2.18.0.0 - structured-haskell-mode < 0 # tried structured-haskell-mode-1.1.0, but its *executable* does not support: 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.13.0.0, but its *executable* does not support: optparse-applicative-0.17.0.0 - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: Cabal-3.6.0.0 - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: aeson-2.0.3.0 - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: bytestring-0.11.1.0 - - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: ghc-lib-parser-9.2.1.20220109 + - stylish-haskell < 0 # tried stylish-haskell-0.13.0.0, but its *library* does not support: ghc-lib-parser-9.2.2.20220307 - superbuffer < 0 # tried superbuffer-0.3.1.1, but its *library* does not support: bytestring-0.11.1.0 - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: attoparsec-0.14.4 - sv < 0 # tried sv-1.4.0.1, but its *library* does not support: base-4.16.0.0 @@ -7520,57 +7403,45 @@ packages: - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: bytestring-0.11.1.0 - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: lens-5.1 - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: profunctors-5.6.2 + - sv-core < 0 # tried sv-core-0.5, but its *library* does not support: semigroups-0.20 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: aeson-2.0.3.0 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: bytestring-0.11.1.0 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: containers-0.6.5.1 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-api-data-0.4.3 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-client-0.7.9 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-client-0.7.11 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: http-media-0.8.0.0 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: katip-0.8.7.0 - - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: network-3.1.2.5 + - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: network-3.1.2.7 - swagger-petstore < 0 # tried swagger-petstore-0.0.2.0, but its *library* does not support: time-1.11.1.1 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: base-4.16.0.0 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: base-compat-batteries-0.12.1 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: bytestring-0.11.1.0 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: hashable-1.4.0.2 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: lens-5.1 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: template-haskell-2.18.0.0 - - swagger2 < 0 # tried swagger2-2.7, but its *library* does not support: time-1.11.1.1 - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src - sweet-egison < 0 # tried sweet-egison-0.1.1.3, but its *library* requires the disabled package: egison-pattern-src-th-mode + - sydtest < 0 # tried sydtest-0.8.0.0, but its *library* requires the disabled package: autodocodec - sydtest-persistent < 0 # tried sydtest-persistent-0.0.0.0, but its *library* requires the disabled package: persistent + - sydtest-persistent < 0 # tried sydtest-persistent-0.0.0.0, but its *library* requires the disabled package: sydtest - sydtest-servant < 0 # tried sydtest-servant-0.2.0.0, but its *library* requires the disabled package: servant - sydtest-servant < 0 # tried sydtest-servant-0.2.0.0, but its *library* requires the disabled package: servant-client - sydtest-servant < 0 # tried sydtest-servant-0.2.0.0, but its *library* requires the disabled package: servant-server - - sydtest-wai < 0 # tried sydtest-wai-0.2.0.0, but its *library* requires the disabled package: warp - - sydtest-yesod < 0 # tried sydtest-yesod-0.3.0.0, but its *library* requires the disabled package: http-client-tls - - sydtest-yesod < 0 # tried sydtest-yesod-0.3.0.0, but its *library* requires the disabled package: yesod-core - - sydtest-yesod < 0 # tried sydtest-yesod-0.3.0.0, but its *library* requires the disabled package: yesod-test + - sydtest-servant < 0 # tried sydtest-servant-0.2.0.0, but its *library* requires the disabled package: sydtest + - sydtest-wai < 0 # tried sydtest-wai-0.2.0.0, but its *library* requires the disabled package: sydtest + - sydtest-yesod < 0 # tried sydtest-yesod-0.3.0.0, but its *library* requires the disabled package: sydtest - synthesizer-alsa < 0 # tried synthesizer-alsa-0.5.0.6, but its *library* requires the disabled package: alsa-seq - synthesizer-alsa < 0 # tried synthesizer-alsa-0.5.0.6, but its *library* requires the disabled package: midi - synthesizer-alsa < 0 # tried synthesizer-alsa-0.5.0.6, but its *library* requires the disabled package: synthesizer-dimensional - synthesizer-dimensional < 0 # tried synthesizer-dimensional-0.8.1, but its *library* does not support: bytestring-0.11.1.0 - synthesizer-midi < 0 # tried synthesizer-midi-0.6.1.1, but its *library* requires the disabled package: midi - synthesizer-midi < 0 # tried synthesizer-midi-0.6.1.1, but its *library* requires the disabled package: synthesizer-dimensional - - taffybar < 0 # tried taffybar-3.3.0, but its *library* requires the disabled package: HStringTemplate - - taffybar < 0 # tried taffybar-3.3.0, but its *library* requires the disabled package: rate-limit - tagchup < 0 # tried tagchup-0.4.1.1, but its *library* does not support: bytestring-0.11.1.0 - - tasty-hedgehog < 0 # tried tasty-hedgehog-1.1.0.0, but its *library* requires the disabled package: hedgehog - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: containers-0.6.5.1 - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: tasty-1.4.2.1 - tasty-stats < 0 # tried tasty-stats-0.2.0.4, but its *library* does not support: time-1.11.1.1 - - tasty-wai < 0 # tried tasty-wai-0.1.1.1, but its *library* does not support: base-4.16.0.0 - - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires the disabled package: pem - - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires the disabled package: tls - - tcp-streams < 0 # tried tcp-streams-1.0.1.1, but its *library* requires the disabled package: x509 - - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* does not support: network-3.1.2.5 - - telegram-bot-simple < 0 # tried telegram-bot-simple-0.3.8, but its *library* requires the disabled package: servant - - telegram-bot-simple < 0 # tried telegram-bot-simple-0.3.8, but its *library* requires the disabled package: servant-client - - telegram-bot-simple < 0 # tried telegram-bot-simple-0.3.8, but its *library* requires the disabled package: servant-multipart - - telegram-bot-simple < 0 # tried telegram-bot-simple-0.3.8, but its *library* requires the disabled package: servant-multipart-api - - telegram-bot-simple < 0 # tried telegram-bot-simple-0.3.8, but its *library* requires the disabled package: servant-multipart-client + - tcp-streams-openssl < 0 # tried tcp-streams-openssl-1.0.1.0, but its *library* does not support: network-3.1.2.7 + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.4.3, but its *executable* requires the disabled package: servant-server + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.4.3, but its *library* requires the disabled package: servant + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.4.3, but its *library* requires the disabled package: servant-client + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.4.3, but its *library* requires the disabled package: servant-multipart + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.4.3, but its *library* requires the disabled package: servant-multipart-api + - telegram-bot-simple < 0 # tried telegram-bot-simple-0.4.3, but its *library* requires the disabled package: servant-multipart-client - termcolor < 0 # tried termcolor-0.2.0.0, but its *executable* requires the disabled package: cli - - termonad < 0 # tried termonad-4.2.0.0, but its *library* requires the disabled package: xml-html-qq - test-fixture < 0 # tried test-fixture-0.5.1.0, but its *library* does not support: template-haskell-2.18.0.0 - test-framework-th < 0 # tried test-framework-th-0.2.4, but its *library* requires the disabled package: language-haskell-extract - testing-feat < 0 # tried testing-feat-1.1.0.0, but its *library* requires the disabled package: size-based @@ -7578,23 +7449,12 @@ packages: - text-all < 0 # tried text-all-0.4.2, but its *library* does not support: text-format-0.3.2 - text-format < 0 # tried text-format-0.3.2, but its *library* does not support: base-4.16.0.0 - text-generic-pretty < 0 # tried text-generic-pretty-1.2.1, but its *library* does not support: wl-pprint-text-1.2.0.2 - - text-ldap < 0 # tried text-ldap-0.1.1.14, but its *library* requires the disabled package: memory - - textlocal < 0 # tried textlocal-0.1.0.5, but its *library* requires the disabled package: http-client-tls + - text-regex-replace < 0 # tried text-regex-replace-0.1.1.4, but its *library* does not support: text-icu-0.8.0.1 - th-to-exp < 0 # tried th-to-exp-0.0.1.1, but its *library* does not support: template-haskell-2.18.0.0 - these-optics < 0 # tried these-optics-1.0.1.2, but its *library* does not support: base-4.16.0.0 - threepenny-gui < 0 # tried threepenny-gui-0.9.1.0, but its *library* requires the disabled package: snap-server - threepenny-gui-flexbox < 0 # tried threepenny-gui-flexbox-0.4.2, but its *library* requires the disabled package: threepenny-gui - thumbnail-plus < 0 # tried thumbnail-plus-1.0.5, but its *library* does not support: either-5.0.1.1 - - tldr < 0 # tried tldr-0.9.2, but its *library* requires the disabled package: http-conduit - - tls < 0 # tried tls-1.5.6, but its *library* requires the disabled package: memory - - 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: pem - - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: tls - - tls-debug < 0 # tried tls-debug-0.4.8, but its *executable* requires the disabled package: tls-session-manager - - 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-validation - - tls-session-manager < 0 # tried tls-session-manager-0.0.4, but its *library* requires the disabled package: memory - - tlynx < 0 # tried tlynx-0.6.1.0, but its *library* requires the disabled package: gnuplot - tmp-proc < 0 # tried tmp-proc-0.5.0.1, but its *library* does not support: base-4.16.0.0 - token-bucket < 0 # tried token-bucket-0.1.0.1, but its *library* does not support: base-4.16.0.0 - tonalude < 0 # tried tonalude-0.1.1.1, but its *library* does not support: base-4.16.0.0 @@ -7603,34 +7463,28 @@ packages: - tonatona < 0 # tried tonatona-0.1.2.1, but its *library* does not support: base-4.16.0.0 - tonatona-logger < 0 # tried tonatona-logger-0.2.0.2, but its *library* does not support: base-4.16.0.0 - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: base-4.16.0.0 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 - - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-postgresql-2.13.2.1 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-2.13.3.0 + - tonatona-persistent-postgresql < 0 # tried tonatona-persistent-postgresql-0.1.0.2, but its *library* does not support: persistent-postgresql-2.13.4.0 - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: base-4.16.0.0 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-2.13.2.1 - - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-sqlite-2.13.0.3 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-2.13.3.0 + - tonatona-persistent-sqlite < 0 # tried tonatona-persistent-sqlite-0.1.0.2, but its *library* does not support: persistent-sqlite-2.13.1.0 - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: base-4.16.0.0 - - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-0.18.3 - - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-server-0.18.3 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-0.19 + - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: servant-server-0.19 - tonatona-servant < 0 # tried tonatona-servant-0.1.0.4, but its *library* does not support: wai-extra-3.1.8 - tracing < 0 # tried tracing-0.0.7.2, but its *library* does not support: time-1.11.1.1 - tracing-control < 0 # tried tracing-control-0.0.7.2, but its *library* does not support: time-1.11.1.1 + - transformers-bifunctors < 0 # tried transformers-bifunctors-0.1, but its *library* does not support: mmorph-1.2.0 - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: base-4.16.0.0 - transformers-lift < 0 # tried transformers-lift-0.2.0.2, but its *library* does not support: writer-cps-transformers-0.5.6.1 - - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* does not support: network-3.1.2.5 + - transient-universe < 0 # tried transient-universe-0.6.0.1, but its *library* does not support: network-3.1.2.7 - 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 the disabled package: memory - true-name < 0 # tried true-name-0.1.0.3, but its *library* does not support: template-haskell-2.18.0.0 - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* does not support: hashable-1.4.0.2 - ttl-hashtables < 0 # tried ttl-hashtables-1.4.1.0, but its *library* does not support: hashtables-1.3 - - twitter-conduit < 0 # tried twitter-conduit-0.6.1, but its *library* requires the disabled package: http-conduit - type-combinators-singletons < 0 # tried type-combinators-singletons-0.2.1.0, but its *library* requires the disabled package: type-combinators - type-errors-pretty < 0 # tried type-errors-pretty-0.0.1.2, but its *library* does not support: base-4.16.0.0 - - typerep-map < 0 # tried typerep-map-0.4.0.0, but its *library* does not support: base-4.16.0.0 - - typerep-map < 0 # tried typerep-map-0.4.0.0, but its *library* does not support: ghc-prim-0.8.0 - - tz < 0 # tried tz-0.1.3.5, but its *library* does not support: bytestring-0.11.1.0 - - tz < 0 # tried tz-0.1.3.5, but its *library* does not support: template-haskell-2.18.0.0 - - tz < 0 # tried tz-0.1.3.5, but its *library* does not support: time-1.11.1.1 - - tzdata < 0 # tried tzdata-0.2.20201021.0, but its *library* does not support: bytestring-0.11.1.0 + - typed-uuid < 0 # tried typed-uuid-0.2.0.0, but its *library* requires the disabled package: autodocodec - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: aeson-2.0.3.0 - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: attoparsec-0.14.4 - ucam-webauth < 0 # tried ucam-webauth-0.1.0.0, but its *library* does not support: base-4.16.0.0 @@ -7644,66 +7498,40 @@ packages: - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: bytestring-0.11.1.0 - ucam-webauth-types < 0 # tried ucam-webauth-types-0.1.0.0, but its *library* does not support: time-1.11.1.1 - unfoldable-restricted < 0 # tried unfoldable-restricted-0.0.3, but its *library* requires the disabled package: unfoldable + - union < 0 # tried union-0.1.2, but its *library* does not support: vinyl-0.14.2 - uniprot-kb < 0 # tried uniprot-kb-0.1.2.0, but its *library* does not support: attoparsec-0.14.4 - unjson < 0 # tried unjson-0.15.3, but its *library* does not support: aeson-2.0.3.0 - uri-templater < 0 # tried uri-templater-0.3.1.0, but its *library* does not support: trifecta-2.1.2 - urlpath < 0 # tried urlpath-9.0.1, but its *library* requires the disabled package: attoparsec-uri - userid < 0 # tried userid-0.1.3.6, but its *library* does not support: aeson-2.0.3.0 - userid < 0 # tried userid-0.1.3.6, but its *library* does not support: base-4.16.0.0 - - users < 0 # tried users-0.5.0.0, but its *library* requires the disabled package: bcrypt - - users-postgresql-simple < 0 # tried users-postgresql-simple-0.5.0.2, but its *library* requires the disabled package: users - - users-test < 0 # tried users-test-0.5.0.1, but its *library* requires the disabled package: users - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* does not support: bytestring-0.11.1.0 - utf8-conversions < 0 # tried utf8-conversions-0.1.0.4, but its *library* does not support: text-short-0.1.5 - utf8-light < 0 # tried utf8-light-0.4.2, but its *library* does not support: base-4.16.0.0 - vado < 0 # tried vado-0.0.13, but its *library* does not support: attoparsec-0.14.4 - vado < 0 # tried vado-0.0.13, but its *library* does not support: base-4.16.0.0 - - validation-selective < 0 # tried validation-selective-0.1.0.1, but its *library* does not support: base-4.16.0.0 - - validation-selective < 0 # tried validation-selective-0.1.0.1, but its *library* does not support: selective-0.5 - validity-persistent < 0 # tried validity-persistent-0.0.0.0, but its *library* requires the disabled package: persistent - - variable-media-field-dhall < 0 # tried variable-media-field-dhall-0.1.0.0, but its *library* requires the disabled package: dhall - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: base-4.16.0.0 - vcswrapper < 0 # tried vcswrapper-0.1.6, but its *library* does not support: containers-0.6.5.1 - - vector-circular < 0 # tried vector-circular-0.1.3, but its *library* does not support: template-haskell-2.18.0.0 - vector-fftw < 0 # tried vector-fftw-0.1.4.0, but its *library* does not support: base-4.16.0.0 - - verbosity < 0 # tried verbosity-0.4.0.0, but its *library* requires the disabled package: dhall - vformat-aeson < 0 # tried vformat-aeson-0.1.0.1, but its *library* does not support: aeson-2.0.3.0 - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: base-4.16.0.0 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: brick-0.65 + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: brick-0.68 - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: lens-5.1 - - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: vty-5.33 - - wai-app-static < 0 # tried wai-app-static-3.1.7.2, but its *library* requires the disabled package: memory - - wai-cli < 0 # tried wai-cli-0.2.3, but its *library* requires the disabled package: warp - - wai-cli < 0 # tried wai-cli-0.2.3, but its *library* requires the disabled package: warp-tls - - wai-enforce-https < 0 # tried wai-enforce-https-1.0.0.0, but its *executable* requires the disabled package: warp - - wai-enforce-https < 0 # tried wai-enforce-https-1.0.0.0, but its *executable* requires the disabled package: warp-tls - - wai-extra < 0 # tried wai-extra-3.1.8, but its *library* requires the disabled package: http2 - - wai-feature-flags < 0 # tried wai-feature-flags-0.1.0.3, but its *executable* requires the disabled package: warp - - wai-handler-launch < 0 # tried wai-handler-launch-3.0.3.1, but its *library* requires the disabled package: warp - - wai-middleware-auth < 0 # tried wai-middleware-auth-0.2.5.1, but its *library* requires the disabled package: hoauth2 - - wai-middleware-caching-redis < 0 # tried wai-middleware-caching-redis-0.2.0.0, but its *library* requires the disabled package: hedis - - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* does not support: optparse-applicative-0.16.1.0 - - wai-middleware-delegate < 0 # tried wai-middleware-delegate-0.1.2.4, but its *library* requires the disabled package: http-conduit + - viewprof < 0 # tried viewprof-0.0.0.33, but its *executable* does not support: vty-5.34 + - wai-middleware-crowd < 0 # tried wai-middleware-crowd-0.1.4.2, but its *executable* does not support: optparse-applicative-0.17.0.0 - wai-middleware-metrics < 0 # tried wai-middleware-metrics-0.2.4, but its *library* requires the disabled package: ekg-core - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: aeson-2.0.3.0 - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: bytestring-0.11.1.0 - - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: http-client-0.7.9 + - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: http-client-0.7.11 - wai-middleware-rollbar < 0 # tried wai-middleware-rollbar-0.11.0, but its *library* does not support: time-1.11.1.1 - - wai-middleware-static < 0 # tried wai-middleware-static-0.9.1, but its *library* requires the disabled package: memory - wai-middleware-throttle < 0 # tried wai-middleware-throttle-0.3.0.1, but its *library* requires the disabled package: token-bucket - - wai-rate-limit-redis < 0 # tried wai-rate-limit-redis-0.1.0.0, but its *library* does not support: bytestring-0.11.1.0 + - wai-rate-limit-redis < 0 # tried wai-rate-limit-redis-0.2.0.0, but its *library* does not support: bytestring-0.11.1.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-saml2 < 0 # tried wai-saml2-0.2.1.2, but its *library* does not support: bytestring-0.11.1.0 - wai-session-redis < 0 # tried wai-session-redis-0.1.0.4, but its *library* does not support: bytestring-0.11.1.0 - - wai-transformers < 0 # tried wai-transformers-0.1.0, but its *library* requires the disabled package: wai-websockets - - wai-websockets < 0 # tried wai-websockets-3.0.1.2, but its *executable* requires the disabled package: wai-app-static - - warp < 0 # tried warp-3.3.18, but its *library* requires the disabled package: x509 - - warp-tls < 0 # tried warp-tls-3.3.2, but its *library* requires the disabled package: cryptonite - - warp-tls < 0 # tried warp-tls-3.3.2, but its *library* requires the disabled package: tls - - warp-tls < 0 # tried warp-tls-3.3.2, but its *library* requires the disabled package: tls-session-manager - - warp-tls-uid < 0 # tried warp-tls-uid-0.2.0.6, but its *library* requires the disabled package: tls - - warp-tls-uid < 0 # tried warp-tls-uid-0.2.0.6, but its *library* requires the disabled package: x509 + - wai-transformers < 0 # tried wai-transformers-0.1.0, but its *library* requires the disabled package: monad-control-aligned - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: attoparsec-0.14.4 - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: base-4.16.0.0 - wavefront < 0 # tried wavefront-0.7.1.4, but its *library* does not support: dlist-1.0 @@ -7714,35 +7542,19 @@ packages: - web-routes-hsp < 0 # tried web-routes-hsp-0.24.6.1, but its *library* requires the disabled package: web-routes - web-routes-th < 0 # tried web-routes-th-0.22.6.6, but its *library* does not support: template-haskell-2.18.0.0 - web-routes-wai < 0 # tried web-routes-wai-0.24.3.1, but its *library* does not support: bytestring-0.11.1.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: OneTuple-0.3.1 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: aeson-2.0.3.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: attoparsec-0.14.4 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: base-4.16.0.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: bytestring-0.11.1.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: cryptonite-0.29 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: hspec-2.8.5 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: http-client-0.7.9 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: memory-0.16.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: microlens-aeson-2.4.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-0.18.3 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: servant-client-0.18.3 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: template-haskell-2.18.0.0 - - web3 < 0 # tried web3-0.9.1.0, but its *library* does not support: vinyl-0.13.3 + - web3 < 0 # tried web3-1.0.0.0, but its *library* does not support: base-4.16.0.0 + - web3 < 0 # tried web3-1.0.0.0, but its *library* requires the disabled package: web3-ethereum + - web3 < 0 # tried web3-1.0.0.0, but its *library* requires the disabled package: web3-polkadot + - web3 < 0 # tried web3-1.0.0.0, but its *library* requires the disabled package: web3-provider - webby < 0 # tried webby-1.0.1, but its *library* does not support: aeson-2.0.3.0 - webby < 0 # tried webby-1.0.1, but its *library* does not support: formatting-7.1.3 - webdriver < 0 # tried webdriver-0.9.0.1, but its *library* does not support: aeson-2.0.3.0 - webdriver < 0 # tried webdriver-0.9.0.1, but its *library* does not support: base-4.16.0.0 - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* does not support: language-javascript-0.7.1.0 - webdriver-angular < 0 # tried webdriver-angular-0.1.11, but its *library* does not support: webdriver-0.9.0.1 - - webex-teams-api < 0 # tried webex-teams-api-0.2.0.1, but its *library* requires the disabled package: http-conduit - - webex-teams-conduit < 0 # tried webex-teams-conduit-0.2.0.1, but its *library* requires the disabled package: webex-teams-api - - webgear-core < 0 # tried webgear-core-1.0.1, but its *library* requires the disabled package: jose - - webgear-openapi < 0 # tried webgear-openapi-1.0.1, but its *library* requires the disabled package: openapi3 - - webgear-server < 0 # tried webgear-server-1.0.1, but its *library* requires the disabled package: jose - - websockets-simple < 0 # tried websockets-simple-0.2.0, but its *library* requires the disabled package: wai-transformers + - websockets-simple < 0 # tried websockets-simple-0.2.0, but its *library* requires the disabled package: monad-control-aligned - websockets-snap < 0 # tried websockets-snap-0.10.3.1, but its *library* does not support: bytestring-0.11.1.0 - websockets-snap < 0 # tried websockets-snap-0.10.3.1, but its *library* requires the disabled package: snap-server - - wide-word < 0 # tried wide-word-0.1.1.2, but its *library* does not support: base-4.16.0.0 - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.12, but its *library* does not support: bytestring-0.11.1.0 - wikicfp-scraper < 0 # tried wikicfp-scraper-0.1.0.12, but its *library* does not support: time-1.11.1.1 - wild-bind < 0 # tried wild-bind-0.1.2.8, but its *library* does not support: base-4.16.0.0 @@ -7754,91 +7566,58 @@ packages: - wl-pprint-terminfo < 0 # tried wl-pprint-terminfo-3.7.1.4, but its *library* does not support: containers-0.6.5.1 - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: next-ref - wrecker < 0 # tried wrecker-1.3.2.0, but its *library* requires the disabled package: threads-extras - - wreq < 0 # tried wreq-0.5.3.3, but its *library* requires the disabled package: memory - - wreq-stringless < 0 # tried wreq-stringless-0.5.9.1, but its *library* requires the disabled package: wreq - writer-cps-full < 0 # tried writer-cps-full-0.1.0.0, but its *library* requires the disabled package: writer-cps-morph - writer-cps-lens < 0 # tried writer-cps-lens-0.1.0.1, but its *library* does not support: lens-5.1 - ws < 0 # tried ws-0.0.5, but its *library* requires the disabled package: attoparsec-uri - - wss-client < 0 # tried wss-client-0.3.0.0, but its *library* requires the disabled package: http-client-tls - - wuss < 0 # tried wuss-1.1.19, but its *library* requires the disabled package: connection - - x509 < 0 # tried x509-1.7.5, but its *library* requires the disabled package: memory - - x509-store < 0 # tried x509-store-1.6.7, but its *library* requires the disabled package: asn1-types - - x509-store < 0 # tried x509-store-1.6.7, but its *library* requires the disabled package: cryptonite - - x509-store < 0 # tried x509-store-1.6.7, but its *library* requires the disabled package: pem - - x509-store < 0 # tried x509-store-1.6.7, but its *library* requires the disabled package: x509 - - x509-system < 0 # tried x509-system-1.6.6, but its *library* requires the disabled package: pem - - x509-system < 0 # tried x509-system-1.6.6, but its *library* requires the disabled package: x509 - - x509-validation < 0 # tried x509-validation-1.6.11, but its *library* requires the disabled package: memory - xlsx < 0 # tried xlsx-0.8.4, but its *library* does not support: lens-5.1 - xlsx-tabular < 0 # tried xlsx-tabular-0.2.2.1, but its *library* requires the disabled package: xlsx - - xml-html-qq < 0 # tried xml-html-qq-0.1.0.1, but its *library* requires the disabled package: heterocephalus - xml-isogen < 0 # tried xml-isogen-0.3.0, but its *library* requires the disabled package: dom-parser - xmlbf-xmlhtml < 0 # tried xmlbf-xmlhtml-0.2, but its *library* requires the disabled package: xmlhtml - xmlhtml < 0 # tried xmlhtml-0.2.5.2, but its *library* does not support: bytestring-0.11.1.0 - - yaml-unscrambler < 0 # tried yaml-unscrambler-0.1.0.5, but its *library* does not support: bytestring-0.11.1.0 + - yaml-unscrambler < 0 # tried yaml-unscrambler-0.1.0.8, but its *library* requires the disabled package: base64 - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* does not support: yeshql-core-4.2.0.0 - yeshql < 0 # tried yeshql-4.2.0.0, but its *library* requires the disabled package: yeshql-hdbc - - yesod < 0 # tried yesod-1.6.1.2, but its *library* requires the disabled package: yesod-core - - yesod < 0 # tried yesod-1.6.1.2, but its *library* requires the disabled package: yesod-form - - yesod < 0 # tried yesod-1.6.1.2, but its *library* requires the disabled package: yesod-persistent - - yesod-alerts < 0 # tried yesod-alerts-0.1.3.0, but its *library* requires the disabled package: yesod-core - - yesod-auth < 0 # tried yesod-auth-1.6.10.5, but its *library* requires the disabled package: authenticate - - yesod-auth < 0 # tried yesod-auth-1.6.10.5, but its *library* requires the disabled package: email-validate - - yesod-auth < 0 # tried yesod-auth-1.6.10.5, but its *library* requires the disabled package: memory - - yesod-auth < 0 # tried yesod-auth-1.6.10.5, but its *library* requires the disabled package: persistent + - yesod < 0 # tried yesod-1.6.2, but its *library* requires the disabled package: yesod-form + - yesod < 0 # tried yesod-1.6.2, but its *library* requires the disabled package: yesod-persistent + - yesod-auth < 0 # tried yesod-auth-1.6.11, but its *library* requires the disabled package: email-validate + - yesod-auth < 0 # tried yesod-auth-1.6.11, but its *library* requires the disabled package: persistent - yesod-auth-basic < 0 # tried yesod-auth-basic-0.1.0.3, but its *library* requires the disabled package: yesod - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: persistent-2.13.2.1 - - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-auth-1.6.10.5 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: persistent-2.13.3.0 + - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-auth-1.6.11 - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-core-1.6.21.0 - yesod-auth-bcryptdb < 0 # tried yesod-auth-bcryptdb-0.3.0.1, but its *library* does not support: yesod-form-1.7.0 - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: fb - - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: yesod-auth - - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: yesod-core - - yesod-auth-fb < 0 # tried yesod-auth-fb-1.10.1, but its *library* requires the disabled package: yesod-fb - yesod-auth-hashdb < 0 # tried yesod-auth-hashdb-1.7.1.7, but its *library* requires the disabled package: persistent - - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.6.3.4, but its *library* requires the disabled package: hoauth2 - - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.6.3.4, but its *library* requires the disabled package: memory - - yesod-bin < 0 # tried yesod-bin-1.6.1, but its *executable* requires the disabled package: http-client-tls - - yesod-core < 0 # tried yesod-core-1.6.21.0, but its *library* requires the disabled package: memory - - yesod-eventsource < 0 # tried yesod-eventsource-1.6.0.1, but its *library* requires the disabled package: yesod-core - - yesod-fb < 0 # tried yesod-fb-0.6.1, but its *library* requires the disabled package: memory + - yesod-auth-oauth2 < 0 # tried yesod-auth-oauth2-0.7.0.1, but its *library* requires the disabled package: hoauth2 + - yesod-fb < 0 # tried yesod-fb-0.6.1, but its *library* requires the disabled package: fb - yesod-form < 0 # tried yesod-form-1.7.0, but its *library* requires the disabled package: email-validate - yesod-form < 0 # tried yesod-form-1.7.0, but its *library* requires the disabled package: persistent - - yesod-form-bootstrap4 < 0 # tried yesod-form-bootstrap4-3.0.1, but its *library* requires the disabled package: yesod-core - yesod-form-bootstrap4 < 0 # tried yesod-form-bootstrap4-3.0.1, but its *library* requires the disabled package: yesod-form - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-core-1.6.21.0 - yesod-form-richtext < 0 # tried yesod-form-richtext-0.1.0.2, but its *library* does not support: yesod-form-1.7.0 - - yesod-gitrepo < 0 # tried yesod-gitrepo-0.3.0, but its *library* requires the disabled package: yesod-core - - yesod-gitrev < 0 # tried yesod-gitrev-0.2.2, but its *library* requires the disabled package: yesod-core + - yesod-markdown < 0 # tried yesod-markdown-0.12.6.12, but its *library* requires the disabled package: pandoc - yesod-markdown < 0 # tried yesod-markdown-0.12.6.12, but its *library* requires the disabled package: persistent - - yesod-newsfeed < 0 # tried yesod-newsfeed-1.7.0.0, but its *library* requires the disabled package: yesod-core - - yesod-page-cursor < 0 # tried yesod-page-cursor-2.0.0.9, but its *library* requires the disabled package: yesod-core - yesod-paginator < 0 # tried yesod-paginator-1.1.1.0, but its *library* requires the disabled package: persistent - yesod-persistent < 0 # tried yesod-persistent-1.6.0.7, but its *library* requires the disabled package: persistent - - yesod-recaptcha2 < 0 # tried yesod-recaptcha2-1.0.2, but its *library* requires the disabled package: yesod-core - yesod-recaptcha2 < 0 # tried yesod-recaptcha2-1.0.2, but its *library* requires the disabled package: yesod-form - - yesod-routes-flow < 0 # tried yesod-routes-flow-3.0.0.1, but its *library* requires the disabled package: yesod-core - - yesod-sitemap < 0 # tried yesod-sitemap-1.6.0, but its *library* requires the disabled package: yesod-core - yesod-static < 0 # tried yesod-static-1.6.1.0, but its *library* requires the disabled package: hjsmin - - yesod-static < 0 # tried yesod-static-1.6.1.0, but its *library* requires the disabled package: memory - - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* does not support: yesod-1.6.1.2 + - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *executable* does not support: yesod-1.6.2 - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: language-javascript-0.7.1.0 - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-core-1.6.21.0 - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* does not support: yesod-static-1.6.1.0 - yesod-static-angular < 0 # tried yesod-static-angular-0.1.8, but its *library* requires the disabled package: hamlet - - yesod-test < 0 # tried yesod-test-1.6.12, but its *library* requires the disabled package: memory - yesod-text-markdown < 0 # tried yesod-text-markdown-0.1.10, but its *library* does not support: aeson-2.0.3.0 - - yesod-websockets < 0 # tried yesod-websockets-0.3.0.3, but its *library* requires the disabled package: yesod-core - youtube < 0 # tried youtube-0.2.1.1, but its *executable* does not support: bytestring-0.11.1.0 - 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* does not support: semigroups-0.20 - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: base-compat-0.12.1 - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-0.18.3 - - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-client-0.18.3 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-0.19 + - ziptastic-client < 0 # tried ziptastic-client-0.3.0.3, but its *library* does not support: servant-client-0.19 - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: aeson-2.0.3.0 - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: base-compat-0.12.1 - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: bytestring-0.11.1.0 - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: http-api-data-0.4.3 - - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: servant-0.18.3 + - ziptastic-core < 0 # tried ziptastic-core-0.2.0.3, but its *library* does not support: servant-0.19 - zlib-lens < 0 # tried zlib-lens-0.1.2.1, but its *library* does not support: bytestring-0.11.1.0 - zm < 0 # tried zm-0.3.2, but its *library* does not support: bytestring-0.11.1.0 - zm < 0 # tried zm-0.3.2, but its *library* does not support: containers-0.6.5.1 @@ -7851,139 +7630,7 @@ packages: - zydiskell < 0 # tried zydiskell-0.2.0.0, but its *library* does not support: storable-record-0.0.6 # End of Library and exe bounds failures - "Stackage upper bounds": - - # https://github.com/commercialhaskell/stackage/issues/6122 - - mmorph < 1.2 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6184 - - base-compat >= 0.12 - - # https://github.com/commercialhaskell/stackage/issues/6185 - - base-compat-batteries >= 0.12 - - # https://github.com/commercialhaskell/stackage/issues/6195 - - miso >= 1.8 - - # aeson-2 - # https://github.com/commercialhaskell/stackage/issues/6217 - # https://github.com/commercialhaskell/stackage/issues/6402 - # https://github.com/commercialhaskell/stackage/issues/6243 - # https://github.com/commercialhaskell/stackage/issues/6393 - - aeson >= 2.0.0.0 - - aura >= 3.2.6 - - avro >= 0.6.0.0 - - cabal-flatpak >= 0.1.0.3 - - core-data >= 0.3.0.0 - - eventstore >= 1.4.2 - - faktory >= 1.1.2.1 - - flow >= 2.0.0.0 - - forma >= 1.2.0 - - geojson >= 4.1.0 - - greskell >= 2.0.0.0 - - greskell-core >= 1.0.0.0 - - greskell-websocket >= 1.0.0.0 - - hruby >= 0.4.0.0 - - hspec-expectations-json >= 1.0.0.5 - - jose >= 0.9 - - jsonpath >= 0.2.1.0 - - kanji > 3.5 - - microlens-aeson >= 2.4 - - mmark-cli >= 0.0.5.1 - - pandoc-plot >= 1.4.0 - - postgresql-binary >= 0.12.4.2 - - servant-tracing >= 0.2.0.0 - - shikensu >= 0.4.0 - - stache >= 2.3.1 - - stripe-scotty >= 1.1.0.1 - - stripe-wreq >= 1.0.1.12 - - yaml >= 0.11.7 - - # happy-1.21.0 is deprecated an unbuildable - # https://github.com/commercialhaskell/stackage/issues/6294 - # see also https://github.com/commercialhaskell/stackage/issues/6242 - - happy < 1.21 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6264 - # Requires GHC 9.2 - # Any new package-version that must use GHC 9.2 should be added here. - # We'll Remove this section along with the nightly upgrade to GHC 9.2. - - dbus >= 1.2.23 - - eliminators >= 0.9 - - fourmolu >= 0.5.0.0 - - ghc-exactprint >= 1.1 - - ghc-lib >= 9.2.1.20211030 - - ghc-lib-parser >= 9.2.1.20211030 - - ghc-lib-parser-ex >= 9.2.0.0 - - ghc-syntax-highlighter >= 0.0.8 # requires ghc-lib-parser >= 9.2 - - ormolu >= 0.4.0.0 - - singletons-base >= 3.1 - - singletons-th >= 3.1 - - th-desugar >= 1.13 - - # https://github.com/commercialhaskell/stackage/issues/6268 - - hashable >= 1.4.0.0 # dependents need 1.4 for 9.2 support - - # https://github.com/commercialhaskell/stackage/issues/6273 - - freckle-app >= 1.0.1 - - # https://github.com/commercialhaskell/stackage/issues/6292 - - doctest < 0.19 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6297 - - hspec-discover < 2.9 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6298 - - hspec-core < 2.9 # OK for GHC 9.2 - - hspec-meta < 2.9 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6299 - - hspec < 2.9 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6308 - - semigroups < 0.20 # OK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6309 - - polysemy >= 1.7 - - polysemy-plugin >= 0.4.3 - - # https://github.com/commercialhaskell/stackage/issues/6310 - - lens >= 5.1 - - # https://github.com/commercialhaskell/stackage/issues/6322 - - hashtables >= 1.3 - - # https://github.com/commercialhaskell/stackage/issues/6348 - - selective >= 0.5 - - yaml-unscrambler >= 0.1.0.5 - - headed-megaparsec >= 0.2.0.2 - - rebase >= 1.14 - - rerebase >= 1.14 - - selective >= 0.5 - - yaml-unscrambler >= 0.1.0.5 - - # https://github.com/commercialhaskell/stackage/issues/6388 - # issue is for 5.0, but 4.0.4 is deprecated. - - hw-kafka-client < 4.0.4 # ROK for GHC 9.2 - - # https://github.com/commercialhaskell/stackage/issues/6395 - - wuss < 2.0 - - # https://github.com/commercialhaskell/stackage/issues/6396 - # https://github.com/commercialhaskell/stackage/issues/6397 - # https://github.com/commercialhaskell/stackage/issues/6398 - - pandoc < 2.17 - - texmath < 0.12.4 - - ipynb < 0.2 - - # https://github.com/haskell-game/sdl2/issues/240 (need newer Ubuntu) - - sdl2 < 2.5.3.1 - - # https://github.com/commercialhaskell/stack/issues/5670 (fails with Cabal-3.4) - - stack < 0 - - # https://github.com/commercialhaskell/stackage/issues/6401 - - rope-utf16-splay < 0.4 + "Stackage upper bounds": [] # end of packages @@ -8085,7 +7732,7 @@ package-flags: five-three: true greskell: - hint-test: false + server-test: false windns: allow-non-windows: true @@ -8126,11 +7773,6 @@ skipped-builds: # or if Setup fails because of missing foreign libraries. # Otherwise place them in expected-test-failures. skipped-tests: - # aeson-2 - # https://github.com/commercialhaskell/stackage/issues/6217 - - jsonifier - - req - # Missing foreign libraries - symengine @@ -8209,12 +7851,19 @@ skipped-tests: - hpqtypes-extras # needs a running postgres database # norfairking - autodocodec # runs doctest + - captcha-core + - captcha-2captcha + - captcha-capmonster # Uses Cabal's "library internal" stanza feature - s3-signer # Due to cycles, which are actually just limitations in Stack right now. - HUnit + - Agda + - aeson + - indexed-traversable-instances + - semialign - attoparsec - base-orphans # via hspec - bifunctors # via hspec @@ -8222,6 +7871,7 @@ skipped-tests: - case-insensitive - clock - criterion + - criterion-measurement - distributive # via hspec - doctest # via hspec - foundation @@ -8229,6 +7879,7 @@ skipped-tests: - hspec-discover # via logging-facade/mockery - js-flot - js-jquery + - microstache - nanospec - optparse-applicative # via QuickCheck - primitive @@ -8236,6 +7887,7 @@ skipped-tests: - scientific - split - splitmix + - statistics - tasty-expected-failure # via tasty-hedgehog - vector # doctest - vector-binary-instances @@ -8255,88 +7907,82 @@ skipped-tests: # # Test bounds issues - ENIG # tried ENIG-0.0.1.0, but its *test-suite* requires the disabled package: test-framework-th - - HTTP # tried HTTP-4000.3.16, but its *test-suite* does not support: base-4.16.0.0 - - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: hspec-2.8.5 - - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: http-client-0.7.9 - - MissingH # tried MissingH-1.4.3.0, but its *test-suite* requires the disabled package: errorcall-eq-instance - - acc # tried acc-0.2.0.1, but its *test-suite* requires the disabled package: rerebase - - accelerate-bignum # tried accelerate-bignum-0.3.0.0, but its *test-suite* requires the disabled package: hedgehog - - accelerate-blas # tried accelerate-blas-0.3.0.0, but its *test-suite* requires the disabled package: hedgehog - - accelerate-fft # tried accelerate-fft-1.3.0.0, but its *test-suite* requires the disabled package: hedgehog + - Frames # tried Frames-0.7.3, but its *test-suite* requires the disabled package: htoml + - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: hspec-2.9.4 + - IPv6DB # tried IPv6DB-0.3.2, but its *test-suite* does not support: http-client-0.7.11 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* does not support: doctest-0.20.0 + - JuicyPixels-blurhash # tried JuicyPixels-blurhash-0.1.0.3, but its *test-suite* does not support: tasty-hedgehog-1.2.0.0 + - aeson-diff # tried aeson-diff-1.1.0.11, but its *test-suite* requires the disabled package: hlint - airship # tried airship-0.9.4, but its *test-suite* does not support: bytestring-0.11.1.0 - airship # tried airship-0.9.4, but its *test-suite* does not support: tasty-1.4.2.1 - - algebraic-graphs # tried algebraic-graphs-0.5, but its *test-suite* does not support: QuickCheck-2.14.2 - - antiope-core # tried antiope-core-7.5.3, but its *test-suite* does not support: hspec-2.8.5 + - antiope-core # tried antiope-core-7.5.3, but its *test-suite* does not support: hedgehog-1.1.1 + - antiope-core # tried antiope-core-7.5.3, but its *test-suite* does not support: hspec-2.9.4 - antiope-core # tried antiope-core-7.5.3, but its *test-suite* requires the disabled package: aeson-lens - - antiope-messages # tried antiope-messages-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-sns # tried antiope-sns-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - antiope-sqs # tried antiope-sqs-7.5.3, but its *test-suite* does not support: hspec-2.8.5 - - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* does not support: hspec-2.8.5 - - asif # tried asif-6.0.4, but its *test-suite* does not support: doctest-0.18.2 + - antiope-messages # tried antiope-messages-7.5.3, but its *test-suite* does not support: hedgehog-1.1.1 + - antiope-messages # tried antiope-messages-7.5.3, but its *test-suite* does not support: hspec-2.9.4 + - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* does not support: hedgehog-1.1.1 + - antiope-s3 # tried antiope-s3-7.5.3, but its *test-suite* does not support: hspec-2.9.4 + - antiope-sns # tried antiope-sns-7.5.3, but its *test-suite* does not support: hedgehog-1.1.1 + - antiope-sns # tried antiope-sns-7.5.3, but its *test-suite* does not support: hspec-2.9.4 + - antiope-sqs # tried antiope-sqs-7.5.3, but its *test-suite* does not support: hedgehog-1.1.1 + - antiope-sqs # tried antiope-sqs-7.5.3, but its *test-suite* does not support: hspec-2.9.4 + - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* does not support: hedgehog-1.1.1 + - arbor-lru-cache # tried arbor-lru-cache-0.1.1.1, but its *test-suite* does not support: hspec-2.9.4 + - asif # tried asif-6.0.4, but its *test-suite* does not support: doctest-0.20.0 - atom-conduit # tried atom-conduit-0.9.0.1, but its *test-suite* requires the disabled package: hlint - - aur # tried aur-7.0.7, but its *test-suite* requires the disabled package: http-client-tls - - avro # tried avro-0.6.0.0, but its *test-suite* requires the disabled package: hedgehog - - avro # tried avro-0.6.0.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - barrier # tried barrier-0.1.1, but its *test-suite* does not support: lens-family-core-2.1.0 - barrier # tried barrier-0.1.1, but its *test-suite* does not support: tasty-1.4.2.1 - - binary-parser # tried binary-parser-0.5.7.1, but its *test-suite* requires the disabled package: rerebase - - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: hspec-2.8.5 + - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: doctest-0.20.0 + - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - bits-extra # tried bits-extra-0.0.2.0, but its *test-suite* does not support: hspec-2.9.4 - blake2 # tried blake2-0.3.0, but its *test-suite* requires the disabled package: hlint - - blaze-html # tried blaze-html-0.9.1.2, but its *test-suite* does not support: QuickCheck-2.14.2 - bloodhound # tried bloodhound-0.18.0.0, but its *test-suite* requires the disabled package: quickcheck-properties - - bnb-staking-csvs # tried bnb-staking-csvs-0.2.0.0, but its *test-suite* requires the disabled package: hedgehog - boolean-normal-forms # tried boolean-normal-forms-0.0.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 - - bsb-http-chunked # tried bsb-http-chunked-0.0.0.4, but its *test-suite* requires the disabled package: hedgehog - - bugsnag-hs # tried bugsnag-hs-0.2.0.8, but its *test-suite* requires the disabled package: hedgehog + - brittany # tried brittany-0.14.0.2, but its *test-suite* does not support: hspec-2.9.4 + - buttplug-hs-core # tried buttplug-hs-core-0.1.0.1, but its *test-suite* does not support: hspec-2.9.4 - cacophony # tried cacophony-0.10.1, but its *test-suite* requires the disabled package: hlint - - cardano-coin-selection # tried cardano-coin-selection-1.0.1, but its *test-suite* requires the disabled package: memory - cassava-conduit # tried cassava-conduit-0.6.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: hspec-2.8.5 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: servant-server-0.18.3 - - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: warp-3.3.18 - - cipher-rc4 # tried cipher-rc4-0.1.4, but its *test-suite* requires the disabled package: crypto-cipher-tests - - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-2.8.5 - - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-discover-2.8.5 - - cointracking-imports # tried cointracking-imports-0.1.0.1, but its *test-suite* requires the disabled package: hedgehog + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: hspec-2.9.4 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: servant-server-0.19 + - chatwork # tried chatwork-0.1.3.5, but its *test-suite* does not support: warp-3.3.20 + - chronos # tried chronos-1.1.4, but its *test-suite* does not support: aeson-2.0.3.0 + - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-2.9.4 + - clay # tried clay-0.13.3, but its *test-suite* does not support: hspec-discover-2.9.4 - colour # tried colour-2.3.6, but its *test-suite* does not support: random-1.2.1 - conduit-parse # tried conduit-parse-0.2.1.0, but its *test-suite* requires the disabled package: hlint - - config-ini # tried config-ini-0.2.4.0, but its *test-suite* requires the disabled package: hedgehog - - cron # tried cron-0.7.0, but its *test-suite* requires the disabled package: hedgehog - - csg # tried csg-0.1.0.6, but its *test-suite* does not support: doctest-0.18.2 + - csg # tried csg-0.1.0.6, but its *test-suite* does not support: doctest-0.20.0 - csg # tried csg-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 - - d10 # tried d10-1.0.0.2, but its *test-suite* requires the disabled package: hedgehog - - darcs # tried darcs-2.16.4, but its *test-suite* does not support: QuickCheck-2.14.2 - - deferred-folds # tried deferred-folds-0.9.18, but its *test-suite* requires the disabled package: rerebase - - deque # tried deque-0.4.4, but its *test-suite* requires the disabled package: rerebase - detour-via-sci # tried detour-via-sci-1.0.0, but its *test-suite* requires the disabled package: hlint - - dhall-lsp-server # tried dhall-lsp-server-1.0.17, but its *test-suite* does not support: lsp-test-0.14.0.2 + - dhall-lsp-server # tried dhall-lsp-server-1.1.0, but its *test-suite* does not support: lsp-types-1.4.0.1 + - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* does not support: hspec-2.9.4 + - dialogflow-fulfillment # tried dialogflow-fulfillment-0.1.1.4, but its *test-suite* does not support: hspec-discover-2.9.4 - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 - distributed-process-lifted # tried distributed-process-lifted-0.3.0.1, but its *test-suite* requires the disabled package: rematch - doldol # tried doldol-0.4.1.2, but its *test-suite* requires the disabled package: test-framework-th - domain-optics # tried domain-optics-0.1.0.2, but its *test-suite* requires the disabled package: domain - - drawille # tried drawille-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 + - drawille # tried drawille-0.1.2.0, but its *test-suite* does not support: hspec-2.9.4 - dual-tree # tried dual-tree-0.2.3.0, but its *test-suite* requires the disabled package: testing-feat - dublincore-xml-conduit # tried dublincore-xml-conduit-0.1.0.2, but its *test-suite* requires the disabled package: hlint - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: directory-1.3.6.2 - - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: doctest-0.18.2 + - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: doctest-0.20.0 - ed25519 # tried ed25519-0.0.5.0, but its *test-suite* does not support: hlint-3.3.6 - - edit # tried edit-1.0.1.0, but its *test-suite* does not support: doctest-0.18.2 + - edit # tried edit-1.0.1.0, but its *test-suite* does not support: doctest-0.20.0 - edit # tried edit-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - elm-street # tried elm-street-0.1.0.4, but its *test-suite* does not support: bytestring-0.11.1.0 - - elm-street # tried elm-street-0.1.0.4, but its *test-suite* does not support: hspec-2.8.5 - - emd # tried emd-0.2.0.0, but its *test-suite* requires the disabled package: hedgehog + - elm-street # tried elm-street-0.1.0.4, but its *test-suite* does not support: hspec-2.9.4 + - email-validate # tried email-validate-2.3.2.15, but its *test-suite* does not support: doctest-0.20.0 + - email-validate # tried email-validate-2.3.2.15, but its *test-suite* does not support: hspec-2.9.4 - errors-ext # tried errors-ext-0.4.2, but its *test-suite* requires the disabled package: binary-ext - euler-tour-tree # tried euler-tour-tree-0.1.1.0, but its *test-suite* requires the disabled package: sequence - eventsource-stub-store # tried eventsource-stub-store-1.1.1, but its *test-suite* requires the disabled package: eventsource-store-specs - extensible-effects # tried extensible-effects-5.0.0.1, but its *test-suite* requires the disabled package: test-framework-th - filtrable # tried filtrable-0.1.6.0, but its *test-suite* does not support: tasty-1.4.2.1 + - fixed-vector-hetero # tried fixed-vector-hetero-0.6.1.1, but its *test-suite* does not support: doctest-0.20.0 - focuslist # tried focuslist-0.1.1.0, but its *test-suite* does not support: genvalidity-1.0.0.1 - focuslist # tried focuslist-0.1.1.0, but its *test-suite* does not support: validity-0.12.0.0 - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-1.4.2.1 - ftp-client # tried ftp-client-0.5.1.4, but its *test-suite* does not support: tasty-hspec-1.2 - - functor-combinators # tried functor-combinators-0.4.1.0, but its *test-suite* requires the disabled package: hedgehog - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: QuickCheck-2.14.2 - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: bitvec-1.1.2.0 - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: groups-0.5.3 @@ -8344,19 +7990,19 @@ skipped-tests: - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: semirings-0.6 - galois-field # tried galois-field-1.0.2, but its *test-suite* does not support: tasty-1.4.2.1 - generic-xmlpickler # tried generic-xmlpickler-0.1.0.6, but its *test-suite* does not support: tasty-1.4.2.1 + - genvalidity-hspec-aeson # tried genvalidity-hspec-aeson-1.0.0.0, but its *test-suite* requires the disabled package: genvalidity-aeson + - genvalidity-sydtest-aeson # tried genvalidity-sydtest-aeson-1.0.0.0, but its *test-suite* requires the disabled package: genvalidity-aeson - ghc-prof # tried ghc-prof-1.4.1.9, but its *test-suite* does not support: attoparsec-0.14.4 - - github-types # tried github-types-0.2.1, but its *test-suite* requires the disabled package: http-conduit - gitlib-libgit2 # tried gitlib-libgit2-3.1.2.1, but its *test-suite* requires the disabled package: gitlib-test - greskell # tried greskell-2.0.0.0, but its *test-suite* does not support: bytestring-0.11.1.0 - greskell-core # tried greskell-core-1.0.0.0, but its *test-suite* does not support: bytestring-0.11.1.0 - - hackage-security # tried hackage-security-0.6.0.1, but its *test-suite* does not support: aeson-2.0.3.0 - - hackage-security # tried hackage-security-0.6.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: base-compat-0.12.1 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-2.8.5 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: optparse-applicative-0.16.1.0 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-2.9.4 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: hspec-discover-2.9.4 + - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: optparse-applicative-0.17.0.0 - haddock-library # tried haddock-library-1.10.0, but its *test-suite* does not support: tree-diff-0.2.1.1 - hasbolt # tried hasbolt-0.1.6.1, but its *test-suite* does not support: bytestring-0.11.1.0 + - hasbolt # tried hasbolt-0.1.6.1, but its *test-suite* does not support: hspec-2.9.4 - haskell-names # tried haskell-names-0.9.9, but its *test-suite* does not support: tasty-1.4.2.1 - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* does not support: bytestring-0.11.1.0 - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 @@ -8364,7 +8010,7 @@ skipped-tests: - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: Glob-0.10.2 - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: bytestring-0.11.1.0 - haskell-tools-daemon # tried haskell-tools-daemon-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: network-3.1.2.5 + - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: network-3.1.2.7 - haskell-tools-demo # tried haskell-tools-demo-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: polyparse-1.13 - haskell-tools-refactor # tried haskell-tools-refactor-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 @@ -8372,233 +8018,245 @@ skipped-tests: - haskell-tools-rewrite # tried haskell-tools-rewrite-1.1.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - haskey-mtl # tried haskey-mtl-0.3.1.0, but its *test-suite* does not support: lens-5.1 - haskoin-core # tried haskoin-core-0.21.1, but its *test-suite* requires the disabled package: base64 - - hasmin # tried hasmin-1.0.3, but its *test-suite* does not support: doctest-0.18.2 - - hasql-transaction # tried hasql-transaction-1.0.1.1, but its *test-suite* requires the disabled package: rerebase - - hedn # tried hedn-0.3.0.4, but its *test-suite* requires the disabled package: hedgehog + - hasmin # tried hasmin-1.0.3, but its *test-suite* does not support: doctest-0.20.0 - heist # tried heist-1.1.0.1, but its *test-suite* does not support: lens-5.1 - - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 - - hledger-stockquotes # tried hledger-stockquotes-0.1.2.0, but its *test-suite* requires the disabled package: hedgehog - - hmatrix-vector-sized # tried hmatrix-vector-sized-0.1.3.0, but its *test-suite* requires the disabled package: hedgehog + - hidden-char # tried hidden-char-0.1.0.2, but its *test-suite* does not support: hspec-2.9.4 - hpack-dhall # tried hpack-dhall-0.5.4, but its *test-suite* requires the disabled package: hlint - - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* does not support: hspec-2.8.5 - - http-conduit # tried http-conduit-2.3.8, but its *test-suite* requires the disabled package: tls + - hspec-tables # tried hspec-tables-0.0.1, but its *test-suite* does not support: hspec-2.9.4 - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - http-media # tried http-media-0.8.0.0, but its *test-suite* does not support: base-4.16.0.0 - - http-reverse-proxy # tried http-reverse-proxy-0.6.0, but its *test-suite* requires the disabled package: http-conduit - - http-reverse-proxy # tried http-reverse-proxy-0.6.0, but its *test-suite* requires the disabled package: warp - - http-streams # tried http-streams-0.8.9.4, but its *test-suite* requires the disabled package: snap-server - - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* requires the disabled package: hedgehog - - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-conduit # tried hw-conduit-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* requires the disabled package: hedgehog - - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires the disabled package: hedgehog - - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* requires the disabled package: hedgehog - - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires the disabled package: hedgehog - - hw-int # tried hw-int-0.0.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* requires the disabled package: hedgehog - - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* requires the disabled package: hedgehog - - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* requires the disabled package: hedgehog - - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires the disabled package: hedgehog - - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: hspec-2.8.5 - - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* requires the disabled package: hedgehog - - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires the disabled package: hedgehog - - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* requires the disabled package: hedgehog - - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* requires the disabled package: hw-hspec-hedgehog - - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: hspec-2.8.5 - - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* does not support: hspec-2.8.5 + - http-streams # tried http-streams-0.8.9.6, but its *test-suite* requires the disabled package: snap-server + - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* does not support: doctest-0.20.0 + - hw-balancedparens # tried hw-balancedparens-0.4.1.1, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-bits # tried hw-bits-0.7.2.1, but its *test-suite* does not support: doctest-0.20.0 + - hw-bits # tried hw-bits-0.7.2.1, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-conduit # tried hw-conduit-0.2.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-conduit # tried hw-conduit-0.2.1.0, but its *test-suite* does not support: hspec-2.9.4 + - hw-diagnostics # tried hw-diagnostics-0.0.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-dsv # tried hw-dsv-0.4.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-eliasfano # tried hw-eliasfano-0.1.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-excess # tried hw-excess-0.2.3.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-fingertree # tried hw-fingertree-0.1.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-fingertree-strict # tried hw-fingertree-strict-0.1.2.0, but its *test-suite* does not support: hspec-2.9.4 + - hw-hedgehog # tried hw-hedgehog-0.1.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-hspec-hedgehog # tried hw-hspec-hedgehog-0.1.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-int # tried hw-int-0.0.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-ip # tried hw-ip-2.4.2.0, but its *test-suite* does not support: hspec-2.9.4 + - hw-json # tried hw-json-1.3.2.2, but its *test-suite* does not support: doctest-0.20.0 + - hw-json # tried hw-json-1.3.2.2, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-json-simd # tried hw-json-simd-0.1.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-json-simple-cursor # tried hw-json-simple-cursor-0.1.1.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* does not support: doctest-0.20.0 + - hw-json-standard-cursor # tried hw-json-standard-cursor-0.2.3.1, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-mquery # tried hw-mquery-0.2.1.0, but its *test-suite* does not support: hspec-2.9.4 + - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-packed-vector # tried hw-packed-vector-0.2.1.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-parser # tried hw-parser-0.1.1.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-prim # tried hw-prim-0.6.3.0, but its *test-suite* does not support: hspec-2.9.4 + - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-rankselect # tried hw-rankselect-0.13.4.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* does not support: doctest-0.20.0 + - hw-rankselect-base # tried hw-rankselect-base-0.3.4.1, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-simd # tried hw-simd-0.1.2.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hw-streams # tried hw-streams-0.0.1.0, but its *test-suite* does not support: hspec-2.9.4 + - hw-xml # tried hw-xml-0.5.1.0, but its *test-suite* does not support: doctest-0.20.0 + - hw-xml # tried hw-xml-0.5.1.0, but its *test-suite* does not support: hedgehog-1.1.1 + - hyraxAbif # tried hyraxAbif-0.2.3.27, but its *test-suite* does not support: hedgehog-1.1.1 + - indexed-containers # tried indexed-containers-0.1.0.2, but its *test-suite* does not support: hspec-2.9.4 - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - irc-dcc # tried irc-dcc-2.0.1, but its *test-suite* does not support: tasty-hspec-1.2 - json-rpc-client # tried json-rpc-client-0.2.5.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - jwt # tried jwt-0.11.0, but its *test-suite* does not support: doctest-0.18.2 - - katip-wai # tried katip-wai-0.1.0.0, but its *test-suite* requires the disabled package: warp - - lackey # tried lackey-2.0.0.0, but its *test-suite* requires the disabled package: servant + - lackey # tried lackey-2.0.0.0, but its *test-suite* does not support: servant-0.19 - language-javascript # tried language-javascript-0.7.1.0, but its *test-suite* requires the disabled package: utf8-light - - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-2.8.5 - - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-core-2.8.5 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-2.9.4 + - libjwt-typed # tried libjwt-typed-0.2, but its *test-suite* does not support: hspec-core-2.9.4 - libraft # tried libraft-0.5.0.0, but its *test-suite* requires the disabled package: quickcheck-state-machine - - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* does not support: doctest-0.18.2 - - linear-base # tried linear-base-0.1.0, but its *test-suite* requires the disabled package: hedgehog - - loc # tried loc-0.1.3.16, but its *test-suite* requires the disabled package: hedgehog - - lrucaching # tried lrucaching-0.3.3, but its *test-suite* does not support: hspec-2.8.5 + - linear-accelerate # tried linear-accelerate-0.7.0.0, but its *test-suite* does not support: doctest-0.20.0 + - lrucaching # tried lrucaching-0.3.3, but its *test-suite* does not support: hspec-2.9.4 + - lsp # tried lsp-1.4.0.0, but its *test-suite* requires the disabled package: rope-utf16-splay - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: Glob-0.10.2 - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: base-4.16.0.0 - - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: doctest-0.18.2 + - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: doctest-0.20.0 - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-1.4.2.1 - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-hunit-0.10.0.3 - makefile # tried makefile-1.1.0.0, but its *test-suite* does not support: tasty-quickcheck-0.10.2 - - map-syntax # tried map-syntax-0.3, but its *test-suite* does not support: hspec-2.8.5 - - math-extras # tried math-extras-0.1.1.0, but its *test-suite* requires the disabled package: hedgehog + - map-syntax # tried map-syntax-0.3, but its *test-suite* does not support: hspec-2.9.4 + - medea # tried medea-1.2.0, but its *test-suite* does not support: hspec-2.9.4 + - medea # tried medea-1.2.0, but its *test-suite* does not support: hspec-core-2.9.4 - menshen # tried menshen-0.0.3, but its *test-suite* does not support: QuickCheck-2.14.2 - - min-max-pqueue # tried min-max-pqueue-0.1.0.2, but its *test-suite* requires the disabled package: hedgehog - monad-par # tried monad-par-0.3.5, but its *test-suite* requires the disabled package: test-framework-th - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: QuickCheck-2.14.2 - msgpack # tried msgpack-1.0.1.0, but its *test-suite* does not support: tasty-1.4.2.1 - - multistate # tried multistate-0.8.0.3, but its *test-suite* does not support: hspec-2.8.5 + - multistate # tried multistate-0.8.0.4, but its *test-suite* does not support: hspec-2.9.4 + - mwc-random # tried mwc-random-0.15.0.2, but its *test-suite* does not support: doctest-0.20.0 - nakadi-client # tried nakadi-client-0.7.0.0, but its *test-suite* does not support: classy-prelude-1.5.0.2 - - netrc # tried netrc-0.2.0.0, but its *test-suite* does not support: tasty-1.4.2.1 - network-messagepack-rpc-websocket # tried network-messagepack-rpc-websocket-0.1.1.1, but its *test-suite* requires the disabled package: envy - network-transport-inmemory # tried network-transport-inmemory-0.5.2, but its *test-suite* does not support: network-transport-tests-0.3.0 - - nonempty-containers # tried nonempty-containers-0.3.4.4, but its *test-suite* requires the disabled package: hedgehog - - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* does not support: doctest-0.18.2 + - numhask-prelude # tried numhask-prelude-0.5.0, but its *test-suite* does not support: doctest-0.20.0 + - o-clock # tried o-clock-1.2.1.1, but its *test-suite* does not support: tasty-hedgehog-1.2.0.0 + - opaleye # tried opaleye-0.9.2.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 - - optima # tried optima-0.4.0.2, but its *test-suite* requires the disabled package: rerebase - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell - options # tried options-1.2.1.1, but its *test-suite* requires the disabled package: chell-quickcheck - - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-2.8.5 - - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-discover-2.8.5 - - partial-semigroup # tried partial-semigroup-0.5.1.14, but its *test-suite* does not support: doctest-0.18.2 + - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-2.9.4 + - oset # tried oset-0.4.0.1, but its *test-suite* does not support: hspec-discover-2.9.4 + - partial-semigroup # tried partial-semigroup-0.5.1.14, but its *test-suite* does not support: doctest-0.20.0 + - partial-semigroup # tried partial-semigroup-0.5.1.14, but its *test-suite* does not support: hedgehog-1.1.1 - password-instances # tried password-instances-3.0.0.0, but its *test-suite* requires the disabled package: password - - persistent-typed-db # tried persistent-typed-db-0.1.0.5, but its *test-suite* requires the disabled package: esqueleto - pipes-fluid # tried pipes-fluid-0.6.0.1, but its *test-suite* requires the disabled package: pipes-misc - - polysemy-webserver # tried polysemy-webserver-0.2.1.1, but its *test-suite* requires the disabled package: http-conduit - - postgresql-syntax # tried postgresql-syntax-0.4, but its *test-suite* requires the disabled package: hedgehog - - postgrest # tried postgrest-8.0.0, but its *test-suite* does not support: hspec-2.8.5 - - primitive-extras # tried primitive-extras-0.10.1.4, but its *test-suite* requires the disabled package: rerebase + - polysemy # tried polysemy-1.7.1.0, but its *test-suite* does not support: doctest-0.20.0 + - polysemy-plugin # tried polysemy-plugin-0.4.3.0, but its *test-suite* does not support: doctest-0.20.0 + - postgrest # tried postgrest-8.0.0, but its *test-suite* does not support: hspec-2.9.4 - printcess # tried printcess-0.1.0.3, but its *test-suite* does not support: HUnit-1.6.2.0 - printcess # tried printcess-0.1.0.3, but its *test-suite* does not support: QuickCheck-2.14.2 - - ptr-poker # tried ptr-poker-0.1.2.4, but its *test-suite* requires the disabled package: hedgehog - - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* does not support: hspec-2.8.5 + - qnap-decrypt # tried qnap-decrypt-0.3.5, but its *test-suite* does not support: hspec-2.9.4 - quickcheck-state-machine # tried quickcheck-state-machine-0.7.1, but its *test-suite* requires the disabled package: hs-rqlite - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: hspec-2.8.5 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: servant-server-0.18.3 - - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: warp-3.3.18 - - records-sop # tried records-sop-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 - - registry # tried registry-0.2.1.0, but its *test-suite* requires the disabled package: hedgehog - - rel8 # tried rel8-1.2.2.0, but its *test-suite* requires the disabled package: hedgehog - - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* does not support: hspec-2.8.5 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: hspec-2.9.4 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: servant-server-0.19 + - rakuten # tried rakuten-0.1.1.5, but its *test-suite* does not support: warp-3.3.20 + - records-sop # tried records-sop-0.1.1.0, but its *test-suite* does not support: hspec-2.9.4 + - registry # tried registry-0.2.1.0, but its *test-suite* does not support: tasty-hedgehog-1.2.0.0 + - relude # tried relude-1.0.0.1, but its *test-suite* does not support: hedgehog-1.1.1 + - req-url-extra # tried req-url-extra-0.1.1.0, but its *test-suite* does not support: hspec-2.9.4 - rescue # tried rescue-0.4.2.1, but its *test-suite* requires the disabled package: hlint - - retry # tried retry-0.9.0.0, but its *test-suite* requires the disabled package: hedgehog - - rng-utils # tried rng-utils-0.3.1, but its *test-suite* requires the disabled package: hedgehog - rss-conduit # tried rss-conduit-0.6.0.1, but its *test-suite* requires the disabled package: hlint - safeio # tried safeio-0.0.5.0, but its *test-suite* requires the disabled package: test-framework-th - salak-toml # tried salak-toml-0.3.5.3, but its *test-suite* does not support: QuickCheck-2.14.2 - - scalendar # tried scalendar-1.2.0, but its *test-suite* requires the disabled package: SCalendar - schematic # tried schematic-0.5.1.0, but its *test-suite* does not support: base-4.16.0.0 - - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: aeson-2.0.3.0 - - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: jose-0.9 - - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-2.8.5 - - servant-auth-server # tried servant-auth-server-0.4.6.0, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant # tried servant-0.19, but its *test-suite* does not support: hspec-2.9.4 + - servant # tried servant-0.19, but its *test-suite* does not support: hspec-discover-2.9.4 + - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: hspec-2.9.4 + - servant-auth-client # tried servant-auth-client-0.4.1.0, but its *test-suite* does not support: hspec-discover-2.9.4 + - servant-auth-docs # tried servant-auth-docs-0.2.10.0, but its *test-suite* does not support: doctest-0.20.0 + - servant-auth-server # tried servant-auth-server-0.4.7.0, but its *test-suite* does not support: hspec-2.9.4 + - servant-auth-server # tried servant-auth-server-0.4.7.0, but its *test-suite* does not support: hspec-discover-2.9.4 + - servant-auth-swagger # tried servant-auth-swagger-0.2.10.1, but its *test-suite* does not support: hspec-2.9.4 + - servant-auth-swagger # tried servant-auth-swagger-0.2.10.1, but its *test-suite* does not support: hspec-discover-2.9.4 - servant-blaze # tried servant-blaze-0.9.1, but its *test-suite* requires the disabled package: servant-server + - servant-cassava # tried servant-cassava-0.10.1, but its *test-suite* does not support: servant-server-0.19 + - servant-client # tried servant-client-0.19, but its *test-suite* does not support: hspec-2.9.4 + - servant-client # tried servant-client-0.19, but its *test-suite* does not support: hspec-discover-2.9.4 + - servant-client-core # tried servant-client-core-0.19, but its *test-suite* does not support: hspec-2.9.4 + - servant-client-core # tried servant-client-core-0.19, but its *test-suite* does not support: hspec-discover-2.9.4 - servant-conduit # tried servant-conduit-0.15.1, but its *test-suite* requires the disabled package: servant-client - servant-conduit # tried servant-conduit-0.15.1, but its *test-suite* requires the disabled package: servant-server - - servant-docs # tried servant-docs-0.11.9, but its *test-suite* does not support: tasty-1.4.2.1 + - servant-docs-simple # tried servant-docs-simple-0.4.0.0, but its *test-suite* does not support: hspec-2.9.4 + - servant-docs-simple # tried servant-docs-simple-0.4.0.0, but its *test-suite* does not support: hspec-core-2.9.4 - servant-elm # tried servant-elm-0.7.2, but its *test-suite* requires the disabled package: servant-client - - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-2.8.5 - - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-foreign # tried servant-foreign-0.15.4, but its *test-suite* does not support: hspec-2.9.4 + - servant-foreign # tried servant-foreign-0.15.4, but its *test-suite* does not support: hspec-discover-2.9.4 + - servant-http-streams # tried servant-http-streams-0.18.4, but its *test-suite* does not support: hspec-2.9.4 + - servant-http-streams # tried servant-http-streams-0.18.4, but its *test-suite* does not support: hspec-discover-2.9.4 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-2.9.4 + - servant-js # tried servant-js-0.9.4.2, but its *test-suite* does not support: hspec-discover-2.9.4 - servant-js # tried servant-js-0.9.4.2, but its *test-suite* requires the disabled package: language-ecmascript - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: aeson-2.0.3.0 - - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: hspec-2.8.5 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: hspec-2.9.4 - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *test-suite* does not support: http-api-data-0.4.3 - - servant-lucid # tried servant-lucid-0.9.0.4, but its *test-suite* requires the disabled package: servant-server + - servant-lucid # tried servant-lucid-0.9.0.5, but its *test-suite* requires the disabled package: servant-server - servant-machines # tried servant-machines-0.15.1, but its *test-suite* requires the disabled package: servant-client - servant-machines # tried servant-machines-0.15.1, but its *test-suite* requires the disabled package: servant-server - servant-mock # tried servant-mock-0.8.7, but its *test-suite* does not support: hspec-wai-0.11.1 + - servant-openapi3 # tried servant-openapi3-2.0.1.3, but its *test-suite* does not support: doctest-0.20.0 - servant-pipes # tried servant-pipes-0.15.3, but its *test-suite* requires the disabled package: servant-client - servant-pipes # tried servant-pipes-0.15.3, but its *test-suite* requires the disabled package: servant-server - - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* does not support: hspec-core-2.8.5 + - servant-quickcheck # tried servant-quickcheck-0.0.10.0, but its *test-suite* does not support: hspec-core-2.9.4 + - servant-server # tried servant-server-0.19, but its *test-suite* does not support: hspec-2.9.4 + - servant-server # tried servant-server-0.19, but its *test-suite* does not support: hspec-discover-2.9.4 - servant-streaming # tried servant-streaming-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - servant-streaming-client # tried servant-streaming-client-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: streaming-bytestring-0.2.1 - - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: warp-3.3.18 - - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: doctest-0.18.2 - - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-2.8.5 - - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-discover-2.8.5 + - servant-streaming-server # tried servant-streaming-server-0.3.0.0, but its *test-suite* does not support: warp-3.3.20 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: doctest-0.20.0 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-2.9.4 + - servant-swagger # tried servant-swagger-1.1.10, but its *test-suite* does not support: hspec-discover-2.9.4 - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: aeson-2.0.3.0 - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: base-compat-0.12.1 - - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: servant-server-0.18.3 - - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: hspec-2.8.5 + - servant-yaml # tried servant-yaml-0.1.0.1, but its *test-suite* does not support: servant-server-0.19 + - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: hspec-2.9.4 - sessiontypes-distributed # tried sessiontypes-distributed-0.1.1, but its *test-suite* does not support: network-transport-tcp-0.8.0 - - sexpr-parser # tried sexpr-parser-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 - - shelly # tried shelly-1.9.0, but its *test-suite* does not support: time-1.11.1.1 - 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.1.1, but its *test-suite* requires the disabled package: hlint - - simple-log # tried simple-log-0.9.12, but its *test-suite* does not support: hspec-2.8.5 + - simple-log # tried simple-log-0.9.12, but its *test-suite* does not support: hspec-2.9.4 - sized-grid # tried sized-grid-0.2.0.1, but its *test-suite* does not support: ansi-terminal-0.11.1 - skews # tried skews-0.1.0.3, but its *test-suite* requires the disabled package: envy + - slist # tried slist-0.2.0.0, but its *test-suite* does not support: hedgehog-1.1.1 - snap # tried snap-1.1.3.1, but its *test-suite* does not support: QuickCheck-2.14.2 - - solana-staking-csvs # tried solana-staking-csvs-0.1.1.0, but its *test-suite* requires the disabled package: hedgehog - - squeather # tried squeather-0.8.0.0, but its *test-suite* requires the disabled package: hedgehog - - stb-image-redux # tried stb-image-redux-0.2.1.2, but its *test-suite* does not support: hspec-2.8.5 - - stm-hamt # tried stm-hamt-1.2.0.7, but its *test-suite* requires the disabled package: rerebase + - stb-image-redux # tried stb-image-redux-0.2.1.2, but its *test-suite* does not support: hspec-2.9.4 - stm-supply # tried stm-supply-0.2.0.0, but its *test-suite* requires the disabled package: Unique - storablevector # tried storablevector-0.2.13.1, but its *test-suite* does not support: bytestring-0.11.1.0 - - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* does not support: hspec-2.8.5 - - strict-list # tried strict-list-0.1.6, but its *test-suite* requires the disabled package: rerebase - - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* does not support: hspec-2.8.5 - - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: HTF-0.14.0.6 + - streaming-cassava # tried streaming-cassava-0.2.0.0, but its *test-suite* does not support: hspec-2.9.4 + - stripe-http-client # tried stripe-http-client-2.6.2, but its *test-suite* does not support: hspec-2.9.4 + - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: HTF-0.15.0.0 - superbuffer # tried superbuffer-0.3.1.1, but its *test-suite* does not support: QuickCheck-2.14.2 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: hedgehog-1.1.1 - sv # tried sv-1.4.0.1, but its *test-suite* does not support: lens-5.1 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: semigroups-0.20 - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-hedgehog-1.1.0.0 + - sv # tried sv-1.4.0.1, but its *test-suite* does not support: tasty-hedgehog-1.2.0.0 - sv-core # tried sv-core-0.5, but its *test-suite* does not support: tasty-1.4.2.1 + - swagger2 # tried swagger2-2.8.2, but its *test-suite* does not support: hspec-2.9.4 + - swagger2 # tried swagger2-2.8.2, but its *test-suite* does not support: hspec-discover-2.9.4 - sydtest-yesod # tried sydtest-yesod-0.3.0.0, but its *test-suite* requires the disabled package: sydtest-persistent-sqlite - system-fileio # tried system-fileio-0.3.16.4, but its *test-suite* requires the disabled package: chell - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell - system-filepath # tried system-filepath-0.4.14, but its *test-suite* requires the disabled package: chell-quickcheck - tar # tried tar-0.5.1.1, but its *test-suite* requires the disabled package: bytestring-handle - - tasty-discover # tried tasty-discover-4.2.2, but its *test-suite* requires the disabled package: hedgehog - temporary-resourcet # tried temporary-resourcet-0.1.0.1, but its *test-suite* does not support: tasty-1.4.2.1 - - termonad # tried termonad-4.2.0.0, but its *test-suite* requires the disabled package: hedgehog - test-framework # tried test-framework-0.8.2.0, but its *test-suite* requires the disabled package: libxml - - th-lego # tried th-lego-0.3, but its *test-suite* requires the disabled package: rerebase - transient # tried transient-0.7.0.0, but its *test-suite* does not support: random-1.2.1 + - type-errors # tried type-errors-0.2.0.0, but its *test-suite* does not support: doctest-0.20.0 + - type-errors-pretty # tried type-errors-pretty-0.0.1.2, but its *test-suite* does not support: doctest-0.20.0 - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: QuickCheck-2.14.2 - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: generic-random-1.5.0.1 - - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* does not support: hspec-2.9.4 - ucam-webauth # tried ucam-webauth-0.1.0.0, but its *test-suite* requires the disabled package: time-qq - - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* does not support: hspec-2.8.5 + - ucam-webauth-types # tried ucam-webauth-types-0.1.0.0, but its *test-suite* does not support: hspec-2.9.4 - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: QuickCheck-2.14.2 - - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: hspec-2.8.5 - - universum # tried universum-1.7.2, but its *test-suite* requires the disabled package: hedgehog - - uri-bytestring # tried uri-bytestring-0.3.3.1, but its *test-suite* requires the disabled package: hedgehog + - uniprot-kb # tried uniprot-kb-0.1.2.0, but its *test-suite* does not support: hspec-2.9.4 + - validation # tried validation-1.1.2, but its *test-suite* does not support: hedgehog-1.1.1 - validation # tried validation-1.1.2, but its *test-suite* does not support: lens-5.1 - - validation-selective # tried validation-selective-0.1.0.1, but its *test-suite* does not support: hspec-2.8.5 - - vector-builder # tried vector-builder-0.3.8.3, but its *test-suite* requires the disabled package: rerebase - - wai-cors # tried wai-cors-0.2.7, but its *test-suite* requires the disabled package: wai-websockets - - wai-cors # tried wai-cors-0.2.7, but its *test-suite* requires the disabled package: warp - - wai-middleware-auth # tried wai-middleware-auth-0.2.5.1, but its *test-suite* requires the disabled package: hedgehog - - wai-middleware-clacks # tried wai-middleware-clacks-0.1.0.1, but its *test-suite* requires the disabled package: tasty-wai - - wai-middleware-delegate # tried wai-middleware-delegate-0.1.2.4, but its *test-suite* requires the disabled package: http-client-tls - - web-routes-th # tried web-routes-th-0.22.6.6, but its *test-suite* does not support: hspec-2.8.5 - - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: hspec-discover-2.8.5 - - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: random-1.2.1 - - web3 # tried web3-0.9.1.0, but its *test-suite* does not support: time-1.11.1.1 - - webex-teams-api # tried webex-teams-api-0.2.0.1, but its *test-suite* requires the disabled package: warp - - webex-teams-conduit # tried webex-teams-conduit-0.2.0.1, but its *test-suite* requires the disabled package: http-conduit - - webex-teams-conduit # tried webex-teams-conduit-0.2.0.1, but its *test-suite* requires the disabled package: warp + - web-routes-th # tried web-routes-th-0.22.6.6, but its *test-suite* does not support: hspec-2.9.4 + - wide-word # tried wide-word-0.1.1.2, but its *test-suite* does not support: hedgehog-1.1.1 - wild-bind-x11 # tried wild-bind-x11-0.2.0.14, but its *test-suite* does not support: time-1.11.1.1 - - with-utf8 # tried with-utf8-1.0.2.3, but its *test-suite* requires the disabled package: hedgehog - wreq # tried wreq-0.5.3.3, but its *test-suite* requires the disabled package: snap-server - wss-client # tried wss-client-0.3.0.0, but its *test-suite* requires the disabled package: envy - - xml-parser # tried xml-parser-0.1.0.1, but its *test-suite* requires the disabled package: rerebase - - xmlhtml # tried xmlhtml-0.2.5.2, but its *test-suite* does not support: hspec-2.8.5 - - yesod-auth-basic # tried yesod-auth-basic-0.1.0.3, but its *test-suite* requires the disabled package: yesod-test + - xmlhtml # tried xmlhtml-0.2.5.2, but its *test-suite* does not support: hspec-2.9.4 - yesod-page-cursor # tried yesod-page-cursor-2.0.0.9, but its *test-suite* requires the disabled package: persistent - yesod-static-angular # tried yesod-static-angular-0.1.8, but its *test-suite* does not support: yesod-test-1.6.12 - - zm # tried zm-0.3.2, but its *test-suite* does not support: doctest-0.18.2 + - yesod-test # tried yesod-test-1.6.12, but its *test-suite* requires the disabled package: yesod-form + - zm # tried zm-0.3.2, but its *test-suite* does not support: doctest-0.20.0 - zm # tried zm-0.3.2, but its *test-suite* does not support: tasty-1.4.2.1 - zm # tried zm-0.3.2, but its *test-suite* does not support: tasty-quickcheck-0.10.2 - zm # tried zm-0.3.2, but its *test-suite* does not support: timeit-2.0 # End of Test bounds issues - # https://github.com/commercialhaskell/stackage/issues/6363 - - amqp + # Failing to build aeson-2.0 bump + - ua-parser # https://github.com/commercialhaskell/stackage/issues/6440 + - vinyl # https://github.com/commercialhaskell/stackage/issues/6444 + # general failures + - aern2-mp # https://github.com/michalkonecny/aern2/issues/11 + - genvalidity-text # https://github.com/NorfairKing/validity/issues/101 # end of skipped-tests # Tests listed in expected-test-failures configure correctly but may fail to run @@ -8643,12 +8301,12 @@ expected-test-failures: # that do not require external dependencies, see # https://github.com/commercialhaskell/stackage/issues/6172#issuecomment-902072030 # - - matplotlib # https://github.com/fpco/stackage/issues/2365 - GLFW-b # X - HTF # Requires shell script and are incompatible with sandboxed package databases - HaRe # Needs ~/.ghc-mod/cabal-helper https://github.com/fpco/stackage/pull/906 - IPv6DB - accelerate-bignum # CUDA GPU + - aeson-combinators # 0.0.5.0 - alex - amqp - aws # AWS Credentials @@ -8708,6 +8366,7 @@ expected-test-failures: - lxd-client # Needs LXD, not available on debian - lz4 # executable not found https://github.com/commercialhaskell/stackage/issues/6226 - mangopay # https://github.com/prowdsponsor/mangopay/issues/30 + - matplotlib # https://github.com/fpco/stackage/issues/2365 - memcached-binary # memcached - milena - mongoDB # Requires local MongoDB server @@ -8747,8 +8406,9 @@ expected-test-failures: - serversession-backend-redis # redis - shake # Needs ghc on $PATH with some installed haskell packages - slack-api # needs api key https://github.com/commercialhaskell/stackage/pull/5345 - - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account - sourcemap # requires npm installed packages + - stripe-http-streams # https://github.com/fpco/stackage/issues/2945, needs Stripe account + - sydtest-wai # epollControl does not exist. Stackage server issue? - users-persistent # sqlite - users-postgresql-simple # PostgreSQL - wai-cors # PhantomJS @@ -8766,13 +8426,12 @@ expected-test-failures: # fixed by adding these files to `extra-source-files` in the # .cabal file. # - - bugsnag-haskell # https://github.com/commercialhaskell/stackage/issues/6372 + - 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 - ghc-events # https://github.com/haskell/ghc-events/issues/70 - gitlab-haskell # https://github.com/commercialhaskell/stackage/issues/6088 - - hspec-core # https://github.com/commercialhaskell/stackage/issues/6291 - hspec-junit-formatter # https://github.com/freckle/hspec-junit-formatter/issues/14 - persistent # https://github.com/commercialhaskell/stackage/issues/6037 - reanimate-svg # https://github.com/commercialhaskell/stackage/issues/5688 @@ -8800,11 +8459,9 @@ expected-test-failures: - debian - dhall-yaml # https://github.com/commercialhaskell/stackage/issues/5640 - dimensional - - doctest-parallel # https://github.com/commercialhaskell/stackage/issues/6380 - download # https://github.com/fpco/stackage/issues/2811 - duration - ede - - error # https://github.com/commercialhaskell/stackage/issues/6300 - exp-pairs # https://github.com/Bodigrim/exp-pairs/issues/16 - fixed-vector-hetero - freckle-app # 1.0.0.4 https://github.com/commercialhaskell/stackage/issues/6197 @@ -8816,6 +8473,7 @@ expected-test-failures: - haskeline # https://github.com/commercialhaskell/stackage/issues/5439 - haskell-src-exts # https://github.com/commercialhaskell/stackage/issues/5151 - haskoin-core + - hgeometry-combinatorial - hpack # https://github.com/commercialhaskell/stackage/issues/4512 - hpack-dhall # https://github.com/BlockScope/hpack-dhall/issues/25 - hspec-golden-aeson @@ -8874,6 +8532,7 @@ expected-test-failures: - xml-picklers # https://github.com/Philonous/xml-picklers/issues/5 - xmlbf - yesod-gitrev # needs a git repo https://github.com/commercialhaskell/stackage/issues/6132 + - yesod-markdown # https://github.com/pbrisbin/yesod-markdown/issues/77 # Assertion failures due to module name ambiguity. # These _should_ be fixed by using the `hide` section of this file @@ -8885,36 +8544,42 @@ expected-test-failures: - butter # 0.1.0.6 - cabal-file-th # 0.2.7 - cacophony # 0.10.1 https://github.com/centromere/cacophony/issues/15 + - conduit-aeson # https://github.com/commercialhaskell/stackage/issues/6469 - conduit-connection # 0.1.0.5 - config-ini # 0.2.4.0 https://github.com/aisamanra/config-ini/issues/22 - construct # 0.3.0.2 - cryptohash # 0.11.9 Stack builds test and benchmarks in one pass so benchmark could prevent tests from getting built - data-diverse # 4.7.0.0 + - deriveJsonNoPrefix # 0.1.0.1 compile fail against aeson 2 - do-notation # 0.1.0.2 - domain-optics # 0.1.0.2 https://github.com/commercialhaskell/stackage/pull/6102 - - easy-logger # https://github.com/commercialhaskell/stackage/issues/6384 - flat # 0.4.4 - flay # 0.4 - functor-combinators # https://github.com/commercialhaskell/stackage/issues/6376 - generic-lens # https://github.com/commercialhaskell/stackage/issues/6377 - - geojson # 4.0.2 + - geojson # 4.1.0 - heap # 1.0.4 https://github.com/pruvisto/heap/issues/11 - hsini # 0.5.1.2 - hweblib # 0.6.3 https://github.com/aycanirican/hweblib/issues/3 + - krank # 0.2.3 compile fail against aeson 2 - leveldb-haskell + - lsp # 1.4.0.0 compile fail against aeson 2 - 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 + - protobuf # 0.2.1.3 - record-wrangler # 0.1.1.0 - relapse # 1.0.0.0 #5948/closed + - safe-json # 1.1.2.0 compile fail against aeson 2 - secp256k1-haskell # #5948/closed - servant-static-th # 1.0.0.0 Tasty issue: https://github.com/commercialhaskell/stackage/issues/6090 - snap-core # 1.0.4.2 random 1.2 - snappy # Could not find module ‘Functions’ - text-icu # 0.7.1.0 https://github.com/bos/text-icu/issues/32 - thread-supervisor # 0.2.0.0 + - twitter-types # 0.11.0 compile fail against aeson 2 - type-of-html-static # 0.1.0.2 https://github.com/commercialhaskell/stackage/issues/5728 + - ua-parser # 0.7.6.0 compile fail against aeson 2 - vivid-supercollider # 0.4.1.2 https://github.com/commercialhaskell/stackage/issues/4250 - xmlgen # 0.6.2.2 https://github.com/skogsbaer/xmlgen/issues/6 @@ -8937,8 +8602,9 @@ expected-test-failures: - detour-via-sci # https://github.com/commercialhaskell/stackage/issues/6360 - dhall - doctest-driver-gen - - envelope # https://github.com/commercialhaskell/stackage/issues/6383 - email-validate + - envelope # https://github.com/commercialhaskell/stackage/issues/6383 + - error - fmt # https://github.com/commercialhaskell/stackage/issues/6375 - greskell - greskell-core @@ -9027,11 +8693,13 @@ expected-benchmark-failures: - aeson-combinators # 0.0.5.0 - cmark-gfm # https://github.com/kivikakk/cmark-gfm-hs/issues/5 - cryptohash # 0.11.9 https://github.com/vincenthz/hs-cryptohash/pull/43 + - fast-builder # 0.1.3.0 compile fail against aeson 2 - incremental-parser # 0.5.0.2 - lz4 # https://github.com/fpco/stackage/issues/3510 - raaz # https://github.com/commercialhaskell/stackage/issues/4766 - serialise # 0.2.4.0 https://github.com/commercialhaskell/stackage/issues/6340 - thyme + - ua-parser # 0.7.6.0 compile fail against aeson 2 - universum - vector-algorithms # 0.8.0.4 - xmlgen # https://github.com/skogsbaer/xmlgen/issues/6 @@ -9046,21 +8714,24 @@ expected-benchmark-failures: # or if Setup fails because of missing foreign libraries. # Otherwise place them in expected-benchmark-failures. skipped-benchmarks: - # aeson-2 - # https://github.com/commercialhaskell/stackage/issues/6217 - - jsonifier - # Cyclic dependencies + - Agda + - aeson + - indexed-traversable-instances + - semialign - attoparsec - case-insensitive - cassava - clock - criterion + - criterion-measurement - foundation - hashable # https://github.com/fpco/stackage/issues/1818 - hspec + - microstache - nanospec - scientific + - statistics - vector-binary-instances # Timeouts @@ -9114,45 +8785,41 @@ skipped-benchmarks: # # Benchmark bounds issues - IntervalMap # tried IntervalMap-0.6.1.2, but its *benchmarks* requires the disabled package: SegmentTree - - acc # tried acc-0.2.0.1, but its *benchmarks* requires the disabled package: rerebase - accelerate-bignum # tried accelerate-bignum-0.3.0.0, but its *benchmarks* requires the disabled package: accelerate-io-vector - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: accelerate-llvm-native-1.3.0.0 - - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: criterion-1.5.12.0 - - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* does not support: criterion-1.5.12.0 - - bitwise-enum # tried bitwise-enum-1.0.1.0, but its *benchmarks* requires the disabled package: wide-word + - accelerate-fourier # tried accelerate-fourier-1.0.0.5, but its *benchmarks* does not support: criterion-1.5.13.0 + - binary-parsers # tried binary-parsers-0.2.4.0, but its *benchmarks* does not support: criterion-1.5.13.0 - buffer-builder # tried buffer-builder-0.2.4.7, but its *benchmarks* requires the disabled package: json-builder - - chronos # tried chronos-1.1.3, but its *benchmarks* requires the disabled package: thyme + - chronos # tried chronos-1.1.4, but its *benchmarks* requires the disabled package: thyme - cipher-aes # tried cipher-aes-0.2.11, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - cipher-camellia # tried cipher-camellia-0.0.2, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - cipher-des # tried cipher-des-0.0.6, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - cipher-rc4 # tried cipher-rc4-0.1.4, but its *benchmarks* requires the disabled package: crypto-cipher-benchmarks - distributed-process # tried distributed-process-0.7.4, but its *benchmarks* does not support: network-transport-tcp-0.8.0 - - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* does not support: criterion-1.5.12.0 + - ed25519 # tried ed25519-0.0.5.0, but its *benchmarks* does not support: criterion-1.5.13.0 - extensible-effects # tried extensible-effects-5.0.0.1, but its *benchmarks* requires the disabled package: test-framework-th - hasbolt # tried hasbolt-0.1.6.1, but its *benchmarks* does not support: bytestring-0.11.1.0 + - hasbolt # tried hasbolt-0.1.6.1, but its *benchmarks* does not support: hspec-2.9.4 - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: aeson-2.0.3.0 - haskell-tools-cli # tried haskell-tools-cli-1.1.1.0, but its *benchmarks* does not support: time-1.11.1.1 - heist # tried heist-1.1.0.1, but its *benchmarks* does not support: statistics-0.16.0.1 - hip # tried hip-1.5.6.0, but its *benchmarks* requires the disabled package: repa-algorithms - - o-clock # tried o-clock-1.2.1, but its *benchmarks* requires the disabled package: tiempo + - o-clock # tried o-clock-1.2.1.1, but its *benchmarks* requires the disabled package: tiempo - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: PSQueue - psqueues # tried psqueues-0.2.7.3, but its *benchmarks* requires the disabled package: fingertree-psqueue - - ptr-poker # tried ptr-poker-0.1.2.4, but its *benchmarks* requires the disabled package: rerebase - random # tried random-1.2.1, but its *benchmarks* does not support: time-1.11.1.1 - - random-bytestring # tried random-bytestring-0.1.4, but its *benchmarks* requires the disabled package: cryptonite - - redis-io # tried redis-io-1.1.0, but its *benchmarks* requires the disabled package: hedis - regex-applicative # tried regex-applicative-0.3.4, but its *benchmarks* requires the disabled package: parsers-megaparsec - rp-tree # tried rp-tree-0.7.1, but its *benchmarks* requires the disabled package: benchpress - - serialise # tried serialise-0.2.4.0, but its *benchmarks* requires the disabled package: store - - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* does not support: criterion-1.5.12.0 - - stm-hamt # tried stm-hamt-1.2.0.7, but its *benchmarks* requires the disabled package: rebase - - superbuffer # tried superbuffer-0.3.1.1, but its *benchmarks* does not support: criterion-1.5.12.0 - - text-builder # tried text-builder-0.6.6.3, but its *benchmarks* requires the disabled package: rerebase + - serialise # tried serialise-0.2.4.0, but its *benchmarks* does not support: semigroups-0.20 + - servant-auth-cookie # tried servant-auth-cookie-0.6.0.3, but its *benchmarks* does not support: criterion-1.5.13.0 + - servant-kotlin # tried servant-kotlin-0.1.1.9, but its *benchmarks* does not support: shelly-1.10.0 + - superbuffer # tried superbuffer-0.3.1.1, but its *benchmarks* does not support: criterion-1.5.13.0 - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: criterion-plus - ttrie # tried ttrie-0.1.2.2, but its *benchmarks* requires the disabled package: stm-stats - - tz # tried tz-0.1.3.5, but its *benchmarks* requires the disabled package: thyme + - tz # tried tz-0.1.3.6, but its *benchmarks* requires the disabled package: thyme - unicode-transforms # tried unicode-transforms-0.4.0, but its *benchmarks* does not support: path-0.9.2 - - xeno # tried xeno-0.4.3, but its *benchmarks* requires the disabled package: bzlib + - unicode-transforms # tried unicode-transforms-0.4.0, but its *benchmarks* does not support: path-io-1.7.0 + - xeno # tried xeno-0.5, but its *benchmarks* requires the disabled package: bzlib - xxhash-ffi # tried xxhash-ffi-0.2.0.0, but its *benchmarks* requires the disabled package: xxhash # End of Benchmark bounds issues @@ -9350,7 +9017,6 @@ hide: # # This only supports pinning to the initial release (revision 0), not to an arbitrary revision. no-revisions: -- hjsonpointer - tls - mime-mail - basement @@ -9364,6 +9030,7 @@ no-revisions: - hi-file-parser +# Note, this no longer actually does anything with curator2 unfortunately: # Do not build these packages in parallel with others. Useful for high memory # usage. non-parallel-builds: diff --git a/commenter b/commenter new file mode 100755 index 00000000..6fde28e9 --- /dev/null +++ b/commenter @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +if ! command -v commenter &> /dev/null +then + echo "commenter is not installed, get it from https://github.com/bergmark/commenter" + exit 1 +fi + +commenter $@ diff --git a/etc/commenter/.gitignore b/etc/commenter/.gitignore deleted file mode 100644 index 72b58cc3..00000000 --- a/etc/commenter/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/target -/comments.txt -/out.txt diff --git a/etc/commenter/Cargo.lock b/etc/commenter/Cargo.lock deleted file mode 100644 index 85dbdfe9..00000000 --- a/etc/commenter/Cargo.lock +++ /dev/null @@ -1,365 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "aho-corasick" -version = "0.7.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" -dependencies = [ - "memchr", -] - -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi", -] - -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi", - "libc", - "winapi", -] - -[[package]] -name = "autocfg" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "clap" -version = "2.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" -dependencies = [ - "ansi_term", - "atty", - "bitflags", - "strsim", - "textwrap", - "unicode-width", - "vec_map", -] - -[[package]] -name = "commenter" -version = "0.2.0" -dependencies = [ - "lazy-regex", - "regex", - "serde", - "serde_yaml", - "structopt", -] - -[[package]] -name = "hashbrown" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" - -[[package]] -name = "heck" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" -dependencies = [ - "unicode-segmentation", -] - -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - -[[package]] -name = "indexmap" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" -dependencies = [ - "autocfg", - "hashbrown", -] - -[[package]] -name = "lazy-regex" -version = "2.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919a16773ebf2de27e95fc58460110932e55bb0780e23aa51fa5a6b59c9e2b3d" -dependencies = [ - "lazy-regex-proc_macros", - "once_cell", - "regex", -] - -[[package]] -name = "lazy-regex-proc_macros" -version = "2.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fbe6bf0a04af51c07976625d5007e75ed9b8b955befc21c77b3947733496e36" -dependencies = [ - "proc-macro2", - "quote", - "regex", - "syn", -] - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - -[[package]] -name = "libc" -version = "0.2.112" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" - -[[package]] -name = "linked-hash-map" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" - -[[package]] -name = "memchr" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" - -[[package]] -name = "once_cell" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5" - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] -name = "proc-macro2" -version = "1.0.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" -dependencies = [ - "unicode-xid", -] - -[[package]] -name = "quote" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "regex" -version = "1.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax", -] - -[[package]] -name = "regex-syntax" -version = "0.6.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" - -[[package]] -name = "ryu" -version = "1.0.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" - -[[package]] -name = "serde" -version = "1.0.133" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.133" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_yaml" -version = "0.8.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0" -dependencies = [ - "indexmap", - "ryu", - "serde", - "yaml-rust", -] - -[[package]] -name = "strsim" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" - -[[package]] -name = "structopt" -version = "0.3.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c" -dependencies = [ - "clap", - "lazy_static", - "structopt-derive", -] - -[[package]] -name = "structopt-derive" -version = "0.4.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" -dependencies = [ - "heck", - "proc-macro-error", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "syn" -version = "1.0.85" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a684ac3dcd8913827e18cd09a68384ee66c1de24157e3c556c9ab16d85695fb7" -dependencies = [ - "proc-macro2", - "quote", - "unicode-xid", -] - -[[package]] -name = "textwrap" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -dependencies = [ - "unicode-width", -] - -[[package]] -name = "unicode-segmentation" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" - -[[package]] -name = "unicode-width" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" - -[[package]] -name = "unicode-xid" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" - -[[package]] -name = "vec_map" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" - -[[package]] -name = "version_check" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "yaml-rust" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" -dependencies = [ - "linked-hash-map", -] diff --git a/etc/commenter/Cargo.toml b/etc/commenter/Cargo.toml deleted file mode 100644 index 4c57ad43..00000000 --- a/etc/commenter/Cargo.toml +++ /dev/null @@ -1,14 +0,0 @@ -[package] -name = "commenter" -version = "0.2.0" -authors = ["Adam Bergmark "] -edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -lazy-regex = "2.2.1" -regex = "1.5.4" -serde = { version = "1.0.133", features = ["derive"] } -serde_yaml = "0.8.23" -structopt = "0.3.25" diff --git a/etc/commenter/README.md b/etc/commenter/README.md deleted file mode 100644 index 29b7ed7e..00000000 --- a/etc/commenter/README.md +++ /dev/null @@ -1,3 +0,0 @@ -Helps automate mass-disabling of packages in Stackage's build-constraint.yaml. - -See CURATORS.md for usage instructions. diff --git a/etc/commenter/commenter b/etc/commenter/commenter deleted file mode 100755 index 2380d69d..00000000 --- a/etc/commenter/commenter +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cargo run -- $@ diff --git a/etc/commenter/latest-version/LICENSE b/etc/commenter/latest-version/LICENSE deleted file mode 100644 index 89f25d28..00000000 --- a/etc/commenter/latest-version/LICENSE +++ /dev/null @@ -1,30 +0,0 @@ -Copyright Adam Bergmark (c) 2021 - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - * Neither the name of Author name here nor the names of other - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/etc/commenter/latest-version/README.md b/etc/commenter/latest-version/README.md deleted file mode 100644 index d4dbf071..00000000 --- a/etc/commenter/latest-version/README.md +++ /dev/null @@ -1 +0,0 @@ -# latest-version diff --git a/etc/commenter/latest-version/Setup.hs b/etc/commenter/latest-version/Setup.hs deleted file mode 100644 index 9a994af6..00000000 --- a/etc/commenter/latest-version/Setup.hs +++ /dev/null @@ -1,2 +0,0 @@ -import Distribution.Simple -main = defaultMain diff --git a/etc/commenter/latest-version/cabal.project b/etc/commenter/latest-version/cabal.project deleted file mode 100644 index d5d2dcf1..00000000 --- a/etc/commenter/latest-version/cabal.project +++ /dev/null @@ -1,6 +0,0 @@ -source-repository-package - type: git - location: git://github.com/commercialhaskell/pantry.git - -packages: ./latest-version.cabal -with-compiler: ghc-8.10.7 diff --git a/etc/commenter/latest-version/latest-version.cabal b/etc/commenter/latest-version/latest-version.cabal deleted file mode 100644 index c5144cae..00000000 --- a/etc/commenter/latest-version/latest-version.cabal +++ /dev/null @@ -1,23 +0,0 @@ -name: latest-version -version: 0.1.0.0 -homepage: https://github.com/githubuser/latest-version#readme -license: BSD3 -license-file: LICENSE -author: Adam Bergmark -maintainer: adam@bergmark.nl -copyright: 2021 Adam Bergmark -category: Web -build-type: Simple -cabal-version: >=1.10 -extra-source-files: README.md - -executable latest-version - ghc-options: -Wall - hs-source-dirs: src - main-is: Main.hs - default-language: Haskell2010 - build-depends: base >= 4.7 && < 5 - , pantry - , Cabal - , rio - , containers diff --git a/etc/commenter/latest-version/src/Main.hs b/etc/commenter/latest-version/src/Main.hs deleted file mode 100644 index 47535f20..00000000 --- a/etc/commenter/latest-version/src/Main.hs +++ /dev/null @@ -1,18 +0,0 @@ -module Main where - -import Data.List -import Distribution.Types.PackageName -import Distribution.Types.Version -import Pantry -import RIO -import System.Environment -import qualified Data.Map as Map - -main :: IO () -main = - runPantryApp $ - liftIO . putStrLn - . intercalate "." . map show . versionNumbers - . fst . head . Map.toDescList - =<< getHackagePackageVersions YesRequireHackageIndex IgnorePreferredVersions - . mkPackageName =<< head <$> liftIO getArgs diff --git a/etc/commenter/latest-version/stack.yaml b/etc/commenter/latest-version/stack.yaml deleted file mode 100644 index ef03d7c0..00000000 --- a/etc/commenter/latest-version/stack.yaml +++ /dev/null @@ -1,4 +0,0 @@ -resolver: - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/18.yaml -packages: -- . diff --git a/etc/commenter/src/lib.rs b/etc/commenter/src/lib.rs deleted file mode 100644 index 1d02896c..00000000 --- a/etc/commenter/src/lib.rs +++ /dev/null @@ -1,418 +0,0 @@ -use std::collections::{BTreeMap, BTreeSet}; -use std::error::Error; -use std::fmt; -use std::fs::File; -use std::io::{BufRead, BufReader, LineWriter, Lines, Write}; -use std::path::Path; -use std::process::Command; - -use lazy_regex::regex; -use serde::{Deserialize, Deserializer}; - -pub fn clear() { - handle(true, |loc, _lines| match loc { - // Add empty array to keep yaml valid - Location::Lib => vec![" []".to_owned()], - Location::Test | Location::Bench => vec![], - }); -} - -pub fn add(lib: Vec, test: Vec, bench: Vec) { - handle(true, |loc, mut lines| { - lines.extend(match loc { - Location::Lib => lib.clone(), - Location::Test => test.clone(), - Location::Bench => bench.clone(), - }); - lines.sort(); - lines - }); -} - -enum VersionTag { - Manual(String), - Auto(String), -} - -impl VersionTag { - fn tag(&self) -> &'static str { - match self { - VersionTag::Manual(_) => "manual", - VersionTag::Auto(_) => "auto", - } - } - - fn version(&self) -> &str { - match self { - VersionTag::Manual(s) => s, - VersionTag::Auto(s) => s, - } - } -} - -pub fn outdated() { - let mut all: Vec = vec![]; - let versioned = handle(false, |_loc, lines| { - all.extend(lines); - vec![] - }); - let mut map: BTreeMap = BTreeMap::new(); - for VersionedPackage { package, version } in versioned { - map.insert(package, VersionTag::Manual(version)); - } - let mut support: BTreeMap<(String, String), BTreeSet<(String, String)>> = BTreeMap::new(); - for v in all.into_iter() { - let caps = regex!("tried ([^ ]+)-([^,-]+),").captures(&v).unwrap(); - let package = caps.get(1).unwrap().as_str().to_owned(); - let version = caps.get(2).unwrap().as_str().to_owned(); - map.insert(package.clone(), VersionTag::Auto(version.clone())); - - if let Some(caps) = regex!("does not support: ([^ ]+)-([^-]+)").captures(&v) { - let dep_package = caps.get(1).unwrap().as_str().to_owned(); - let dep_version = caps.get(2).unwrap().as_str().to_owned(); - let entry = support.entry((dep_package, dep_version)).or_default(); - entry.insert((package, version)); - } - } - - let entries = map.len() + support.len(); - let mut i = 0; - - for (package, version) in map { - if is_boot(&package) { - continue; - } - if i % 100 == 0 { - println!("{:02}%", ((i as f64 / entries as f64) * 100.0).floor()); - } - i += 1; - let latest = latest_version(&package); - if version.version() != latest { - println!( - "{package} mismatch, {tag}: {version}, hackage: {latest}", - tag = version.tag(), - version = version.version(), - ); - } - } - - for ((package, version), dependents) in support { - if is_boot(&package) { - continue; - } - - if i % 100 == 0 { - println!("{:02}%", ((i as f64 / entries as f64) * 100.0).floor()); - } - i += 1; - let latest = latest_version(&package); - if version != latest { - let max = 3; - let dependents_stripped = dependents.len().saturating_sub(max); - let dependents = dependents - .into_iter() - .take(max) - .map(|(p, v)| format!("{p}-{v}")) - .collect::>() - .join(", "); - let dependents = if dependents_stripped > 0 { - format!("{dependents} and {dependents_stripped} more") - } else { - dependents - }; - - println!( - "{package} mismatch, snapshot: {version}, hackage: {latest}, dependents: {dependents}" - ); - } - } -} - -fn is_boot(package: &str) -> bool { - [ - "Cabal", - "base", - "bytestring", - "containers", - "containers", - "directory", - "filepath", - "deepseq", - "ghc", - "ghc-bignum", - "ghc-boot", - "ghc-boot-th", - "ghc-prim", - "ghc-lib-parser", // not a boot lib, but tied to the GHC version. - "integer-gmp", - "process", - "stm", - "template-haskell", - "text", - "time", - ] - .contains(&package) -} - -fn latest_version(pkg: &str) -> String { - String::from_utf8( - Command::new("latest-version") - .args([pkg]) - .output() - .unwrap() - .stdout, - ) - .unwrap() - .trim() - .to_owned() -} - -enum State { - LookingForLibBounds, - ProcessingLibBounds, - LookingForTestBounds, - ProcessingTestBounds, - LookingForBenchBounds, - ProcessingBenchBounds, - Done, -} - -struct VersionedPackage { - package: String, - version: String, -} - -fn parse_versioned_package(s: &str) -> Option { - if let Some(caps) = regex!(r#"- *([^ ]+) < *0 *# *([\d.]+)"#).captures(s) { - let package = caps.get(1).unwrap().as_str().to_owned(); - let version = caps.get(2).unwrap().as_str().to_owned(); - Some(VersionedPackage { package, version }) - } else if let Some(caps) = regex!(r#"- *([^ ]+) *# *([\d.]+)"#).captures(s) { - let package = caps.get(1).unwrap().as_str().to_owned(); - let version = caps.get(2).unwrap().as_str().to_owned(); - Some(VersionedPackage { package, version }) - } else { - None - } -} - -fn handle(write: bool, mut f: F) -> Vec -where - F: FnMut(Location, Vec) -> Vec, -{ - let path = "build-constraints.yaml"; - let mut new_lines: Vec = vec![]; - let mut versioned_packages: Vec = vec![]; - - let mut state = State::LookingForLibBounds; - let mut buf = vec![]; - for line in read_lines(path).map(|s| s.unwrap()) { - if let Some(versioned_package) = parse_versioned_package(&line) { - versioned_packages.push(versioned_package); - } - - match state { - State::LookingForLibBounds => { - if line == r#" "Library and exe bounds failures":"# { - state = State::ProcessingLibBounds; - } - new_lines.push(line); - } - State::ProcessingLibBounds => { - if line == r#" # End of Library and exe bounds failures"# { - new_lines.extend(f(Location::Lib, buf).into_iter()); - buf = vec![]; - new_lines.push(line); - state = State::LookingForTestBounds; - } else { - // Remove empty section - if line != " []" { - buf.push(line); - } - } - } - State::LookingForTestBounds => { - if line == r#" # Test bounds issues"# { - state = State::ProcessingTestBounds; - } - new_lines.push(line); - } - State::ProcessingTestBounds => { - if line == r#" # End of Test bounds issues"# { - new_lines.extend(f(Location::Test, buf).into_iter()); - buf = vec![]; - new_lines.push(line); - state = State::LookingForBenchBounds; - } else { - buf.push(line); - } - } - State::LookingForBenchBounds => { - if line == r#" # Benchmark bounds issues"# { - state = State::ProcessingBenchBounds; - } - new_lines.push(line); - } - State::ProcessingBenchBounds => { - if line == r#" # End of Benchmark bounds issues"# { - new_lines.extend(f(Location::Bench, buf).into_iter()); - buf = vec![]; - new_lines.push(line); - state = State::Done; - } else { - buf.push(line); - } - } - State::Done => { - new_lines.push(line); - } - } - } - - if write { - let file = File::create(path).unwrap(); - let mut file = LineWriter::new(file); - - for line in new_lines { - file.write_all((line + "\n").as_bytes()).unwrap(); - } - file.flush().unwrap(); - } - - versioned_packages -} - -enum Location { - Lib, - Test, - Bench, -} - -fn read_lines

(filename: P) -> Lines> -where - P: AsRef, -{ - let file = File::open(filename).unwrap(); - BufReader::new(file).lines() -} - -#[derive(Deserialize)] -struct SnapshotYaml { - // flags: BTreeMap>, - // publish_time - packages: Vec, - // hidden - // resolver -} - -#[derive(Deserialize)] -struct SnapshotPackage { - hackage: PackageWithVersionAndSha, - // pantry-tree -} - -#[derive(PartialOrd, Ord, PartialEq, Eq, Clone)] -struct PackageName(String); - -impl fmt::Display for PackageName { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - self.0.fmt(f) - } -} - -#[derive(Clone, PartialOrd, Ord, PartialEq, Eq)] -struct Version(String); - -impl fmt::Display for Version { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - self.0.fmt(f) - } -} - -// zstd-0.1.3.0@sha256:4c0a372251068eb6086b8c3a0a9f347488f08b570a7705844ffeb2c720c97223,3723 -struct PackageWithVersionAndSha { - name: PackageName, - version: Version, -} - -impl<'de> serde::Deserialize<'de> for PackageWithVersionAndSha { - fn deserialize(deserializer: D) -> Result - where - D: Deserializer<'de>, - { - let s: String = String::deserialize(deserializer)?; - let r = regex!(r#"^(.+?)-([.\d]+)@sha256:[\da-z]+,\d+$"#); - if let Some(caps) = r.captures(&s) { - let name = PackageName(caps.get(1).unwrap().as_str().to_owned()); - let version = Version(caps.get(2).unwrap().as_str().to_owned()); - Ok(Self { name, version }) - } else { - Err(serde::de::Error::invalid_value( - serde::de::Unexpected::Other(&s), - &"Invalid PackageVersionWithSha", - )) - } - } -} - -fn yaml_from_file>(path: P) -> Result> -where - A: for<'de> Deserialize<'de>, -{ - let file = File::open(path)?; - let reader = BufReader::new(file); - let u = serde_yaml::from_reader(reader)?; - Ok(u) -} - -struct Snapshot { - packages: BTreeMap>, -} - -#[derive(Clone, Copy)] -enum Diff { - Left(A), - Right(A), - Both(A, A), -} - -fn to_diff(a: SnapshotYaml, b: SnapshotYaml) -> Snapshot { - let mut packages = BTreeMap::new(); - for s in a.packages { - let package = s.hackage; - packages.insert(package.name, Diff::Left(package.version)); - } - for s in b.packages { - let package = s.hackage; - let name = package.name; - let version = package.version; - if let Some(a) = packages.remove(&name) { - match a { - Diff::Left(a) => { - if a == version { - packages.remove(&name); - } else { - packages.insert(name, Diff::Both(a, version)); - } - } - _ => unreachable!(), - } - } else { - packages.insert(name, Diff::Right(version)); - } - } - - Snapshot { packages } -} - -pub fn diff_snapshot(a: String, b: String) { - let diff = to_diff(yaml_from_file(a).unwrap(), yaml_from_file(b).unwrap()); - for (name, diff) in diff.packages { - let s = match diff { - Diff::Left(a) => format!("- {name}-{a}"), - Diff::Right(b) => format!("+ {name}-{b}"), - Diff::Both(a, b) => format!("~ {name}-{a} -> {b}"), - }; - println!("{s}"); - } -} diff --git a/etc/commenter/src/main.rs b/etc/commenter/src/main.rs deleted file mode 100644 index 25db2bbf..00000000 --- a/etc/commenter/src/main.rs +++ /dev/null @@ -1,169 +0,0 @@ -use std::collections::HashMap; -use std::io::{self, BufRead}; - -use lazy_regex::regex; -use regex::Regex; -use structopt::StructOpt; - -type H = HashMap>; - -#[derive(Debug, Clone, PartialEq, Eq, Hash)] -enum Header { - Versioned { package: String, version: String }, - Missing { package: String }, -} - -#[derive(Debug, StructOpt)] -#[structopt( - name = "commenter", - about = "Automates generation of bounds in build-constraints.yaml" -)] -enum Opt { - Clear, - Add, - Outdated, - DiffSnapshot { a: String, b: String }, -} - -fn main() { - let opt = Opt::from_args(); - match opt { - Opt::Clear => commenter::clear(), - Opt::Add => add(), - Opt::Outdated => commenter::outdated(), - Opt::DiffSnapshot { a, b } => commenter::diff_snapshot(a, b), - } -} - -fn add() { - let mut lib_exes: H = Default::default(); - let mut tests: H = Default::default(); - let mut benches: H = Default::default(); - let mut last_header: Option

= None; - - let header_versioned = regex!( - r#"^(?P[a-zA-z]([a-zA-z0-9.-]*?))-(?P(\d+(\.\d+)*)).+?is out of bounds for:$"# - ); - let header_missing = regex!(r#"^(?P[a-zA-z]([a-zA-z0-9.-]*)).+?depended on by:$"#); - let package = regex!( - r#"^- \[ \] (?P[a-zA-z]([a-zA-z0-9.-]*?))-(?P(\d+(\.\d+)*)).+?Used by: (?P.+)$"# - ); - - // Ignore everything until the bounds issues show up. - let mut process_line = false; - - for line in io::stdin().lock().lines().flatten() { - if is_reg_match(&line, regex!(r#"^\s*$"#)) { - // noop - } else if line == "curator: Snapshot dependency graph contains errors:" { - process_line = true; - } else if !process_line { - println!("[INFO] {line}"); - } else if let Some(cap) = package.captures(&line) { - let root = last_header.clone().unwrap(); - let package = cap.name("package").unwrap().as_str(); - let version = cap.name("version").unwrap().as_str(); - let component = cap.name("component").unwrap().as_str(); - match component { - "library" | "executable" => { - insert(&mut lib_exes, root, package, version, component) - } - "benchmark" => insert(&mut benches, root, package, version, "benchmarks"), - "test-suite" => insert(&mut tests, root, package, version, component), - _ => panic!("Bad component: {}", component), - } - } else if let Some(cap) = header_versioned.captures(&line) { - let package = cap.name("package").unwrap().as_str().to_owned(); - let version = cap.name("version").unwrap().as_str().to_owned(); - last_header = Some(Header::Versioned { package, version }); - } else if let Some(cap) = header_missing.captures(&line) { - let package = cap.name("package").unwrap().as_str().to_owned(); - last_header = Some(Header::Missing { package }); - } else { - panic!("Unhandled: {:?}", line); - } - } - - let mut auto_lib_exes = vec![]; - let mut auto_tests = vec![]; - let mut auto_benches = vec![]; - - if !lib_exes.is_empty() { - println!("\nLIBS + EXES\n"); - } - for (header, packages) in lib_exes { - for (package, version, component) in packages { - let s = printer(" ", &package, true, &version, &component, &header); - println!("{s}"); - auto_lib_exes.push(s); - } - } - - if !tests.is_empty() { - println!("\nTESTS\n"); - } - for (header, packages) in tests { - for (package, version, component) in packages { - let s = printer(" ", &package, false, &version, &component, &header); - println!("{s}"); - auto_tests.push(s); - } - } - - if !benches.is_empty() { - println!("\nBENCHMARKS\n"); - } - for (header, packages) in benches { - for (package, version, component) in packages { - let s = printer(" ", &package, false, &version, &component, &header); - println!("{s}"); - auto_benches.push(s); - } - } - - println!(); - println!( - "Adding {lib_exes} libs, {tests} tests, {benches} benches to build-constraints.yaml", - lib_exes = auto_lib_exes.len(), - tests = auto_tests.len(), - benches = auto_benches.len() - ); - commenter::add(auto_lib_exes, auto_tests, auto_benches); -} - -fn printer( - indent: &str, - package: &str, - lt0: bool, - version: &str, - component: &str, - header: &Header, -) -> String { - let lt0 = if lt0 { " < 0" } else { "" }; - format!( - "{indent}- {package}{lt0} # tried {package}-{version}, but its *{component}* {cause}", - cause = match header { - Header::Versioned { package, version } => format!( - "does not support: {package}-{version}", - package = package, - version = version - ), - Header::Missing { package } => format!( - "requires the disabled package: {package}", - package = package - ), - }, - ) -} - -fn insert(h: &mut H, header: Header, package: &str, version: &str, component: &str) { - (*h.entry(header).or_insert_with(Vec::new)).push(( - package.to_owned(), - version.to_owned(), - component.to_owned(), - )); -} - -fn is_reg_match(s: &str, r: &Regex) -> bool { - r.captures(s).is_some() -}