forked from input-output-hk/plutus-pioneer-program
-
Notifications
You must be signed in to change notification settings - Fork 29
/
plutus-pioneer-program-week04.cabal
40 lines (38 loc) · 1.38 KB
/
plutus-pioneer-program-week04.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
Cabal-Version: 2.4
Name: plutus-pioneer-program-week04
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: Week04.Contract
, Week04.Either
, Week04.Homework
, Week04.Maybe
, Week04.Monad
, Week04.Solution
, Week04.Trace
, Week04.Writer
build-depends: aeson
, base ^>=4.14.1.0
, containers
, freer-extras
, playground-common
, plutus-contract
, plutus-ledger
, plutus-ledger-api
, plutus-tx-plugin
, plutus-tx
, 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 hello
hs-source-dirs: app
main-is: hello.hs
build-depends: base ^>=4.14.1.0
default-language: Haskell2010
ghc-options: -Wall -O2