Skip to content

Commit ecd4b2b

Browse files
committed
Separate visualize-logs exe
Signed-off-by: Sasha Bogicevic <[email protected]>
1 parent b2daec6 commit ecd4b2b

File tree

3 files changed

+50
-19
lines changed

3 files changed

+50
-19
lines changed

hydra-node/hydra-node.cabal

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -248,25 +248,6 @@ executable hydra-node
248248

249249
ghc-options: -threaded -rtsopts -with-rtsopts=-N4
250250

251-
executable visualize-logs
252-
import: project-config
253-
hs-source-dirs: exe/visualize-logs
254-
main-is: Main.hs
255-
build-depends:
256-
, aeson
257-
, attoparsec
258-
, base
259-
, conduit
260-
, hydra-cardano-api
261-
, hydra-node
262-
, hydra-prelude
263-
, lens
264-
, lens-aeson
265-
, optparse-applicative
266-
, text
267-
268-
ghc-options: -threaded -rtsopts -with-rtsopts=-N4
269-
270251
benchmark tx-cost
271252
import: project-config
272253
hs-source-dirs: bench/tx-cost
File renamed without changes.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
cabal-version: 3.0
2+
name: visualize-logs
3+
version: 0.22.4
4+
synopsis: Visualize Hydra node logs
5+
author: IOG
6+
copyright: 2022 IOG
7+
license: Apache-2.0
8+
9+
common project-config
10+
default-language: GHC2021
11+
default-extensions:
12+
DataKinds
13+
DefaultSignatures
14+
DeriveAnyClass
15+
DeriveDataTypeable
16+
DerivingStrategies
17+
DuplicateRecordFields
18+
FunctionalDependencies
19+
GADTs
20+
LambdaCase
21+
MultiWayIf
22+
NoImplicitPrelude
23+
OverloadedStrings
24+
PartialTypeSignatures
25+
PatternSynonyms
26+
TypeFamilies
27+
ViewPatterns
28+
29+
ghc-options:
30+
-Wall -Wcompat -Widentities -Wincomplete-record-updates
31+
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages
32+
-fprint-potential-instances -Wmissing-local-signatures
33+
34+
executable visualize-logs
35+
import: project-config
36+
main-is: Main.hs
37+
build-depends:
38+
, aeson
39+
, attoparsec
40+
, base
41+
, conduit
42+
, hydra-cardano-api
43+
, hydra-node
44+
, hydra-prelude
45+
, lens
46+
, lens-aeson
47+
, optparse-applicative
48+
, text
49+
50+
ghc-options: -threaded -rtsopts -with-rtsopts=-N4

0 commit comments

Comments
 (0)