This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
buy-sell.cabal
72 lines (54 loc) · 1.93 KB
/
buy-sell.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
cabal-version: 2.4
name: buy-sell
version: 1.0.0
description: Buy/sell contract for Adapix.
author: Martín Schere
maintainer: [email protected]
license: Apache-2.0
license-file: LICENSE
build-type: Simple
Flag unexpected_thunks
Description: Turn on unexpected thunks checks
Default: False
common base
build-depends: base >= 4.14 && < 4.15
common project-config
default-language: Haskell2010
default-extensions: NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
common maybe-Win32
if os(windows)
build-depends: Win32
library
import: base, project-config
, maybe-Win32
if flag(unexpected_thunks)
cpp-options: -DUNEXPECTED_THUNKS
hs-source-dirs: src
exposed-modules: Cardano.Marketplace.BuySell
build-depends: bytestring
, cardano-api
, plutus-core
-- , plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, serialise
-- , text
ghc-options: -fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas
executable buy-sell
import: base, project-config
hs-source-dirs: app
main-is: buy-sell.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends: cardano-api
, plutus-ledger
, buy-sell