Skip to content

Commit

Permalink
Fix dependency issues
Browse files Browse the repository at this point in the history
These were introduced by rebasing on new master.
  • Loading branch information
eyeinsky committed Sep 30, 2022
1 parent 84634a6 commit 6471cc1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
7 changes: 3 additions & 4 deletions marconi/app/Main.hs
Expand Up @@ -17,17 +17,16 @@ import Prettyprinter.Render.Text (renderStrict)
import Cardano.Api (BlockHeader, ChainPoint (ChainPoint, ChainPointAtGenesis), Hash, NetworkId (Mainnet, Testnet),
NetworkMagic (NetworkMagic), SlotNo (SlotNo), deserialiseFromBech32, deserialiseFromRawBytesHex,
proxyToAsType)
import Cardano.Api qualified as C
import Cardano.BM.Setup (withTrace)
import Cardano.BM.Trace (logError)
import Cardano.BM.Tracing (defaultConfigStdout)
import Data.List.NonEmpty qualified as NonEmpty (NonEmpty, nonEmpty)
import Data.List.NonEmpty qualified as NonEmpty

import Marconi.Indexers (combinedIndexer)
import Marconi.Indexers (TargetAddresses, combinedIndexer)
import Marconi.Logging (logging)
import Plutus.Streaming (ChainSyncEventException (NoIntersectionFound), withChainSyncEventStream)



-- | This executable is meant to exercise a set of indexers (for now datumhash -> datum)
-- against the mainnet (meant to be used for testing).
--
Expand Down
12 changes: 3 additions & 9 deletions marconi/marconi.cabal
Expand Up @@ -51,9 +51,7 @@ library
--------------------
-- Local components
--------------------
build-depends:
, plutus-ledger
, rewindable-index
build-depends: rewindable-index

--------------------------
-- Other IOG dependencies
Expand All @@ -64,6 +62,7 @@ library
, cardano-ledger-core
, cardano-ledger-shelley
, cardano-ledger-shelley-ma
, plutus-ledger
, plutus-ledger-api
, plutus-streaming

Expand All @@ -76,6 +75,7 @@ library
, containers
, lens
, mwc-random
, optparse-applicative
, serialise
, sqlite-simple
, stm
Expand All @@ -94,29 +94,23 @@ executable marconi
--------------------
build-depends:
, marconi
, plutus-ledger
, plutus-streaming
, rewindable-index

--------------------------
-- Other IOG dependencies
--------------------------
build-depends:
, cardano-api
, iohk-monitoring
, plutus-ledger-api

------------------------
-- Non-IOG dependencies
------------------------
build-depends:
, base >=4.9 && <5
, bytestring
, containers
, lens
, optparse-applicative
, prettyprinter
, stm
, streaming
, text
, time
Expand Down

0 comments on commit 6471cc1

Please sign in to comment.