-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcardano-options.cabal
145 lines (139 loc) · 3.61 KB
/
cardano-options.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
cabal-version: 2.4
name: cardano-options
version: 1.0.0.0
synopsis: A distributed Cardano P2P Options Trading protocol.
license: Apache-2.0
author: fallen-icarus
maintainer: [email protected]
copyright: 2023 fallen-icarus
extra-source-files:
CHANGELOG.md
, aiken/plutus.json
, mainnet-params.json
, preprod-params.json
common lang
build-depends: base
default-language: GHC2021
ghc-options: -Wall -Wredundant-constraints
default-extensions:
OverloadedLabels
OverloadedStrings
RecordWildCards
common internals
build-depends:
cardano-api
, plutus-ledger
, plutus-ledger-api
, plutus-tx
, plutus-core
, plutus-script-utils
, containers
, aeson
, text
, bytestring
, prettyprinter
, relude
, optics-core
library
import:
lang
, internals
exposed-modules:
CardanoOptions
, CardanoOptions.Blueprints
, CardanoOptions.Types
, CardanoOptions.Utils
build-depends:
serialise
, file-embed
, base16-bytestring
, optics-th
, cardano-loans
, microlens
hs-source-dirs: src
test-suite cardano-options-tests
import:
lang
, internals
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test
ghc-options:
other-modules:
Test.ActiveUTxOs
, Test.ActiveUTxOs.CloseExpiredContract
, Test.ActiveUTxOs.CloseExpiredContract.Benchmarks
, Test.ActiveUTxOs.CloseExpiredContract.Failures
, Test.ActiveUTxOs.CloseExpiredContract.Regressions
, Test.ActiveUTxOs.ExecuteContract
, Test.ActiveUTxOs.ExecuteContract.Benchmarks
, Test.ActiveUTxOs.ExecuteContract.Failures
, Test.ActiveUTxOs.ExecuteContract.Regressions
, Test.ActiveUTxOs.Misc
, Test.ActiveUTxOs.PurchaseContract
, Test.ActiveUTxOs.PurchaseContract.Benchmarks
, Test.ActiveUTxOs.PurchaseContract.Failures
, Test.ActiveUTxOs.PurchaseContract.Regressions
, Test.ActiveUTxOs.UpdatePaymentAddress
, Test.ActiveUTxOs.UpdatePaymentAddress.Benchmarks
, Test.ActiveUTxOs.UpdatePaymentAddress.Failures
, Test.ActiveUTxOs.UpdatePaymentAddress.Regressions
, Test.Beacons
, Test.Misc
, Test.Prelude
, Test.ProposalUTxOs
, Test.ProposalUTxOs.CloseProposal
, Test.ProposalUTxOs.CloseProposal.Benchmarks
, Test.ProposalUTxOs.CloseProposal.Failures
, Test.ProposalUTxOs.CloseProposal.Regressions
, Test.ProposalUTxOs.CreateProposal
, Test.ProposalUTxOs.CreateProposal.Benchmarks
, Test.ProposalUTxOs.CreateProposal.Failures
, Test.ProposalUTxOs.CreateProposal.Regressions
, Test.ProposalUTxOs.UpdateProposal
, Test.ProposalUTxOs.UpdateProposal.Benchmarks
, Test.ProposalUTxOs.UpdateProposal.Failures
, Test.ProposalUTxOs.UpdateProposal.Regressions
build-depends:
cardano-options
, data-default
, tasty
, tasty-hunit
, mtl
, microlens
, cardano-node-emulator
, optics-extra
executable cardano-options
import:
lang
, internals
main-is: Main.hs
other-modules:
CLI.Data.ApiService
, CLI.Data.Asset
, CLI.Data.Bech32Address
, CLI.Data.Commands
, CLI.Data.Network
, CLI.Data.OptionsUTxO
, CLI.Data.Output
, CLI.Data.PersonalUTxO
, CLI.Data.TxCBOR
, CLI.Parsers
, CLI.Query
, CLI.Query.Koios
, CLI.Run
build-depends:
cardano-options
, cardano-addresses
, optparse-applicative
, servant
, servant-client
, http-client
, http-client-tls
, vector
, aeson-pretty
, file-embed
, prettyprinter-ansi-terminal
hs-source-dirs: app
default-extensions:
NoImplicitPrelude