mirror of
https://github.com/FiloSpaTeam/plutus-pioneer-program.git
synced 2024-11-14 19:02:53 +01:00
42 lines
1.4 KiB
Text
42 lines
1.4 KiB
Text
|
Cabal-Version: 2.4
|
||
|
Name: plutus-pioneer-program-week04
|
||
|
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: Week04.Contract
|
||
|
, Week04.Either
|
||
|
, Week04.Homework
|
||
|
, Week04.Maybe
|
||
|
, Week04.Monad
|
||
|
, Week04.Trace
|
||
|
, Week04.Writer
|
||
|
other-modules: Week04.Vesting
|
||
|
build-depends: aeson
|
||
|
, base ^>=4.14.1.0
|
||
|
, containers
|
||
|
, data-default
|
||
|
, 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
|