-
Notifications
You must be signed in to change notification settings - Fork 0
/
gigsplitter.cabal
86 lines (75 loc) · 2.32 KB
/
gigsplitter.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
cabal-version: 3.0
name: gigsplitter
version: 0.1.0.0
synopsis: A Plutus app to split payments among band members
stability: experimental
-- A longer description of the package.
-- description:
homepage: https://github.com/coveloper/gigsplitter
bug-reports: https://github.com/coveloper
license: MIT
license-file: LICENSE
author: Jon Bauer
maintainer: https://github.com/coveloper
copyright: Covelop 2022
-- category:
extra-source-files:
CHANGELOG.md
README.md
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
ghc-options:
-Wall -Wnoncanonical-monad-instances
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities -rtsopts
-- See Plutus Tx readme
-fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas
if flag(defer-plugin-errors)
ghc-options: -fplugin-opt PlutusTx.Plugin:defer-errors
library
import: lang
-- Modules exported by the library.
exposed-modules:
--MyLib,
--Validators.DepositValidator,
Validators.PayoutValidator,
GigsplitterEmulator,
GigsplitterOffChain,
GigsplitterOnChain
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends:
base >= 4.9 && < 5,
aeson -any,
bytestring -any,
containers -any,
freer-extras -any,
playground-common -any,
plutus-contract -any,
plutus-ledger -any,
plutus-ledger-api -any,
plutus-ledger-constraints -any,
plutus-tx -any,
plutus-tx-plugin -any,
plutus-script-utils -any,
text -any,
lens -any,
cardano-api,
cardano-binary,
--additionals
serialise -any,
base16-bytestring,
data-default,
openapi3
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010