-
Notifications
You must be signed in to change notification settings - Fork 2
/
revenue-sharing.cabal
46 lines (42 loc) · 1.09 KB
/
revenue-sharing.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
cabal-version: 2.4
name: revenue-sharing
version: 1.0.0.0
license: MIT
author: Richard Wallace, Jonathan Fischoff
maintainer: [email protected]
build-type: Simple
common lang
build-depends: base ^>=4.14
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-Wunused-packages
library
import: lang
exposed-modules: Canonical.RevenueSharing
build-depends:
, aeson
, bytestring
, cardano-api
, containers
, plutus-ledger
, 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 -Werror
executable create-revenue-split-sc
import: lang
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-T
build-depends:
, cardano-api
, optparse-applicative
, plutus-ledger
, plutus-tx
, revenue-sharing