Skip to content

Commit

Permalink
Adjust bounds
Browse files Browse the repository at this point in the history
Some were too restrictive, some were missing upper bounds.
  • Loading branch information
andreabedini committed Mar 21, 2023
1 parent c0c6b6e commit a40c64f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions freer-extras/freer-extras.cabal
Expand Up @@ -61,19 +61,19 @@ library
-- Non-IOG dependencies
------------------------
build-depends:
, aeson ^>=2.0.1.0
, aeson >=2.0 && <2.2
, base >=4.7 && <5
, beam-core ^>=0.10.0.0
, beam-postgres ^>=0.5.3.0
, beam-sqlite ^>=0.5.2.0
, containers ^>=0.6.5.1
, data-default ^>=0.7.1.1
, freer-simple ^>=1.2.1.2
, lens ^>=5.2.1
, lens >=4.19 && <4.20 || >=5.0 && <5.3
, mtl ^>=2.2.2
, postgresql-simple ^>=0.6.5
, prettyprinter ^>=1.7.1
, resource-pool ^>=0.4.0.0
, resource-pool >=0.2 && <0.5
, sqlite-simple ^>=0.4.18.2
, streaming ^>=0.2.3.1
, text ^>=1.2.4.1
Expand Down
14 changes: 7 additions & 7 deletions plutus-ledger/plutus-ledger.cabal
Expand Up @@ -109,13 +109,13 @@ library
--------------------
-- Local components
--------------------
build-depends: plutus-script-utils >=1.2.0
build-depends: plutus-script-utils ^>=1.2.0

--------------------------
-- Other IOG dependencies
--------------------------
build-depends:
, cardano-api >=1.35
, cardano-api ^>=1.35
, cardano-binary ^>=1.5.0
, cardano-crypto ^>=1.1.1
, cardano-crypto-class ^>=2.0.0.0.1
Expand All @@ -128,9 +128,9 @@ library
, cardano-slotting ^>=0.1.0.2
, iohk-monitoring ^>=0.1.11.1
, ouroboros-consensus-shelley ^>=0.1.0.1
, plutus-core >=1.0.0
, plutus-ledger-api >=1.0.0
, plutus-tx >=1.0.0
, plutus-core ^>=1.0.0.0
, plutus-ledger-api ^>=1.0.0.0
, plutus-tx ^>=1.0.0.0

------------------------
-- Non-IOG dependencies
Expand All @@ -139,7 +139,7 @@ library
-- has been bumped to include the instance of Ord for AddressInEra
-- defined there.
build-depends:
, aeson ^>=2.0.3.0
, aeson >=2.0 && <2.2
, base >=4.9 && <5
, base16-bytestring ^>=1.0.2.0
, bytestring ^>=0.10.12.0
Expand All @@ -149,7 +149,7 @@ library
, flat ^>=0.4.4.0.0.0.0.2
, hashable ^>=1.3.5.0
, http-api-data ^>=0.5
, lens ^>=5.2.1
, lens >=5.0 && <5.3
, memory ^>=0.18.0
, mtl ^>=2.2.2
, newtype-generics ^>=0.6.2
Expand Down
14 changes: 7 additions & 7 deletions plutus-script-utils/plutus-script-utils.cabal
Expand Up @@ -84,18 +84,18 @@ library
-- Other IOG dependencies
--------------------------
build-depends:
, cardano-api >=1.35
, cardano-ledger-alonzo ^>=0.1.0.0
, plutus-core >=1.0.0
, plutus-ledger-api >=1.0.0
, plutus-tx >=1.0.0
, plutus-tx-plugin >=1.0.0
, cardano-api ^>=1.35
, cardano-ledger-alonzo ^>=0.1
, plutus-core ^>=1.0.0.0
, plutus-ledger-api ^>=1.0.0.0
, plutus-tx ^>=1.0.0.0
, plutus-tx-plugin ^>=1.0.0.0

------------------------
-- Non-IOG dependencies
------------------------
build-depends:
, aeson ^>=2.0.1.0
, aeson >=2.0 && <2.2
, base >=4.9 && <5
, bytestring ^>=0.10.12.0
, mtl ^>=2.2.2
Expand Down

0 comments on commit a40c64f

Please sign in to comment.