Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump upper dependency bounds on base and io-classes #997

Merged
merged 2 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions _sources/typed-protocols-cborg/0.3.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
timestamp = 2024-09-26T15:16:07Z
github = { repo = "input-output-hk/typed-protocols", rev = "d127d3ebd1850b7d1aa6eb75c0b040b1f94d0e24" }
subdir = 'typed-protocols-cborg'

[[revisions]]
number = 1
timestamp = 2025-01-30T23:36:17Z
38 changes: 38 additions & 0 deletions _sources/typed-protocols-cborg/0.3.0.0/revisions/1.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
cabal-version: 3.4
name: typed-protocols-cborg
version: 0.3.0.0
synopsis: CBOR codecs for typed-protocols
-- description:
license: Apache-2.0
license-files:
LICENSE
NOTICE
copyright: 2019-2023 Input Output Global Inc (IOG)
author: Alexander Vieth, Duncan Coutts, Marcin Szamotulski
maintainer: [email protected], [email protected], [email protected]
category: Control
build-type: Simple
tested-with: GHC == {8.10, 9.2, 9.4, 9.6}
extra-source-files: CHANGELOG.md, README.md

library
exposed-modules: Network.TypedProtocol.Codec.CBOR

build-depends: base >=4.12 && <4.22,
bytestring >=0.10 && <0.13,
cborg >=0.2.1 && <0.3,
singletons,

io-classes >=1.5 && <1.8,
typed-protocols ^>=0.3

hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
-Wno-unticked-promoted-constructors
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wpartial-fields
-Widentities
-Wredundant-constraints
4 changes: 4 additions & 0 deletions _sources/typed-protocols-stateful-cborg/0.3.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
timestamp = 2024-09-26T15:16:07Z
github = { repo = "input-output-hk/typed-protocols", rev = "d127d3ebd1850b7d1aa6eb75c0b040b1f94d0e24" }
subdir = 'typed-protocols-stateful-cborg'

[[revisions]]
number = 1
timestamp = 2025-01-30T23:36:06Z
42 changes: 42 additions & 0 deletions _sources/typed-protocols-stateful-cborg/0.3.0.0/revisions/1.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
cabal-version: 3.4
name: typed-protocols-stateful-cborg
version: 0.3.0.0
synopsis: CBOR codecs for typed-protocols
-- description:
license: Apache-2.0
license-files:
LICENSE
NOTICE
copyright: 2022-2024 Input Output Global Inc (IOG)
author: Marcin Szamotulski
maintainer: [email protected]
category: Control
build-type: Simple

-- These should probably be added at some point.
extra-source-files: ChangeLog.md, README.md

library
exposed-modules: Network.TypedProtocol.Stateful.Codec.CBOR

build-depends: base >=4.12 && <4.22,
bytestring >=0.10 && <0.13,
cborg >=0.2.1 && <0.3,
singletons,

io-classes,
typed-protocols ^>= 0.3,
typed-protocols-cborg,
typed-protocols-stateful

hs-source-dirs: src
default-language: Haskell2010
default-extensions: ImportQualifiedPost
ghc-options: -Wall
-Wno-unticked-promoted-constructors
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wpartial-fields
-Widentities
-Wredundant-constraints
4 changes: 4 additions & 0 deletions _sources/typed-protocols/0.3.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
timestamp = 2024-09-26T15:16:07Z
github = { repo = "input-output-hk/typed-protocols", rev = "d127d3ebd1850b7d1aa6eb75c0b040b1f94d0e24" }
subdir = 'typed-protocols'

[[revisions]]
number = 1
timestamp = 2025-01-30T23:35:23Z
50 changes: 50 additions & 0 deletions _sources/typed-protocols/0.3.0.0/revisions/1.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
cabal-version: 3.4
name: typed-protocols
version: 0.3.0.0
synopsis: A framework for strongly typed protocols
-- description:
license: Apache-2.0
license-files:
LICENSE
NOTICE
copyright: 2019-2023 Input Output Global Inc (IOG)
author: Alexander Vieth, Duncan Coutts, Marcin Szamotulski
maintainer: [email protected], [email protected], [email protected]
category: Control
build-type: Simple
tested-with: GHC == {8.10, 9.2, 9.4, 9.6}
extra-source-files: CHANGELOG.md

library
exposed-modules: Network.TypedProtocol
, Network.TypedProtocol.Core
, Network.TypedProtocol.Peer
, Network.TypedProtocol.Peer.Client
, Network.TypedProtocol.Peer.Server
, Network.TypedProtocol.Codec
, Network.TypedProtocol.Driver
, Network.TypedProtocol.Proofs
other-modules: Network.TypedProtocol.Lemmas

other-extensions: GADTs
, RankNTypes
, PolyKinds
, DataKinds
, ScopedTypeVariables
, TypeFamilies
, TypeOperators
, BangPatterns
build-depends: base,
io-classes >= 1.0 && < 1.8,
singletons >= 3.0

hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
-Wno-unticked-promoted-constructors
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wpartial-fields
-Widentities
-Wredundant-constraints
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.