forked from input-output-hk/plutus-pioneer-program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plutus-pioneer-program-week06.cabal
112 lines (104 loc) · 3.7 KB
/
plutus-pioneer-program-week06.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: plutus-pioneer-program-week06
Version: 0.1.0.0
Author: Lars Bruenjes
Maintainer: [email protected]
Build-Type: Simple
Copyright: © 2021 Lars Bruenjes
License: Apache-2.0
License-files: LICENSE
library
hs-source-dirs: src
exposed-modules: Week06.Monitor
Week06.PAB
Week06.Token.OffChain
Week06.Token.OnChain
Week06.Trace
Week06.Utils
build-depends: aeson
, base ^>=4.14.1.0
, bytestring
, cardano-api
, cardano-crypto-class
, cardano-ledger-core
, cardano-ledger-shelley
, cardano-wallet-core
, containers
, data-default
, freer-extras
, openapi3
, playground-common
, plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-ledger-constraints
, plutus-pab
, plutus-tx-plugin
, plutus-tx
, plutus-use-cases
, prettyprinter
, serialise
, text
default-language: Haskell2010
ghc-options: -Wall -fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas -fno-strictness -fno-spec-constr -fno-specialise
executable token-pab
main-is: token-pab.hs
hs-source-dirs: app
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: aeson
, base ^>= 4.14.1.0
, data-default
, freer-extras
, freer-simple
, plutus-contract
, plutus-ledger
, plutus-ledger-constraints
, plutus-pab
, plutus-pioneer-program-week06
, plutus-use-cases
, text
executable mint-token
main-is: mint-token.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: base ^>= 4.14.1.0
, plutus-contract
, plutus-pab
, plutus-pioneer-program-week06
, req ^>= 3.9.0
executable monitor
main-is: monitor.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: aeson
, base ^>= 4.14.1.0
, plutus-contract
, plutus-ledger-api
, plutus-pab
, plutus-pioneer-program-week06
, req ^>= 3.9.0
, text
executable payment-key-hash
main-is: payment-key-hash.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: base ^>= 4.14.1.0
, plutus-pioneer-program-week06
executable stake-key-hash
main-is: stake-key-hash.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: base ^>= 4.14.1.0
, plutus-pioneer-program-week06
executable token-policy
main-is: token-policy.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: base ^>= 4.14.1.0
, plutus-pioneer-program-week06
executable token-name
main-is: token-name.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: base ^>= 4.14.1.0
, plutus-pioneer-program-week06