Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Reorganized the dependencies (build-depends) in the cabal files (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
koslambrou authored Jul 8, 2022
1 parent 33cbd2e commit 33179f5
Showing 1 changed file with 56 additions and 12 deletions.
68 changes: 56 additions & 12 deletions plutus-streaming/plutus-streaming.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,20 @@ library
import: lang
hs-source-dirs: src
exposed-modules: Plutus.Streaming

--------------------------
-- Other IOG dependencies
--------------------------
build-depends:
, async
, base >=4.9 && <5
, cardano-api
, ouroboros-network

------------------------
-- Non-IOG dependencies
------------------------
build-depends:
, async
, base >=4.9 && <5
, stm
, streaming

Expand All @@ -46,14 +55,25 @@ executable plutus-streaming-example-1
Common
Orphans

--------------------
-- Local components
--------------------
build-depends: plutus-streaming

--------------------------
-- Other IOG dependencies
--------------------------
build-depends: cardano-api

------------------------
-- Non-IOG dependencies
------------------------
build-depends:
, aeson
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cardano-api
, optparse-applicative
, plutus-streaming
, streaming
, text

Expand All @@ -65,16 +85,28 @@ executable plutus-streaming-example-2
Common
Orphans

--------------------
-- Local components
--------------------
build-depends:
, plutus-ledger
, plutus-script-utils
, plutus-streaming

--------------------------
-- Other IOG dependencies
--------------------------
build-depends: cardano-api

------------------------
-- Non-IOG dependencies
------------------------
build-depends:
, aeson
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cardano-api
, optparse-applicative
, plutus-ledger
, plutus-script-utils
, plutus-streaming
, streaming

executable plutus-streaming-example-3
Expand All @@ -85,13 +117,25 @@ executable plutus-streaming-example-3
Common
Orphans

--------------------
-- Local components
--------------------
build-depends:
, plutus-chain-index-core
, plutus-streaming

--------------------------
-- Other IOG dependencies
--------------------------
build-depends: cardano-api

------------------------
-- Non-IOG dependencies
------------------------
build-depends:
, aeson
, base >=4.9 && <5
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cardano-api
, optparse-applicative
, plutus-chain-index-core
, plutus-streaming
, streaming

0 comments on commit 33179f5

Please sign in to comment.