-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathjpg-store-bulk-purchase.cabal
112 lines (102 loc) · 2.58 KB
/
jpg-store-bulk-purchase.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
cabal-version: 2.4
name: jpg-store-bulk-purchase
version: 1.0.0.0
author: Richard Wallace
maintainer: rwallace@canonicalllc.com
license: Apache-2.0
license-files: LICENSE
flag defer-plugin-errors
description:
Defer errors from the plugin, useful for things like Haddock that can't handle it.
default: False
manual: True
common lang
default-language: Haskell2010
default-extensions:
LambdaCase
ViewPatterns
GeneralizedNewtypeDeriving
OverloadedStrings
StandaloneDeriving
ghc-options:
-Wall -Wnoncanonical-monad-instances -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wredundant-constraints -Widentities
-rtsopts -fobject-code -fno-ignore-interface-pragmas
-fno-omit-interface-pragmas -Wno-unrecognised-pragmas -Werror
-- See Plutus Tx readme
if flag(defer-plugin-errors)
ghc-options: -fplugin-opt PlutusTx.Plugin:defer-errors
library
import: lang
exposed-modules:
Canonical.JpgStore.BulkPurchase
Canonical.Shared
build-depends:
, aeson
, base >=4.9 && <5
, bytestring
, cardano-api
, containers
, filepath
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, serialise
, plutonomy
hs-source-dirs: src
executable create-smart-contract
import: lang
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-T
build-depends:
, base
, bytestring
, cardano-api
, cardano-ledger-alonzo
, jpg-store-bulk-purchase
, optparse-applicative
, plutus-ledger-api
test-suite integration-tests
import: lang
type: exitcode-stdio-1.0
hs-source-dirs: integration-tests
main-is: Main.hs
other-modules: AlwaysSucceed
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-T
build-depends:
, aeson
, base
, bytestring
, cardano-api
, cardano-transaction
, containers
, directory
, envparse
, extra
, filepath
, hspec
, jpg-store-bulk-purchase
, managed
, mtl
, plutus-core
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, process
, serialise
, temporary
, text
, time
, test-mint-scripts
test-suite unit-tests
import: lang
type: exitcode-stdio-1.0
hs-source-dirs: unit-tests
main-is: Main.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends: base
, jpg-store-bulk-purchase
, hspec
, plutus-tx
, plutus-ledger-api