forked from MartifyLabs/martify.contracts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
martify.cabal
88 lines (76 loc) · 2.83 KB
/
martify.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
Cabal-Version: 2.4
Name: martify
Version: 0.1.0.0
Build-Type: Simple
Author: Alain Magazin, Abdelkrim Dib
Maintainer: alain.magazin@outlook.com, <abdelkrim mail>
Copyright: © 2021 Alain Magazin, Abdelkrim Dib.
License: Apache-2.0
License-files: LICENSE
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
library
exposed-modules: Market.Types
, Market.Onchain
, Market.Offchain
, Market.Trace
, Utility
, SerialiseJSON
build-depends: aeson
, base ^>=4.14.1.0
, base16-bytestring
, binary
, bech32
, containers
, bytestring
, data-default
, dlist
, freer-extras
, lens
, nonempty-containers
, playground-common
, plutus-contract
, plutus-chain-index
, plutus-ledger
, plutus-ledger-api
, plutus-tx-plugin
, plutus-tx
, prettyprinter
, tagged
, text
, serialise
, cardano-api
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas -fno-strictness -fno-spec-constr -fno-specialise
executable market-plutus
import: base, project-config
hs-source-dirs: app
main-is: market-plutus.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends: cardano-api
, martify
, plutus-ledger-api
, bytestring
, cardano-ledger-alonzo
executable datum-json
import: base, project-config
hs-source-dirs: app
main-is: datum-json.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends: martify
, bytestring
, cardano-api
, plutus-tx
, aeson