-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathhydra-chain-observer.cabal
120 lines (111 loc) · 2.62 KB
/
hydra-chain-observer.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
cabal-version: 3.0
name: hydra-chain-observer
version: 0.20.1
synopsis: Hydra Chain Observer
author: IOG
copyright: 2023 IOG
license: Apache-2.0
license-files:
LICENSE
NOTICE
source-repository head
type: git
location: https://github.com/cardano-scaling/hydra
common project-config
default-language: GHC2021
default-extensions:
BangPatterns
BinaryLiterals
ConstraintKinds
DataKinds
DefaultSignatures
DeriveAnyClass
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
DerivingStrategies
EmptyDataDecls
ExistentialQuantification
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
NoImplicitPrelude
NumericUnderscores
OverloadedStrings
PartialTypeSignatures
PatternGuards
PatternSynonyms
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeFamilies
TypeSynonymInstances
ViewPatterns
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages
-fprint-potential-instances
library
import: project-config
hs-source-dirs: src
ghc-options: -haddock
build-depends:
, base >=4.8.0
, base16-bytestring
, blockfrost-client >=0.9.1.0
, http-conduit
, hydra-cardano-api
, hydra-node
, hydra-plutus
, hydra-prelude
, hydra-tx
, io-classes
, network-uri
, optparse-applicative
, ouroboros-network-protocols
, retry
exposed-modules:
Hydra.Blockfrost.ChainObserver
Hydra.ChainObserver
Hydra.ChainObserver.NodeClient
Hydra.ChainObserver.Options
Hydra.Ouroborus.ChainObserver
executable hydra-chain-observer
import: project-config
hs-source-dirs: exe
main-is: Main.hs
build-depends:
, hydra-chain-observer
, hydra-prelude
test-suite tests
import: project-config
ghc-options: -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: test
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends:
, hspec
, hspec-golden-aeson
, hydra-cardano-api
, hydra-chain-observer
, hydra-node
, hydra-prelude
, hydra-test-utils
, hydra-tx
, hydra-tx:testlib
, QuickCheck
other-modules:
Hydra.ChainObserverSpec
Spec
build-tool-depends: hspec-discover:hspec-discover