Skip to content

Commit

Permalink
Revise ouroboros-consensus-byron-0.3.0.0 to add upper bound on cardan…
Browse files Browse the repository at this point in the history
…o-binary
  • Loading branch information
michaelpj committed Mar 21, 2023
1 parent 011f84d commit 2b047eb
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _sources/ouroboros-consensus-byron/0.3.0.0/meta.toml
@@ -1,3 +1,7 @@
timestamp = 2023-02-13T11:33:44Z
github = { repo = "input-output-hk/ouroboros-network", rev = "a251fc8f8f452be2804c89ea8ea6f425ccab5dd6" }
subdir = 'ouroboros-consensus-byron'

[[revisions]]
number = 1
timestamp = 2023-03-21T14:23:59Z
112 changes: 112 additions & 0 deletions _sources/ouroboros-consensus-byron/0.3.0.0/revisions/1.cabal
@@ -0,0 +1,112 @@
cabal-version: 3.0

name: ouroboros-consensus-byron
version: 0.3.0.0
synopsis: Byron ledger integration in the Ouroboros consensus layer
description: Byron ledger integration in the Ouroboros consensus layer.
license: Apache-2.0
license-files: LICENSE
NOTICE
copyright: 2019-2023 Input Output Global Inc (IOG)
author: IOHK Engineering Team
maintainer: operations@iohk.io
category: Network
build-type: Simple
extra-source-files: CHANGELOG.md

source-repository head
type: git
location: https://github.com/input-output-hk/ouroboros-network

flag asserts
description: Enable assertions
manual: False
default: False

library
hs-source-dirs: src

exposed-modules:
Ouroboros.Consensus.Byron.Crypto.DSIGN
Ouroboros.Consensus.Byron.EBBs
Ouroboros.Consensus.Byron.Ledger
Ouroboros.Consensus.Byron.Ledger.Block
Ouroboros.Consensus.Byron.Ledger.Config
Ouroboros.Consensus.Byron.Ledger.Conversions
Ouroboros.Consensus.Byron.Ledger.Forge
Ouroboros.Consensus.Byron.Ledger.HeaderValidation
Ouroboros.Consensus.Byron.Ledger.Inspect
Ouroboros.Consensus.Byron.Ledger.Integrity
Ouroboros.Consensus.Byron.Ledger.Ledger
Ouroboros.Consensus.Byron.Ledger.Mempool
Ouroboros.Consensus.Byron.Ledger.NetworkProtocolVersion
Ouroboros.Consensus.Byron.Ledger.Orphans
Ouroboros.Consensus.Byron.Ledger.PBFT
Ouroboros.Consensus.Byron.Ledger.Serialisation
Ouroboros.Consensus.Byron.Node
Ouroboros.Consensus.Byron.Node.Serialisation
Ouroboros.Consensus.Byron.Protocol

build-depends: base >=4.14 && <4.17
, bytestring >=0.10 && <0.12
, cardano-binary < 1.6
, cardano-crypto
, cardano-crypto-class
, cardano-crypto-wrapper
, cardano-ledger-byron
, cardano-prelude
, cardano-slotting
, cborg >=0.2.2 && <0.3
, containers >=0.5 && <0.7
, cryptonite >=0.25 && <0.31
, formatting >=6.3 && <7.2
, mtl >=2.2 && <2.3
, serialise >=0.2 && <0.3
, nothunks
, text >=1.2 && <1.3

, ouroboros-network-api
, ouroboros-network-protocols
, ouroboros-consensus

default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wpartial-fields
-Widentities
-Wredundant-constraints
-Wmissing-export-lists
if flag(asserts)
ghc-options: -fno-ignore-asserts

executable db-converter
hs-source-dirs: tools/db-converter
main-is: Main.hs
build-depends: base >=4.14 && <4.17
, bytestring
, cardano-binary
, cardano-ledger-byron
, directory
, filepath
, mtl
, optparse-generic
, resourcet
, streaming
, text

, ouroboros-network
, ouroboros-consensus
, ouroboros-consensus-byron
, ouroboros-consensus-diffusion

default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wpartial-fields
-Widentities
-Wredundant-constraints
-Wmissing-export-lists

0 comments on commit 2b047eb

Please sign in to comment.