-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplutus-pioneer-program-week07.cabal
117 lines (111 loc) · 4.12 KB
/
plutus-pioneer-program-week07.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
Cabal-Version: 2.4
Name: plutus-pioneer-program-week07
Version: 0.1.0.0
Author: Lars Bruenjes
Maintainer: brunjlar@gmail.com
Build-Type: Simple
Copyright: © 2021 Lars Bruenjes
License: Apache-2.0
License-files: LICENSE
library
hs-source-dirs: src
exposed-modules: Week07.EvenOdd
, Week07.TestEvenOdd
, Week07.EvenOddAlternative1
, Week07.EvenOddOriginal
, Week07.StateMachine
, Week07.StateMachineOriginal
, Week07.RockPaperScissors
, Week07.StateMachine
, Week07.TestEvenOdd
, Week07.TestRockPaperScissors
, Week07.TestStateMachine
, Week07.RPS.RockPaperScissors
, Week07.RPS.TestRockPaperScissors
, Week07.RPS.PAB
, Week07.RPS.Monitor
, Week07.RPS.Utils
, Week07.RPS.Send
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
, random
, 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 rps-pab
main-is: rps-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-week07
, plutus-use-cases
, text
executable game
main-is: game.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: base ^>= 4.14.1.0
, aeson
, plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-pab
, plutus-pioneer-program-week07
, req ^>= 3.9.0
, text
, uuid
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
, plutus-ledger-api
, plutus-pab
, plutus-pioneer-program-week07
, req ^>= 3.9.0
, text
executable send
main-is: send.hs
hs-source-dirs: app
ghc-options: -Wall
build-depends: aeson
, base ^>= 4.14.1.0
, plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-pab
, plutus-pioneer-program-week07
, req ^>= 3.9.0
, text