Skip to content

Commit 90b2c4b

Browse files
authored
Merge pull request #4934 from IntersectMBO/coot/annotated-decoder
Annotated decoder for TxSubmission mini-protocol
2 parents 3c08f6a + 60b36b1 commit 90b2c4b

File tree

21 files changed

+880
-234
lines changed

21 files changed

+880
-234
lines changed

cabal.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repository cardano-haskell-packages
1515
-- repeat the index-state for hackage to work around haskell.nix parsing limitation
1616
index-state:
1717
-- Bump this if you need newer packages from Hackage
18-
, hackage.haskell.org 2025-07-08T15:23:02Z
18+
, hackage.haskell.org 2025-08-05T15:28:56Z
1919

2020
-- Bump this if you need newer packages from CHaP
2121
, cardano-haskell-packages 2025-02-15T18:39:38Z

decentralized-message-queue/decentralized-message-queue.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ library
9494
ouroboros-network-protocols ^>=0.15,
9595
random ^>=1.2,
9696
text >=1.2.4 && <2.2,
97-
typed-protocols ^>=1.0,
97+
typed-protocols ^>=1.1,
9898

9999
-- Directories containing source files.
100100
hs-source-dirs: src

flake.lock

Lines changed: 73 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
inputs.hackage.follows = "hackageNix";
1616
};
1717
hackageNix = {
18-
url = "github:input-output-hk/hackage.nix?ref=for-stackage";
18+
url = "github:input-output-hk/hackage.nix";
1919
flake = false;
2020
};
2121
nixpkgs.follows = "haskellNix/nixpkgs-unstable";

nix/ouroboros-network.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ let
111111
# don't run checks using Wine when cross compiling
112112
packages.network-mux.components.tests.test.preCheck =
113113
if buildSystem == "x86_64-linux" then "export GHCRTS=-M800M" else "";
114+
packages.ouroboros-network-protocols.components.tests.test.preCheck =
115+
if buildSystem == "x86_64-linux" then "export GHCRTS=-M800M" else "";
114116
packages.ouroboros-network.components.tests.sim-tests.preCheck =
115117
if buildSystem == "x86_64-linux" then "export GHCRTS=-M2400M" else "";
116118
})

ouroboros-network-api/ouroboros-network-api.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ library
7777
random,
7878
serialise >=0.2 && <0.3,
7979
text >=1.2 && <2.2,
80-
typed-protocols ^>=1.0,
80+
typed-protocols ^>=1.1,
8181

8282
ghc-options:
8383
-Wall

ouroboros-network-framework/ouroboros-network-framework.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ library
8585
quiet,
8686
random ^>=1.2,
8787
text,
88-
typed-protocols:{typed-protocols, cborg, stateful} ^>=1.0,
88+
typed-protocols:{typed-protocols, cborg, stateful} ^>=1.1,
8989

9090
if os(windows)
9191
build-depends: Win32 >=2.5.4.1 && <3.0

0 commit comments

Comments
 (0)