-
Notifications
You must be signed in to change notification settings - Fork 1
/
reward.cabal
43 lines (38 loc) · 924 Bytes
/
reward.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
cabal-version: 2.4
name: reward
version: 1.0.0.0
license: MIT
author: Jonathan Fischoff
maintainer: [email protected]
build-type: Simple
common lang
build-depends: base >=4.14
default-language: GHC2021
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-Werror
library
import: lang
exposed-modules: Canonical.Reward
build-depends:
, bytestring
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, serialise
hs-source-dirs: src
ghc-options:
-fobject-code -fno-ignore-interface-pragmas
-fno-omit-interface-pragmas -Wno-unused-packages
executable create-sc
import: lang
hs-source-dirs: app
main-is: Main.hs
build-depends:
, reward
, plutus-ledger-api
, optparse-generic
, bytestring
, cborg
, text