diff --git a/cabal.project b/cabal.project index 7db999219f..a22e868650 100644 --- a/cabal.project +++ b/cabal.project @@ -13,7 +13,7 @@ repository cardano-haskell-packages -- See CONTRIBUTING for information about these, including some Nix commands -- you need to run if you change them index-state: - , hackage.haskell.org 2024-12-24T12:56:48Z + , hackage.haskell.org 2024-12-31T10:16:13Z , cardano-haskell-packages 2025-01-08T16:35:32Z packages: @@ -32,6 +32,7 @@ package bitvec flags: -simd extra-packages: Cabal + if os(windows) constraints: time ^>=1.14 allow-newer: *:time @@ -63,10 +64,68 @@ write-ghc-environment-files: always -- Do NOT add more source-repository-package stanzas here unless they are strictly -- temporary! Please read the section in CONTRIBUTING about updating dependencies. +-- UTxO-HD for 10.2 +source-repository-package + type: git + location: https://github.com/IntersectMBO/ouroboros-consensus.git + tag: 54ac1b2f5bd15f3f0f70e9f4a9ebf3e34792dcf2 + --sha256: sha256-PdzKg4PA6DnzhRVUF2kiBfvf8S+ekXmws73XDXSZdnY= + subdir: + ouroboros-consensus + ouroboros-consensus-cardano + ouroboros-consensus-diffusion + ouroboros-consensus-protocol + sop-extras + strict-sop-core + +-- mempack support +source-repository-package + type: git + location: https://github.com/IntersectMBO/cardano-base.git + tag: fb9b71f3bc33f8de673c6427736f09bf7972e81f + subdir: + cardano-crypto-class + --sha256: sha256-ExQ497FDYlmQyZaXOTddU+KraAUHnTAqPiyt055v0+M= + +-- mempack support +source-repository-package + type: git + location: https://github.com/IntersectMBO/cardano-ledger + tag: c50d89688d9f30ea2dbd01afb19dbcaaf03e3da7 + --sha256: sha256-3OVXLYCKSN4HPd3nsObK2mG8mB28AX46vuMqs+Jn3kw= + subdir: + eras/allegra/impl + eras/alonzo/impl + eras/alonzo/test-suite + eras/babbage/impl + eras/babbage/test-suite + eras/conway/impl + eras/conway/test-suite + eras/mary/impl + eras/shelley/impl + eras/shelley/test-suite + eras/shelley-ma/test-suite + libs/cardano-ledger-api + libs/cardano-ledger-core + libs/cardano-ledger-binary + libs/cardano-protocol-tpraos + libs/non-integral + libs/small-steps + libs/cardano-data + libs/set-algebra + libs/vector-map + eras/byron/chain/executable-spec + eras/byron/ledger/executable-spec + eras/byron/ledger/impl + eras/byron/ledger/impl/test + eras/byron/crypto + eras/byron/crypto/test + +-- UTxO-HD for 10.2 source-repository-package type: git location: https://github.com/IntersectMBO/cardano-api.git - tag: 1caaa8b1abbe6fe8f57664c53821013f8f1ae491 - --sha256: sha256-cPqbx/Fqtij6T6DWkGwuwi7wDpaXwCfK5v4DOD3fjBI= + tag: e3b7712d80fe5721bccf5dccb89e626de12ae419 + --sha256: sha256-Z2/qzlS4JfAtdSOc/V0r3wfbfOq6YWAobgmKKzlesdM= subdir: cardano-api diff --git a/cardano-cli/src/Cardano/CLI/Run/Debug/LogEpochState.hs b/cardano-cli/src/Cardano/CLI/Run/Debug/LogEpochState.hs index d89e8a5d09..bca2b576f1 100644 --- a/cardano-cli/src/Cardano/CLI/Run/Debug/LogEpochState.hs +++ b/cardano-cli/src/Cardano/CLI/Run/Debug/LogEpochState.hs @@ -36,7 +36,7 @@ runLogEpochStateCmd Api.QuickValidation (EpochNo maxBound) () - ( \(AnyNewEpochState sbe nes) _ _ -> do + ( \(AnyNewEpochState sbe nes _) _ _ -> do liftIO $ LBS.appendFile outputFilePath $ shelleyBasedEraConstraints sbe (Aeson.encode nes) <> "\n"