-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathcustomer-deposit-wallet.cabal
172 lines (161 loc) · 4.25 KB
/
customer-deposit-wallet.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
cabal-version: 3.6
build-type: Simple
name: customer-deposit-wallet
version: 0.2024.9.3
synopsis: A wallet for the Cardano blockchain.
description: Please see README.md
homepage: https://github.com/cardano-foundation/cardano-wallet
license: Apache-2.0
license-file: LICENSE
author: Cardano Foundation (High Assurance Lab)
maintainer: [email protected]
copyright: 2023 Cardano Foundation
category: Web
data-files: data/swagger.json
extra-source-files:
spec/**/*.lagda.md
spec/**/*.lhs.md
spec/**/*.openapi.yaml
common language
default-language:
Haskell2010
default-extensions:
NoImplicitPrelude
OverloadedStrings
common opts-lib
ghc-options:
-Wall -Wcompat
-Wredundant-constraints
-Wincomplete-uni-patterns -Wincomplete-record-updates
if flag(release)
ghc-options: -O2 -Werror
common opts-exe
import: opts-lib
ghc-options: -threaded -rtsopts
flag release
description: Enable optimization and `-Werror`
default: False
manual: True
library
import: language, opts-lib
hs-source-dirs: src
build-depends:
, async
, base
, bytestring
, cardano-crypto
, cardano-wallet:cardano-wallet
, cardano-wallet-network-layer
, cardano-wallet-read == 0.2024.8.27
, cardano-ledger-byron
, containers
, contra-tracer
, customer-deposit-wallet-pure
, delta-store
, delta-table
, delta-types
, io-classes
, iohk-monitoring-extra
, OddWord
, sqlite-simple
, text
, transformers
, time
, cardano-ledger-api
, cardano-strict-containers
, microlens
exposed-modules:
Cardano.Wallet.Deposit.IO
Cardano.Wallet.Deposit.IO.DB
Cardano.Wallet.Deposit.IO.Network.Mock
Cardano.Wallet.Deposit.IO.Network.Type
Cardano.Wallet.Deposit.Pure
Cardano.Wallet.Deposit.Pure.Balance
Cardano.Wallet.Deposit.Pure.UTxO
Cardano.Wallet.Deposit.Pure.UTxOHistory
Cardano.Wallet.Deposit.Pure.Submissions
Cardano.Wallet.Deposit.Read
Cardano.Wallet.Deposit.Write
test-suite scenario
import: language, opts-exe
type: exitcode-stdio-1.0
hs-source-dirs: test/scenario
main-is: test-suite-scenario.hs
build-tool-depends:
markdown-unlit:markdown-unlit
ghc-options:
-pgmL markdown-unlit
build-depends:
, base
, bytestring
, cardano-crypto
, cardano-wallet-test-utils
, containers
, contra-tracer
, customer-deposit-wallet
, delta-store
, hspec >=2.8.2
other-modules:
Test.Scenario.Blockchain
Test.Scenario.Wallet.Deposit.Exchanges
Test.Scenario.Wallet.Deposit.Run
library customer-deposit-wallet-http
import: language, opts-lib
hs-source-dirs: http
build-depends:
, aeson
, aeson-pretty
, base
, bytestring
, cardano-wallet-read
, customer-deposit-wallet
, http-media
, insert-ordered-containers
, lens
, memory
, openapi3
, servant
, servant-server
, text
, text-class
, warp
exposed-modules:
Cardano.Wallet.Deposit.HTTP
Cardano.Wallet.Deposit.HTTP.Endpoints
Cardano.Wallet.Deposit.HTTP.Implementation
Cardano.Wallet.Deposit.HTTP.Types.API
Cardano.Wallet.Deposit.HTTP.Types.JSON
Cardano.Wallet.Deposit.HTTP.Types.JSON.Encoding
Cardano.Wallet.Deposit.HTTP.Types.OpenAPI
test-suite unit
import: language, opts-exe
type: exitcode-stdio-1.0
hs-source-dirs: test/unit
main-is: test-suite-unit.hs
build-depends:
, aeson
, aeson-pretty
, base
, bytestring
, cardano-crypto
, cardano-wallet-test-utils
, customer-deposit-wallet:{customer-deposit-wallet, customer-deposit-wallet-http}
, directory
, hspec >=2.8.2
, hspec-golden
, openapi3
, QuickCheck
, with-utf8
build-tool-depends: hspec-discover:hspec-discover
other-modules:
Cardano.Wallet.Deposit.HTTP.JSON.JSONSpec
Cardano.Wallet.Deposit.HTTP.OpenAPISpec
Paths_customer_deposit_wallet
Spec
executable customer-deposit-wallet
import: language, opts-exe
hs-source-dirs: exe
build-depends:
, base
main-is:
customer-deposit-wallet.hs