-
Notifications
You must be signed in to change notification settings - Fork 44
/
cardano-marketplace.cabal
191 lines (173 loc) · 3.88 KB
/
cardano-marketplace.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
cabal-version: 2.4
name: cardano-marketplace
version: 3.0.0.0
-- A short (one-line) description of the package.
-- synopsis: Simple marketplace for buying and selling of tokens.
-- A longer description of the package.
-- description: Simple marketplace for buying and selling of tokens.
-- A URL where users can report bugs.
-- bug-reports:
license: Apache-2.0
author: Sireto
maintainer: Sireto
-- A copyright notice.
-- copyright:
-- category:
-- extra-source-files: CHANGELOG.md
library marketplace-plutus
exposed-modules:
Plutus.Contracts.V1.SimpleMarketplace
Plutus.Contracts.V2.ConfigurableMarketplace
Plutus.Contracts.V2.SimpleMarketplace
Plutus.Contracts.V2.MarketplaceConfig
Plutus.Contracts.V3.ConfigurableMarketplace
Plutus.Contracts.V3.SimpleMarketplace
Plutus.Contracts.V3.MarketplaceConfig
hs-source-dirs: marketplace-plutus
build-depends:
base -any
, plutus-tx
, cardano-ledger-alonzo
, plutus-ledger-api
, plutus-tx-plugin
, plutus-core
, aeson
, bytestring
, cardano-api
, serialise
, kuber
library marketplace-core
exposed-modules:
Cardano.Marketplace.V1.Core
Cardano.Marketplace.V2.Core
Cardano.Marketplace.V3.Core
Cardano.Marketplace.Common.TextUtils
Cardano.Marketplace.Common.TransactionUtils
Cardano.Marketplace.SimpleMarketplace
Cardano.Marketplace.ConfigurableMarketplace
hs-source-dirs: marketplace-core
build-depends:
base -any
, aeson
, bytestring
, containers
, unordered-containers
, filepath
, serialise
, http-types
, marketplace-plutus
, cardano-api
, plutus-ledger-api
, text
, text-conversions
, plutus-tx
, mtl
, kuber
executable market-cli
main-is: Main.hs
hs-source-dirs: marketplace-cli
other-modules:
Cli
build-depends:
base -any
, directory
, cmdargs
, plutus-ledger-api
, text
, containers
, bytestring
, aeson
, serialise
, cardano-ledger-shelley
, cardano-ledger-core
, cardano-ledger-alonzo
, cardano-api
, kuber
, marketplace-plutus
, marketplace-core
test-suite market-test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
test-options: -v2
other-modules:
Test.Common
Test.TestStoryConfigurableMarket
Test.Reporting
Test.TestContext
Test.TestStorySimpleMarket
build-depends:
base >= 4.9 && <5
, hspec
, hspec-junit-formatter >= 1.0
, kuber
, lens
, containers
, directory
, bytestring
, serialise
, cborg
, cardano-binary
, text
, aeson
, text-conversions
, cardano-api
, cardano-ledger-alonzo
, cardano-ledger-shelley
, cardano-slotting
, plutus-ledger-api
, plutus-tx
, ouroboros-network
, cardano-binary
, vector
, unordered-containers
, marketplace-plutus
, marketplace-core
, time
, cardano-ledger-babbage
, exceptions
benchmark marketplace
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
Main-is: Main.hs
default-language: Haskell2010
other-modules:
Reporting
ParallelUtils
Wallet
build-depends:
base
, cardano-api
, aeson
, statistics
, vector
, text
, containers
, criterion
, plutus-tx
, cborg
, cardano-binary
, mtl
, split
, clock
, time
, async
, cardano-ledger-core
, random
, kuber
, marketplace-core
, marketplace-plutus
, plutus-ledger-api
, plutus-tx
, directory
, random-shuffle
, bytestring
, cardano-ledger-babbage
, cardano-ledger-alonzo
, cardano-ledger-shelley
, cardano-crypto
, cardano-crypto-class
, cardano-addresses
, memory
, lens