File tree Expand file tree Collapse file tree 8 files changed +6
-9
lines changed
typed-protocols-examples/src/Network/TypedProtocol
typed-protocols/src/Network/TypedProtocol Expand file tree Collapse file tree 8 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ repository cardano-haskell-packages
1111 d4a35cd3121aa00d18544bb0ac01c3e1691d618f462c46129271bccf39f7e8ee
1212
1313index-state :
14- , hackage.haskell.org 2023-04-18T18:49 :22Z
15- , cardano-haskell-packages 2023-03-30T14:04 :13Z
14+ , hackage.haskell.org 2023-05-03T10:02 :50Z
15+ , cardano-haskell-packages 2023-04-24T15:33 :00Z
1616
1717packages : ./typed-protocols
1818 ./typed-protocols-cborg
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ cabal-version: >=1.10
2121library
2222 exposed-modules : Network.TypedProtocol.Codec.CBOR
2323
24- build-depends : base >= 4.12 && < 4.18 ,
24+ build-depends : base >= 4.12 && < 4.20 ,
2525 bytestring >= 0.10 && < 0.12 ,
2626 cborg >= 0.2.1 && < 0.3 ,
2727
Original file line number Diff line number Diff line change 66{-# LANGUAGE RankNTypes #-}
77{-# LANGUAGE ScopedTypeVariables #-}
88{-# LANGUAGE TypeFamilies #-}
9- {-# LANGUAGE TypeInType #-}
109-- @UndecidableInstances@ extensions is required for defining @Show@ instance
1110-- of @'TraceSendRecv'@.
1211{-# LANGUAGE UndecidableInstances #-}
Original file line number Diff line number Diff line change 33{-# LANGUAGE GADTs #-}
44{-# LANGUAGE KindSignatures #-}
55{-# LANGUAGE NamedFieldPuns #-}
6+ {-# LANGUAGE PolyKinds #-}
67{-# LANGUAGE ScopedTypeVariables #-}
7- {-# LANGUAGE TypeInType #-}
88
99module Network.TypedProtocol.ReqResp.Codec where
1010
Original file line number Diff line number Diff line change 77{-# LANGUAGE RankNTypes #-}
88{-# LANGUAGE ScopedTypeVariables #-}
99{-# LANGUAGE TypeFamilies #-}
10- {-# LANGUAGE TypeInType #-}
1110-- @UndecidableInstances@ extension is required for defining @Show@ instance of
1211-- @'AnyMessage'@ and @'AnyMessageAndAgency'@.
1312{-# LANGUAGE UndecidableInstances #-}
Original file line number Diff line number Diff line change 88{-# LANGUAGE RankNTypes #-}
99{-# LANGUAGE StandaloneDeriving #-}
1010{-# LANGUAGE TypeFamilies #-}
11- {-# LANGUAGE TypeInType #-}
1211
1312
1413-- | This module defines the core of the typed protocol framework.
Original file line number Diff line number Diff line change 11{-# LANGUAGE BangPatterns #-}
2+ {-# LANGUAGE DataKinds #-}
23{-# LANGUAGE EmptyCase #-}
34{-# LANGUAGE GADTs #-}
45{-# LANGUAGE NamedFieldPuns #-}
6+ {-# LANGUAGE PolyKinds #-}
57{-# LANGUAGE RankNTypes #-}
68{-# LANGUAGE ScopedTypeVariables #-}
79{-# LANGUAGE TypeFamilies #-}
8- {-# LANGUAGE TypeInType #-}
910
1011-- | Actions for running 'Peer's with a 'Driver'
1112--
Original file line number Diff line number Diff line change 55{-# LANGUAGE RecordWildCards #-}
66{-# LANGUAGE ScopedTypeVariables #-}
77{-# LANGUAGE TypeFamilies #-}
8- {-# LANGUAGE TypeInType #-}
98
109
1110-- This is already implied by the -Wall in the .cabal file, but lets just be
You can’t perform that action at this time.
0 commit comments