From fc48952fec425e85320a2dbcd903faaf88757f4f Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Tue, 28 Mar 2023 07:02:09 -0400 Subject: [PATCH] CI: Test GHC 9.4.4 and 9.2.7, drop 9.0.2 --- .github/workflows/crucible-go-build.yml | 14 +- .github/workflows/crucible-jvm-build.yml | 14 +- .github/workflows/crucible-wasm-build.yml | 14 +- .github/workflows/crux-llvm-build.yml | 19 +- .github/workflows/crux-mir-build.yml | 9 +- cabal.GHC-9.2.2.config | 295 ------------------ cabal.GHC-9.2.3.config | 294 ----------------- ...GHC-9.2.4.config => cabal.GHC-9.2.7.config | 40 +-- ...GHC-9.0.2.config => cabal.GHC-9.4.4.config | 72 ++--- crux-llvm/README.md | 4 +- crux-mir/README.md | 2 +- 11 files changed, 106 insertions(+), 671 deletions(-) delete mode 100644 cabal.GHC-9.2.2.config delete mode 100644 cabal.GHC-9.2.3.config rename cabal.GHC-9.2.4.config => cabal.GHC-9.2.7.config (93%) rename cabal.GHC-9.0.2.config => cabal.GHC-9.4.4.config (89%) diff --git a/.github/workflows/crucible-go-build.yml b/.github/workflows/crucible-go-build.yml index 784a30a13..4b7f835ed 100644 --- a/.github/workflows/crucible-go-build.yml +++ b/.github/workflows/crucible-go-build.yml @@ -27,12 +27,15 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + cabal: ["3.8.1.0"] + ghc: ["8.10.7", "9.2.7", "9.4.4"] include: - os: macos-12 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 - os: windows-2019 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 name: crucible-go - GHC v${{ matrix.ghc }} - ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -43,6 +46,7 @@ jobs: id: setup-haskell with: ghc-version: ${{ matrix.ghc }} + cabal-version: ${{ matrix.cabal }} - name: Post-GHC installation fixups on Windows shell: bash @@ -82,8 +86,8 @@ jobs: run: | GHC=haskell.compiler.ghc$(echo ${{ matrix.ghc }} | sed -e s,\\.,,g) case ${{ matrix.ghc }} in - 9.0.2) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-22.05 ;; - 9.2.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.2.7) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.4.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; *) GHC_NIXPKGS=github:nixos/nixpkgs/21.11 ;; esac echo NS="nix shell ${GHC_NIXPKGS}#cabal-install ${GHC_NIXPKGS}#${GHC} nixpkgs#gmp nixpkgs#zlib nixpkgs#zlib.dev" >> $GITHUB_ENV diff --git a/.github/workflows/crucible-jvm-build.yml b/.github/workflows/crucible-jvm-build.yml index fabd974a6..96b560102 100644 --- a/.github/workflows/crucible-jvm-build.yml +++ b/.github/workflows/crucible-jvm-build.yml @@ -27,12 +27,15 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + cabal: ["3.8.1.0"] + ghc: ["8.10.7", "9.2.7", "9.4.4"] include: - os: macos-12 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 - os: windows-2019 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 name: crucible-jvm - GHC v${{ matrix.ghc }} - ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -43,6 +46,7 @@ jobs: id: setup-haskell with: ghc-version: ${{ matrix.ghc }} + cabal-version: ${{ matrix.cabal }} - name: Post-GHC installation fixups on Windows shell: bash @@ -82,8 +86,8 @@ jobs: run: | GHC=haskell.compiler.ghc$(echo ${{ matrix.ghc }} | sed -e s,\\.,,g) case ${{ matrix.ghc }} in - 9.0.2) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-22.05 ;; - 9.2.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.2.7) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.4.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; *) GHC_NIXPKGS=github:nixos/nixpkgs/21.11 ;; esac echo NS="nix shell ${GHC_NIXPKGS}#cabal-install ${GHC_NIXPKGS}#${GHC} nixpkgs#gmp nixpkgs#zlib nixpkgs#zlib.dev" >> $GITHUB_ENV diff --git a/.github/workflows/crucible-wasm-build.yml b/.github/workflows/crucible-wasm-build.yml index e907b0847..9c9b2a7c0 100644 --- a/.github/workflows/crucible-wasm-build.yml +++ b/.github/workflows/crucible-wasm-build.yml @@ -27,12 +27,15 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + cabal: ["3.8.1.0"] + ghc: ["8.10.7", "9.2.7", "9.4.4"] include: - os: macos-12 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 - os: windows-2019 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 name: crucible-wasm - GHC v${{ matrix.ghc }} - ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -43,6 +46,7 @@ jobs: id: setup-haskell with: ghc-version: ${{ matrix.ghc }} + cabal-version: ${{ matrix.cabal }} - name: Post-GHC installation fixups on Windows shell: bash @@ -82,8 +86,8 @@ jobs: run: | GHC=haskell.compiler.ghc$(echo ${{ matrix.ghc }} | sed -e s,\\.,,g) case ${{ matrix.ghc }} in - 9.0.2) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-22.05 ;; - 9.2.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.2.7) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.4.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; *) GHC_NIXPKGS=github:nixos/nixpkgs/21.11 ;; esac echo NS="nix shell ${GHC_NIXPKGS}#cabal-install ${GHC_NIXPKGS}#${GHC} nixpkgs#gmp nixpkgs#zlib nixpkgs#zlib.dev" >> $GITHUB_ENV diff --git a/.github/workflows/crux-llvm-build.yml b/.github/workflows/crux-llvm-build.yml index e1c19ea7e..632431ae4 100644 --- a/.github/workflows/crux-llvm-build.yml +++ b/.github/workflows/crux-llvm-build.yml @@ -44,16 +44,21 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + cabal: ["3.8.1.0"] + ghc: ["8.10.7", "9.2.7", "9.4.4"] include: - os: ubuntu-22.04 + cabal: 3.8.1.0 ghc: 8.8.4 - os: ubuntu-20.04 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.4.4 - os: macos-12 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.2.7 - os: windows-2019 - ghc: 9.2.4 + cabal: 3.8.1.0 + ghc: 9.2.7 name: crux-llvm - GHC v${{ matrix.ghc }} - ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -64,6 +69,7 @@ jobs: id: setup-haskell with: ghc-version: ${{ matrix.ghc }} + cabal-version: ${{ matrix.cabal }} - name: Post-GHC installation fixups on Windows shell: bash @@ -103,9 +109,8 @@ jobs: run: | GHC=haskell.compiler.ghc$(echo ${{ matrix.ghc }} | sed -e s,\\.,,g) case ${{ matrix.ghc }} in - 9.0.2) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-22.05 ;; - 9.2.2) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-22.05 ;; - 9.2.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.2.7) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.4.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; *) GHC_NIXPKGS=github:nixos/nixpkgs/21.11 ;; esac echo NS="nix shell ${GHC_NIXPKGS}#cabal-install ${GHC_NIXPKGS}#${GHC} nixpkgs#gmp nixpkgs#zlib nixpkgs#zlib.dev" >> $GITHUB_ENV diff --git a/.github/workflows/crux-mir-build.yml b/.github/workflows/crux-mir-build.yml index 61d5a869c..ccb50f1b9 100644 --- a/.github/workflows/crux-mir-build.yml +++ b/.github/workflows/crux-mir-build.yml @@ -43,12 +43,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + cabal: ["3.8.1.0"] + ghc: ["8.10.7", "9.2.7", "9.4.4"] # include: # Disable the macOS build for now due to # https://github.com/GaloisInc/crucible/issues/1050 # # - os: macos-12 + # cabal: 3.8.1.0 # ghc: 9.2.4 # We want Windows soon, but it doesn't need to be now @@ -62,6 +64,7 @@ jobs: id: setup-haskell with: ghc-version: ${{ matrix.ghc }} + cabal-version: ${{ matrix.cabal }} - name: Post-GHC installation fixups on Windows shell: bash @@ -108,8 +111,8 @@ jobs: run: | GHC=haskell.compiler.ghc$(echo ${{ matrix.ghc }} | sed -e s,\\.,,g) case ${{ matrix.ghc }} in - 9.0.2) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-22.05 ;; - 9.2.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.2.7) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; + 9.4.4) GHC_NIXPKGS=github:nixos/nixpkgs/nixos-unstable ;; *) GHC_NIXPKGS=github:nixos/nixpkgs/21.11 ;; esac echo NS="nix shell ${GHC_NIXPKGS}#cabal-install ${GHC_NIXPKGS}#${GHC} nixpkgs#gmp nixpkgs#zlib nixpkgs#zlib.dev" >> $GITHUB_ENV diff --git a/cabal.GHC-9.2.2.config b/cabal.GHC-9.2.2.config deleted file mode 100644 index f87badcbc..000000000 --- a/cabal.GHC-9.2.2.config +++ /dev/null @@ -1,295 +0,0 @@ -active-repositories: hackage.haskell.org:merge -constraints: any.Cabal ==3.6.3.0, - any.Glob ==0.10.2, - any.GraphSCC ==1.0.4, - GraphSCC -use-maps, - any.HUnit ==1.6.2.0, - any.IntervalMap ==0.6.1.2, - any.OneTuple ==0.3.1, - any.QuickCheck ==2.14.2, - QuickCheck -old-random +templatehaskell, - any.SHA ==1.6.4.4, - SHA -exe, - any.StateVar ==1.2.2, - any.adjunctions ==4.4, - any.aeson ==2.0.3.0, - aeson -cffi +ordered-keymap, - any.aeson-typescript ==0.4.0.0, - any.alex ==3.2.7.1, - any.ansi-terminal ==0.11.1, - ansi-terminal -example, - any.ansi-wl-pprint ==0.6.9, - ansi-wl-pprint -example, - any.array ==0.5.4.0, - any.assoc ==1.0.2, - any.async ==2.2.4, - async -bench, - any.atomic-primops ==0.8.4, - atomic-primops -debug, - any.attoparsec ==0.14.4, - attoparsec -developer, - any.barbies ==2.0.3.1, - any.base ==4.16.1.0, - any.base-compat ==0.12.1, - any.base-compat-batteries ==0.12.1, - any.base-orphans ==0.8.6, - any.base16-bytestring ==1.0.2.0, - any.base64-bytestring ==1.2.1.0, - any.bifunctors ==5.5.11, - bifunctors +semigroups +tagged, - any.bimap ==0.4.0, - any.binary ==0.8.9.0, - any.bitwise ==1.0.0.1, - any.boomerang ==1.4.8, - any.bv-sized ==1.0.4, - any.bytestring ==0.11.3.0, - any.bytestring-builder ==0.10.8.2.0, - bytestring-builder +bytestring_has_builder, - any.call-stack ==0.4.0, - any.case-insensitive ==1.2.1.0, - any.cereal ==0.5.8.2, - cereal -bytestring-builder, - any.clock ==0.8.3, - clock -llvm, - any.colour ==2.3.6, - any.comonad ==5.0.8, - comonad +containers +distributive +indexed-traversable, - any.concurrent-extra ==0.7.0.12, - any.concurrent-output ==1.10.15, - any.conduit ==1.3.4.2, - any.config-schema ==1.2.2.0, - any.config-value ==0.8.2.1, - any.constraints ==0.13.3, - any.containers ==0.6.5.1, - any.contravariant ==1.5.5, - contravariant +semigroups +statevar +tagged, - crucible +unsafe-operations, - any.cryptohash-sha1 ==0.11.101.0, - any.cryptohash-sha256 ==0.11.102.1, - cryptohash-sha256 -exe +use-cbits, - any.data-binary-ieee754 ==0.4.4, - any.data-default-class ==0.1.2.0, - any.data-fix ==0.3.2, - any.deepseq ==1.4.6.1, - any.deriving-compat ==0.6, - deriving-compat +base-4-9 +new-functor-classes +template-haskell-2-11, - any.directory ==1.3.6.2, - any.distributive ==0.6.2.1, - distributive +semigroups +tagged, - any.dlist ==1.0, - dlist -werror, - any.dotgen ==0.4.3, - dotgen -devel, - any.entropy ==0.4.1.7, - entropy -halvm, - any.erf ==2.0.0.0, - any.errors ==2.3.0, - any.exceptions ==0.10.4, - any.executable-path ==0.0.3.1, - any.extra ==1.7.10, - any.fgl ==5.7.0.3, - fgl +containers042, - any.fgl-visualize ==0.1.0.1, - any.filemanip ==0.3.6.3, - any.filepath ==1.4.2.2, - any.fingertree ==0.1.5.0, - any.free ==5.1.7, - any.generic-deriving ==1.14.1, - generic-deriving +base-4-9, - any.generic-lens ==2.2.1.0, - any.generic-lens-core ==2.2.1.0, - any.generic-random ==1.5.0.1, - generic-random -enable-inspect, - any.ghc ==9.2.2, - any.ghc-bignum ==1.2, - any.ghc-boot ==9.2.2, - any.ghc-boot-th ==9.2.2, - any.ghc-heap ==9.2.2, - any.ghc-prim ==0.8.0, - any.ghci ==9.2.2, - any.githash ==0.1.6.2, - any.gitrev ==1.3.1, - any.happy ==1.20.0, - any.hashable ==1.3.5.0, - hashable +integer-gmp -random-initial-seed, - any.hashtables ==1.2.4.2, - hashtables -bounds-checking -debug -detailed-profiling -portable -sse42 +unsafe-tricks, - any.haskeline ==0.8.2, - any.haskell-lexer ==1.1, - any.haskell-src-exts ==1.23.1, - any.haskell-src-meta ==0.8.9, - any.hedgehog ==1.1.1, - any.hpc ==0.6.1.0, - any.hsc2hs ==0.68.8, - hsc2hs -in-ghc-tree, - any.hspec ==2.9.7, - any.hspec-core ==2.9.7, - any.hspec-discover ==2.9.7, - any.hspec-expectations ==0.8.2, - any.ieee754 ==0.8.0, - any.indexed-profunctors ==0.1.1, - any.indexed-traversable ==0.1.2, - any.indexed-traversable-instances ==0.1.1, - any.integer-logarithms ==1.0.3.1, - integer-logarithms -check-bounds +integer-gmp, - any.invariant ==0.5.5, - any.io-streams ==1.5.2.1, - io-streams +network -nointeractivetests +zlib, - any.itanium-abi ==0.1.1.1, - any.json ==0.10, - json +generic -mapdict +parsec +pretty +split-base, - any.kan-extensions ==5.2.3, - any.lens ==5.1, - lens -benchmark-uniplate -dump-splices +inlining -j +test-hunit +test-properties +test-templates +trustworthy, - any.libBF ==0.6.3, - libBF -system-libbf, - any.libyaml ==0.1.2, - libyaml -no-unicode -system-libyaml, - any.lifted-async ==0.10.2.2, - any.lifted-base ==0.2.3.12, - llvm-pretty-bc-parser -fuzz -regressions, - any.logict ==0.7.0.3, - any.lumberjack ==1.0.1.0, - any.megaparsec ==9.0.1, - megaparsec -dev, - any.microlens ==0.4.12.0, - any.microlens-th ==0.4.3.10, - any.mmorph ==1.2.0, - any.monad-control ==1.0.3.1, - any.monadLib ==3.10.1, - any.mono-traversable ==1.0.15.3, - any.mtl ==2.2.2, - any.network ==3.1.2.7, - network -devel, - any.optparse-applicative ==0.17.0.0, - optparse-applicative +process, - any.optparse-simple ==0.1.1.4, - optparse-simple -build-example, - any.panic ==0.4.0.1, - any.parallel ==3.2.2.0, - any.parameterized-utils ==2.1.5.0, - parameterized-utils +unsafe-operations, - any.parsec ==3.1.15.0, - any.parser-combinators ==1.3.0, - parser-combinators -dev, - any.pretty ==1.1.3.6, - any.pretty-show ==1.10, - any.prettyprinter ==1.7.1, - prettyprinter -buildreadme +text, - any.prettyprinter-ansi-terminal ==1.1.3, - any.primitive ==0.7.3.0, - any.process ==1.6.13.2, - any.profunctors ==5.6.2, - any.pvar ==1.0.0.0, - any.quickcheck-io ==0.2.0, - any.random ==1.2.1, - any.raw-strings-qq ==1.1, - any.reflection ==2.1.6, - reflection -slow +template-haskell, - any.regex-base ==0.94.0.2, - any.regex-compat ==0.95.2.1, - any.regex-posix ==0.96.0.1, - regex-posix -_regex-posix-clib, - any.resourcet ==1.2.4.3, - any.rts ==1.0.2, - any.s-cargot ==0.1.4.0, - s-cargot -build-example, - any.safe ==0.3.19, - any.scheduler ==2.0.0.1, - any.scientific ==0.3.7.0, - scientific -bytestring-builder -integer-simple, - any.semialign ==1.2.0.1, - semialign +semigroupoids, - any.semigroupoids ==5.3.7, - semigroupoids +comonad +containers +contravariant +distributive +tagged +unordered-containers, - any.semigroups ==0.20, - semigroups +binary +bytestring -bytestring-builder +containers +deepseq +hashable +tagged +template-haskell +text +transformers +unordered-containers, - any.setenv ==0.1.1.3, - any.simple-get-opt ==0.4, - any.smallcheck ==1.2.1, - any.split ==0.2.3.4, - any.splitmix ==0.1.0.4, - splitmix -optimised-mixer, - any.stm ==2.5.0.2, - any.streaming-commons ==0.2.2.4, - streaming-commons -use-bytestring-builder, - any.strict ==0.4.0.1, - strict +assoc, - any.string-interpolate ==0.3.1.1, - string-interpolate -bytestring-builder -extended-benchmarks -text-builder, - any.syb ==0.7.2.1, - any.tagged ==0.8.6.1, - tagged +deepseq +transformers, - any.tasty ==1.4.2.1, - tasty +clock +unix, - any.tasty-ant-xml ==1.1.8, - any.tasty-checklist ==1.0.3.0, - any.tasty-expected-failure ==0.12.3, - any.tasty-golden ==2.3.5, - tasty-golden -build-example, - any.tasty-hedgehog ==1.2.0.0, - any.tasty-hspec ==1.2, - any.tasty-hunit ==0.10.0.3, - any.tasty-quickcheck ==0.10.2, - any.tasty-smallcheck ==0.8.2, - any.tasty-sugar ==1.3.0.1, - any.template-haskell ==2.18.0.0, - any.temporary ==1.3, - any.terminal-size ==0.3.3, - any.terminfo ==0.4.1.5, - any.text ==1.2.5.0, - any.text-conversions ==0.3.1, - any.text-short ==0.1.5, - text-short -asserts, - any.tf-random ==0.5, - any.th-abstraction ==0.4.3.0, - any.th-compat ==0.1.3, - any.th-expand-syns ==0.4.9.0, - any.th-lift ==0.8.2, - any.th-lift-instances ==0.1.19, - any.th-orphans ==0.13.12, - any.th-reify-many ==0.1.10, - any.these ==1.1.1.1, - these +assoc, - any.time ==1.11.1.1, - any.time-compat ==1.9.6.1, - time-compat -old-locale, - any.transformers ==0.5.6.2, - any.transformers-base ==0.4.6, - transformers-base +orphaninstances, - any.transformers-compat ==0.7.1, - transformers-compat -five +five-three -four +generic-deriving +mtl -three -two, - any.type-equality ==1, - any.typed-process ==0.2.8.0, - any.unbounded-delays ==0.1.1.1, - any.uniplate ==1.6.13, - any.unix ==2.7.2.2, - any.unix-compat ==0.5.4, - unix-compat -old-time, - any.unliftio-core ==0.2.0.1, - any.unordered-containers ==0.2.19.1, - unordered-containers -debug, - any.utf8-string ==1.0.2, - any.uuid-types ==1.0.5, - any.vector ==0.12.3.1, - vector +boundschecks -internalchecks -unsafechecks -wall, - any.vector-algorithms ==0.8.0.4, - vector-algorithms +bench +boundschecks -internalchecks -llvm +properties -unsafechecks, - any.versions ==5.0.3, - any.void ==0.7.3, - void -safe, - any.wcwidth ==0.0.2, - wcwidth -cli +split-base, - any.websockets ==0.12.7.3, - websockets -example, - what4 -drealtestdisable -solvertests -stptestdisable, - any.witherable ==0.4.2, - any.wl-pprint-annotated ==0.1.0.1, - any.xml ==1.3.14, - any.yaml ==0.11.8.0, - yaml +no-examples +no-exe, - any.zenc ==0.1.2, - any.zlib ==0.6.2.3, - zlib -bundled-c-zlib -non-blocking-ffi -pkg-config, - any.zlib-bindings ==0.1.1.5 -index-state: hackage.haskell.org 2022-06-29T14:27:46Z diff --git a/cabal.GHC-9.2.3.config b/cabal.GHC-9.2.3.config deleted file mode 100644 index 8be629d40..000000000 --- a/cabal.GHC-9.2.3.config +++ /dev/null @@ -1,294 +0,0 @@ -active-repositories: hackage.haskell.org:merge -constraints: any.Cabal ==3.6.3.0, - any.Glob ==0.10.2, - any.GraphSCC ==1.0.4, - GraphSCC -use-maps, - any.HUnit ==1.6.2.0, - any.IntervalMap ==0.6.1.2, - any.OneTuple ==0.3.1, - any.QuickCheck ==2.14.2, - QuickCheck -old-random +templatehaskell, - any.SHA ==1.6.4.4, - SHA -exe, - any.StateVar ==1.2.2, - any.adjunctions ==4.4.1, - any.aeson ==2.0.3.0, - aeson -cffi +ordered-keymap, - any.aeson-typescript ==0.4.0.0, - any.alex ==3.2.7.1, - any.ansi-terminal ==0.11.3, - ansi-terminal -example, - any.ansi-wl-pprint ==0.6.9, - ansi-wl-pprint -example, - any.array ==0.5.4.0, - any.assoc ==1.0.2, - any.async ==2.2.4, - async -bench, - any.atomic-primops ==0.8.4, - atomic-primops -debug, - any.attoparsec ==0.14.4, - attoparsec -developer, - any.barbies ==2.0.3.1, - any.base ==4.16.2.0, - any.base-compat ==0.12.1, - any.base-compat-batteries ==0.12.1, - any.base-orphans ==0.8.6, - any.base16-bytestring ==1.0.2.0, - any.base64-bytestring ==1.2.1.0, - any.bifunctors ==5.5.12, - bifunctors +semigroups +tagged, - any.bimap ==0.5.0, - any.binary ==0.8.9.0, - any.bitwise ==1.0.0.1, - any.boomerang ==1.4.8, - any.bv-sized ==1.0.4, - any.bytestring ==0.11.3.1, - any.bytestring-builder ==0.10.8.2.0, - bytestring-builder +bytestring_has_builder, - any.call-stack ==0.4.0, - any.case-insensitive ==1.2.1.0, - any.cereal ==0.5.8.2, - cereal -bytestring-builder, - any.clock ==0.8.3, - clock -llvm, - any.colour ==2.3.6, - any.comonad ==5.0.8, - comonad +containers +distributive +indexed-traversable, - any.concurrent-extra ==0.7.0.12, - any.concurrent-output ==1.10.16, - any.conduit ==1.3.4.2, - any.config-schema ==1.2.2.0, - any.config-value ==0.8.2.1, - any.constraints ==0.13.4, - any.containers ==0.6.5.1, - any.contravariant ==1.5.5, - contravariant +semigroups +statevar +tagged, - crucible +unsafe-operations, - any.cryptohash-sha1 ==0.11.101.0, - any.cryptohash-sha256 ==0.11.102.1, - cryptohash-sha256 -exe +use-cbits, - any.data-binary-ieee754 ==0.4.4, - any.data-default-class ==0.1.2.0, - any.data-fix ==0.3.2, - any.deepseq ==1.4.6.1, - any.deriving-compat ==0.6.1, - deriving-compat +base-4-9 +new-functor-classes +template-haskell-2-11, - any.directory ==1.3.6.2, - any.distributive ==0.6.2.1, - distributive +semigroups +tagged, - any.dlist ==1.0, - dlist -werror, - any.dotgen ==0.4.3, - dotgen -devel, - any.entropy ==0.4.1.7, - entropy -halvm, - any.erf ==2.0.0.0, - any.exceptions ==0.10.4, - any.executable-path ==0.0.3.1, - any.extra ==1.7.10, - any.fgl ==5.7.0.3, - fgl +containers042, - any.fgl-visualize ==0.1.0.1, - any.filemanip ==0.3.6.3, - any.filepath ==1.4.2.2, - any.fingertree ==0.1.5.0, - any.free ==5.1.8, - any.generic-deriving ==1.14.1, - generic-deriving +base-4-9, - any.generic-lens ==2.2.1.0, - any.generic-lens-core ==2.2.1.0, - any.generic-random ==1.5.0.1, - generic-random -enable-inspect, - any.ghc ==9.2.3, - any.ghc-bignum ==1.2, - any.ghc-boot ==9.2.3, - any.ghc-boot-th ==9.2.3, - any.ghc-heap ==9.2.3, - any.ghc-prim ==0.8.0, - any.ghci ==9.2.3, - any.githash ==0.1.6.2, - any.gitrev ==1.3.1, - any.happy ==1.20.0, - any.hashable ==1.3.5.0, - hashable +integer-gmp -random-initial-seed, - any.hashtables ==1.2.4.2, - hashtables -bounds-checking -debug -detailed-profiling -portable -sse42 +unsafe-tricks, - any.haskeline ==0.8.2, - any.haskell-lexer ==1.1, - any.haskell-src-exts ==1.23.1, - any.haskell-src-meta ==0.8.10, - any.hedgehog ==1.1.1, - any.hpc ==0.6.1.0, - any.hsc2hs ==0.68.8, - hsc2hs -in-ghc-tree, - any.hspec ==2.10.0, - any.hspec-core ==2.10.0, - any.hspec-discover ==2.10.0, - any.hspec-expectations ==0.8.2, - any.ieee754 ==0.8.0, - any.indexed-profunctors ==0.1.1, - any.indexed-traversable ==0.1.2, - any.indexed-traversable-instances ==0.1.1, - any.integer-logarithms ==1.0.3.1, - integer-logarithms -check-bounds +integer-gmp, - any.invariant ==0.5.6, - any.io-streams ==1.5.2.1, - io-streams +network -nointeractivetests +zlib, - any.itanium-abi ==0.1.1.1, - any.json ==0.10, - json +generic -mapdict +parsec +pretty +split-base, - any.kan-extensions ==5.2.4, - any.lens ==5.1.1, - lens -benchmark-uniplate -dump-splices +inlining -j +test-hunit +test-properties +test-templates +trustworthy, - any.libBF ==0.6.3, - libBF -system-libbf, - any.libyaml ==0.1.2, - libyaml -no-unicode -system-libyaml, - any.lifted-async ==0.10.2.2, - any.lifted-base ==0.2.3.12, - llvm-pretty-bc-parser -fuzz -regressions, - any.logict ==0.7.0.3, - any.lumberjack ==1.0.1.0, - any.megaparsec ==9.0.1, - megaparsec -dev, - any.microlens ==0.4.13.0, - any.microlens-th ==0.4.3.10, - any.mmorph ==1.2.0, - any.monad-control ==1.0.3.1, - any.monadLib ==3.10.1, - any.mono-traversable ==1.0.15.3, - any.mtl ==2.2.2, - any.network ==3.1.2.7, - network -devel, - any.optparse-applicative ==0.17.0.0, - optparse-applicative +process, - any.optparse-simple ==0.1.1.4, - optparse-simple -build-example, - any.panic ==0.4.0.1, - any.parallel ==3.2.2.0, - any.parameterized-utils ==2.1.5.0, - parameterized-utils +unsafe-operations, - any.parsec ==3.1.15.0, - any.parser-combinators ==1.3.0, - parser-combinators -dev, - any.pretty ==1.1.3.6, - any.pretty-show ==1.10, - any.prettyprinter ==1.7.1, - prettyprinter -buildreadme +text, - any.prettyprinter-ansi-terminal ==1.1.3, - any.primitive ==0.7.4.0, - any.process ==1.6.13.2, - any.profunctors ==5.6.2, - any.pvar ==1.0.0.0, - any.quickcheck-io ==0.2.0, - any.random ==1.2.1.1, - any.raw-strings-qq ==1.1, - any.reflection ==2.1.6, - reflection -slow +template-haskell, - any.regex-base ==0.94.0.2, - any.regex-compat ==0.95.2.1, - any.regex-posix ==0.96.0.1, - regex-posix -_regex-posix-clib, - any.resourcet ==1.2.5, - any.rts ==1.0.2, - any.s-cargot ==0.1.4.0, - s-cargot -build-example, - any.safe ==0.3.19, - any.scheduler ==2.0.0.1, - any.scientific ==0.3.7.0, - scientific -bytestring-builder -integer-simple, - any.semialign ==1.2.0.1, - semialign +semigroupoids, - any.semigroupoids ==5.3.7, - semigroupoids +comonad +containers +contravariant +distributive +tagged +unordered-containers, - any.semigroups ==0.20, - semigroups +binary +bytestring -bytestring-builder +containers +deepseq +hashable +tagged +template-haskell +text +transformers +unordered-containers, - any.setenv ==0.1.1.3, - any.simple-get-opt ==0.4, - any.smallcheck ==1.2.1, - any.split ==0.2.3.4, - any.splitmix ==0.1.0.4, - splitmix -optimised-mixer, - any.stm ==2.5.0.2, - any.streaming-commons ==0.2.2.4, - streaming-commons -use-bytestring-builder, - any.strict ==0.4.0.1, - strict +assoc, - any.string-interpolate ==0.3.1.2, - string-interpolate -bytestring-builder -extended-benchmarks -text-builder, - any.syb ==0.7.2.1, - any.tagged ==0.8.6.1, - tagged +deepseq +transformers, - any.tasty ==1.4.2.3, - tasty +clock +unix, - any.tasty-ant-xml ==1.1.8, - any.tasty-checklist ==1.0.3.0, - any.tasty-expected-failure ==0.12.3, - any.tasty-golden ==2.3.5, - tasty-golden -build-example, - any.tasty-hedgehog ==1.2.0.0, - any.tasty-hspec ==1.2.0.1, - any.tasty-hunit ==0.10.0.3, - any.tasty-quickcheck ==0.10.2, - any.tasty-smallcheck ==0.8.2, - any.tasty-sugar ==1.3.0.1, - any.template-haskell ==2.18.0.0, - any.temporary ==1.3, - any.terminal-size ==0.3.3, - any.terminfo ==0.4.1.5, - any.text ==1.2.5.0, - any.text-conversions ==0.3.1.1, - any.text-short ==0.1.5, - text-short -asserts, - any.tf-random ==0.5, - any.th-abstraction ==0.4.3.0, - any.th-compat ==0.1.3, - any.th-expand-syns ==0.4.9.0, - any.th-lift ==0.8.2, - any.th-lift-instances ==0.1.19, - any.th-orphans ==0.13.13, - any.th-reify-many ==0.1.10, - any.these ==1.1.1.1, - these +assoc, - any.time ==1.11.1.1, - any.time-compat ==1.9.6.1, - time-compat -old-locale, - any.transformers ==0.5.6.2, - any.transformers-base ==0.4.6, - transformers-base +orphaninstances, - any.transformers-compat ==0.7.1, - transformers-compat -five +five-three -four +generic-deriving +mtl -three -two, - any.type-equality ==1, - any.typed-process ==0.2.10.1, - any.unbounded-delays ==0.1.1.1, - any.uniplate ==1.6.13, - any.unix ==2.7.2.2, - any.unix-compat ==0.6, - unix-compat -old-time, - any.unliftio-core ==0.2.0.1, - any.unordered-containers ==0.2.19.1, - unordered-containers -debug, - any.utf8-string ==1.0.2, - any.uuid-types ==1.0.5, - any.vector ==0.12.3.1, - vector +boundschecks -internalchecks -unsafechecks -wall, - any.vector-algorithms ==0.8.0.4, - vector-algorithms +bench +boundschecks -internalchecks -llvm +properties -unsafechecks, - any.versions ==5.0.3, - any.void ==0.7.3, - void -safe, - any.wcwidth ==0.0.2, - wcwidth -cli +split-base, - any.websockets ==0.12.7.3, - websockets -example, - what4 -drealtestdisable -solvertests -stptestdisable, - any.witherable ==0.4.2, - any.wl-pprint-annotated ==0.1.0.1, - any.xml ==1.3.14, - any.yaml ==0.11.8.0, - yaml +no-examples +no-exe, - any.zenc ==0.1.2, - any.zlib ==0.6.3.0, - zlib -bundled-c-zlib -non-blocking-ffi -pkg-config, - any.zlib-bindings ==0.1.1.5 -index-state: hackage.haskell.org 2022-06-29T14:27:46Z diff --git a/cabal.GHC-9.2.4.config b/cabal.GHC-9.2.7.config similarity index 93% rename from cabal.GHC-9.2.4.config rename to cabal.GHC-9.2.7.config index 2dc6fe216..a0d0c92a4 100644 --- a/cabal.GHC-9.2.4.config +++ b/cabal.GHC-9.2.7.config @@ -6,14 +6,14 @@ constraints: any.BoundedChan ==1.0.3.0, GraphSCC -use-maps, any.HUnit ==1.6.2.0, any.IntervalMap ==0.6.2.0, - any.OneTuple ==0.3.1, + any.OneTuple ==0.4.1.1, any.QuickCheck ==2.14.2, QuickCheck -old-random +templatehaskell, any.SHA ==1.6.4.4, SHA -exe, any.StateVar ==1.2.2, any.adjunctions ==4.4.2, - any.aeson ==2.0.3.0, + any.aeson ==2.1.2.1, aeson -cffi +ordered-keymap, any.aeson-typescript ==0.5.0.0, any.alex ==3.2.7.1, @@ -23,7 +23,8 @@ constraints: any.BoundedChan ==1.0.3.0, any.ansi-wl-pprint ==0.6.9, ansi-wl-pprint -example, any.array ==0.5.4.0, - any.assoc ==1.0.2, + any.assoc ==1.1, + assoc +tagged, any.async ==2.2.4, async -bench, any.atomic-primops ==0.8.4, @@ -31,14 +32,14 @@ constraints: any.BoundedChan ==1.0.3.0, any.attoparsec ==0.14.4, attoparsec -developer, any.barbies ==2.0.4.0, - any.base ==4.16.3.0, - any.base-compat ==0.12.2, - any.base-compat-batteries ==0.12.2, + any.base ==4.16.4.0, + any.base-compat ==0.13.0, + any.base-compat-batteries ==0.13.0, any.base-orphans ==0.8.8.2, any.base16-bytestring ==1.0.2.0, any.base64-bytestring ==1.2.1.0, - any.bifunctors ==5.5.15, - bifunctors +semigroups +tagged, + any.bifunctors ==5.6.1, + bifunctors +tagged, any.bimap ==0.5.0, any.binary ==0.8.9.0, any.bitvec ==1.1.4.0, @@ -47,7 +48,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.blaze-builder ==0.4.2.2, any.boomerang ==1.4.8.1, any.bv-sized ==1.0.5, - any.bytestring ==0.11.3.1, + any.bytestring ==0.11.4.0, any.bytestring-builder ==0.10.8.2.0, bytestring-builder +bytestring_has_builder, any.call-stack ==0.4.0, @@ -98,6 +99,8 @@ constraints: any.BoundedChan ==1.0.3.0, any.filemanip ==0.3.6.3, any.filepath ==1.4.2.2, any.fingertree ==0.1.5.0, + any.foldable1-classes-compat ==0.1, + foldable1-classes-compat +tagged, any.free ==5.2, any.generic-deriving ==1.14.3, generic-deriving +base-4-9, @@ -105,8 +108,9 @@ constraints: any.BoundedChan ==1.0.3.0, any.generic-lens-core ==2.2.1.0, any.generic-random ==1.5.0.1, generic-random -enable-inspect, + any.generically ==0.1.1, any.ghc-bignum ==1.2, - any.ghc-boot-th ==9.2.4, + any.ghc-boot-th ==9.2.7, any.ghc-prim ==0.8.0, any.githash ==0.1.6.3, any.gitrev ==1.3.1, @@ -119,7 +123,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.haskell-lexer ==1.1.1, any.haskell-src-exts ==1.23.1, any.haskell-src-meta ==0.8.12, - any.hedgehog ==1.1.1, + any.hedgehog ==1.2, any.hsc2hs ==0.68.9, hsc2hs -in-ghc-tree, any.hspec ==2.10.10, @@ -152,7 +156,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.logict ==0.8.0.0, any.lucid ==2.11.1, any.lumberjack ==1.0.2.0, - any.megaparsec ==9.0.1, + any.megaparsec ==9.3.0, megaparsec -dev, any.microlens ==0.4.13.1, any.microlens-th ==0.4.3.12, @@ -181,7 +185,7 @@ constraints: any.BoundedChan ==1.0.3.0, prettyprinter -buildreadme +text, any.prettyprinter-ansi-terminal ==1.1.3, any.primitive ==0.7.4.0, - any.process ==1.6.13.2, + any.process ==1.6.16.0, any.profunctors ==5.6.2, any.pvar ==1.0.0.0, any.quickcheck-io ==0.2.0, @@ -202,7 +206,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.scheduler ==2.0.0.1, any.scientific ==0.3.7.0, scientific -bytestring-builder -integer-simple, - any.semialign ==1.2.0.1, + any.semialign ==1.3, semialign +semigroupoids, any.semigroupoids ==5.3.7, semigroupoids +comonad +containers +contravariant +distributive +tagged +unordered-containers, @@ -217,8 +221,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.stm ==2.5.0.2, any.streaming-commons ==0.2.2.6, streaming-commons -use-bytestring-builder, - any.strict ==0.4.0.1, - strict +assoc, + any.strict ==0.5, any.string-interpolate ==0.3.2.0, string-interpolate -bytestring-builder -extended-benchmarks -text-builder, any.syb ==0.7.2.3, @@ -231,7 +234,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.tasty-expected-failure ==0.12.3, any.tasty-golden ==2.3.5, tasty-golden -build-example, - any.tasty-hedgehog ==1.2.0.0, + any.tasty-hedgehog ==1.4.0.1, any.tasty-hspec ==1.2.0.3, any.tasty-hunit ==0.10.0.3, any.tasty-quickcheck ==0.10.2, @@ -253,8 +256,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.th-lift-instances ==0.1.20, any.th-orphans ==0.13.14, any.th-reify-many ==0.1.10, - any.these ==1.1.1.1, - these +assoc, + any.these ==1.2, any.time ==1.11.1.1, any.time-compat ==1.9.6.1, time-compat -old-locale, diff --git a/cabal.GHC-9.0.2.config b/cabal.GHC-9.4.4.config similarity index 89% rename from cabal.GHC-9.0.2.config rename to cabal.GHC-9.4.4.config index 6446bbbe5..589646458 100644 --- a/cabal.GHC-9.0.2.config +++ b/cabal.GHC-9.4.4.config @@ -1,19 +1,20 @@ active-repositories: hackage.haskell.org:merge constraints: any.BoundedChan ==1.0.3.0, - any.Cabal ==3.4.1.0, + any.Cabal ==3.8.1.0, + any.Cabal-syntax ==3.8.1.0, any.Glob ==0.10.2, any.GraphSCC ==1.0.4, GraphSCC -use-maps, any.HUnit ==1.6.2.0, any.IntervalMap ==0.6.2.0, - any.OneTuple ==0.3.1, + any.OneTuple ==0.4.1.1, any.QuickCheck ==2.14.2, QuickCheck -old-random +templatehaskell, any.SHA ==1.6.4.4, SHA -exe, any.StateVar ==1.2.2, any.adjunctions ==4.4.2, - any.aeson ==2.0.3.0, + any.aeson ==2.1.2.1, aeson -cffi +ordered-keymap, any.aeson-typescript ==0.5.0.0, any.alex ==3.2.7.1, @@ -23,7 +24,8 @@ constraints: any.BoundedChan ==1.0.3.0, any.ansi-wl-pprint ==0.6.9, ansi-wl-pprint -example, any.array ==0.5.4.0, - any.assoc ==1.0.2, + any.assoc ==1.1, + assoc +tagged, any.async ==2.2.4, async -bench, any.atomic-primops ==0.8.4, @@ -31,23 +33,23 @@ constraints: any.BoundedChan ==1.0.3.0, any.attoparsec ==0.14.4, attoparsec -developer, any.barbies ==2.0.4.0, - any.base ==4.15.1.0, - any.base-compat ==0.12.2, - any.base-compat-batteries ==0.12.2, + any.base ==4.17.0.0, + any.base-compat ==0.13.0, + any.base-compat-batteries ==0.13.0, any.base-orphans ==0.8.8.2, any.base16-bytestring ==1.0.2.0, any.base64-bytestring ==1.2.1.0, - any.bifunctors ==5.5.15, - bifunctors +semigroups +tagged, + any.bifunctors ==5.6.1, + bifunctors +tagged, any.bimap ==0.5.0, - any.binary ==0.8.8.0, + any.binary ==0.8.9.1, any.bitvec ==1.1.4.0, bitvec -libgmp, any.bitwise ==1.0.0.1, any.blaze-builder ==0.4.2.2, any.boomerang ==1.4.8.1, any.bv-sized ==1.0.5, - any.bytestring ==0.10.12.1, + any.bytestring ==0.11.3.1, any.bytestring-builder ==0.10.8.2.0, bytestring-builder +bytestring_has_builder, any.call-stack ==0.4.0, @@ -65,21 +67,20 @@ constraints: any.BoundedChan ==1.0.3.0, any.config-schema ==1.3.0.0, any.config-value ==0.8.3, any.constraints ==0.13.4, - any.containers ==0.6.4.1, + any.containers ==0.6.6, any.contravariant ==1.5.5, contravariant +semigroups +statevar +tagged, crucible +unsafe-operations, any.cryptohash-sha1 ==0.11.101.0, any.cryptohash-sha256 ==0.11.102.1, cryptohash-sha256 -exe +use-cbits, - any.data-array-byte ==0.1.0.1, any.data-binary-ieee754 ==0.4.4, any.data-default-class ==0.1.2.0, any.data-fix ==0.3.2, - any.deepseq ==1.4.5.0, + any.deepseq ==1.4.8.0, any.deriving-compat ==0.6.3, deriving-compat +base-4-9 +new-functor-classes +template-haskell-2-11, - any.directory ==1.3.6.2, + any.directory ==1.3.7.1, any.distributive ==0.6.2.1, distributive +semigroups +tagged, any.dlist ==1.0, @@ -89,15 +90,17 @@ constraints: any.BoundedChan ==1.0.3.0, any.entropy ==0.4.1.10, entropy -donotgetentropy, any.erf ==2.0.0.0, - any.exceptions ==0.10.4, + any.exceptions ==0.10.5, any.executable-path ==0.0.3.1, any.extra ==1.7.13, any.fgl ==5.8.1.1, fgl +containers042, any.fgl-visualize ==0.1.0.1, any.filemanip ==0.3.6.3, - any.filepath ==1.4.2.1, + any.filepath ==1.4.2.2, any.fingertree ==0.1.5.0, + any.foldable1-classes-compat ==0.1, + foldable1-classes-compat +tagged, any.free ==5.2, any.generic-deriving ==1.14.3, generic-deriving +base-4-9, @@ -105,9 +108,10 @@ constraints: any.BoundedChan ==1.0.3.0, any.generic-lens-core ==2.2.1.0, any.generic-random ==1.5.0.1, generic-random -enable-inspect, - any.ghc-bignum ==1.1, - any.ghc-boot-th ==9.0.2, - any.ghc-prim ==0.7.0, + any.generically ==0.1.1, + any.ghc-bignum ==1.3, + any.ghc-boot-th ==9.4.4, + any.ghc-prim ==0.9.0, any.githash ==0.1.6.3, any.gitrev ==1.3.1, any.happy ==1.20.1.1, @@ -119,7 +123,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.haskell-lexer ==1.1.1, any.haskell-src-exts ==1.23.1, any.haskell-src-meta ==0.8.12, - any.hedgehog ==1.1.1, + any.hedgehog ==1.2, any.hsc2hs ==0.68.9, hsc2hs -in-ghc-tree, any.hspec ==2.10.10, @@ -152,7 +156,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.logict ==0.8.0.0, any.lucid ==2.11.1, any.lumberjack ==1.0.2.0, - any.megaparsec ==9.0.1, + any.megaparsec ==9.3.0, megaparsec -dev, any.microlens ==0.4.13.1, any.microlens-th ==0.4.3.12, @@ -172,7 +176,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.parallel ==3.2.2.0, any.parameterized-utils ==2.1.6.0, parameterized-utils +unsafe-operations, - any.parsec ==3.1.14.0, + any.parsec ==3.1.15.0, any.parser-combinators ==1.3.0, parser-combinators -dev, any.pretty ==1.1.3.6, @@ -181,7 +185,7 @@ constraints: any.BoundedChan ==1.0.3.0, prettyprinter -buildreadme +text, any.prettyprinter-ansi-terminal ==1.1.3, any.primitive ==0.7.4.0, - any.process ==1.6.13.2, + any.process ==1.6.16.0, any.profunctors ==5.6.2, any.pvar ==1.0.0.0, any.quickcheck-io ==0.2.0, @@ -202,7 +206,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.scheduler ==2.0.0.1, any.scientific ==0.3.7.0, scientific -bytestring-builder -integer-simple, - any.semialign ==1.2.0.1, + any.semialign ==1.3, semialign +semigroupoids, any.semigroupoids ==5.3.7, semigroupoids +comonad +containers +contravariant +distributive +tagged +unordered-containers, @@ -214,11 +218,10 @@ constraints: any.BoundedChan ==1.0.3.0, any.split ==0.2.3.5, any.splitmix ==0.1.0.4, splitmix -optimised-mixer, - any.stm ==2.5.0.0, + any.stm ==2.5.1.0, any.streaming-commons ==0.2.2.6, streaming-commons -use-bytestring-builder, - any.strict ==0.4.0.1, - strict +assoc, + any.strict ==0.5, any.string-interpolate ==0.3.2.0, string-interpolate -bytestring-builder -extended-benchmarks -text-builder, any.syb ==0.7.2.3, @@ -231,17 +234,17 @@ constraints: any.BoundedChan ==1.0.3.0, any.tasty-expected-failure ==0.12.3, any.tasty-golden ==2.3.5, tasty-golden -build-example, - any.tasty-hedgehog ==1.2.0.0, + any.tasty-hedgehog ==1.4.0.1, any.tasty-hspec ==1.2.0.3, any.tasty-hunit ==0.10.0.3, any.tasty-quickcheck ==0.10.2, any.tasty-smallcheck ==0.8.2, any.tasty-sugar ==2.1.0.0, - any.template-haskell ==2.17.0.0, + any.template-haskell ==2.19.0.0, any.temporary ==1.3, any.terminal-size ==0.3.3, any.terminfo ==0.4.1.5, - any.text ==1.2.5.0, + any.text ==2.0.1, any.text-conversions ==0.3.1.1, any.text-short ==0.1.5, text-short -asserts, @@ -253,9 +256,8 @@ constraints: any.BoundedChan ==1.0.3.0, any.th-lift-instances ==0.1.20, any.th-orphans ==0.13.14, any.th-reify-many ==0.1.10, - any.these ==1.1.1.1, - these +assoc, - any.time ==1.9.3, + any.these ==1.2, + any.time ==1.12.2, any.time-compat ==1.9.6.1, time-compat -old-locale, any.transformers ==0.5.6.2, @@ -267,7 +269,7 @@ constraints: any.BoundedChan ==1.0.3.0, any.typed-process ==0.2.11.0, any.unbounded-delays ==0.1.1.1, any.uniplate ==1.6.13, - any.unix ==2.7.2.2, + any.unix ==2.7.3, any.unix-compat ==0.7, unix-compat -old-time, any.unliftio ==0.2.24.0, diff --git a/crux-llvm/README.md b/crux-llvm/README.md index e4f9fc084..787090c8a 100644 --- a/crux-llvm/README.md +++ b/crux-llvm/README.md @@ -42,8 +42,8 @@ software: * `echo 'export PATH="/usr/local/opt/llvm/bin:$PATH"' >> ~/.bash_profile` * run `crux-llvm` in a new console to reload `.bash_profile` -We have tested `crux-llvm` most heavily with GHC 8.8.4, GHC -8.10.7, GHC 9.0.2, GHC 9.2.2, and `cabal` version 3.6.2.0. We recommend Yices 2.6.x, and Z3 +We have tested `crux-llvm` most heavily with GHC 8.10.7, GHC 9.2.7, GHC 9.4.4, +and `cabal` version 3.8.1.0. We recommend Yices 2.6.x, and Z3 4.8.x. Technically, only one of Yices or Z3 is required, and CVC4 is also supported. However, in practice, having both tends to be convenient. Finally, LLVM versions from 3.6 through 11 are likely to diff --git a/crux-mir/README.md b/crux-mir/README.md index 47f201a74..1c2fd8544 100644 --- a/crux-mir/README.md +++ b/crux-mir/README.md @@ -24,7 +24,7 @@ README][mir-json-readme]. ## Installation -Use GHC 8.8.4, 8.10.7, 9.0.2, or 9.2.2. From the `crux-mir` directory, run: +Use 8.10.7, 9.2.7, or 9.4.4. From the `crux-mir` directory, run: $ cabal v2-install exe:crux-mir --overwrite-policy=always