-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmstoken.cabal
59 lines (56 loc) · 2.13 KB
/
mstoken.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
name: snet-upgradeable-owners-minting-policy
version: 1.0
author: SNET
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
library
import: common-all
hs-source-dirs: ./src
exposed-modules: NFT
, Token
, Validator
build-depends: base >=4.7 && <5
, aeson
, bytestring
, directory
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, containers
, text
, plutus-ledger >=1.1.0
, plutus-ledger-constraints >=1.1.0
, plutus-script-utils >=1.1.0
, cardano-api >= 1.35.4
, serialise
, base16-bytestring
default-language: Haskell2010
ghc-options:
-Wall -Wnoncanonical-monad-instances -Wunused-packages
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities -fobject-code
-fno-ignore-interface-pragmas -fno-omit-interface-pragmas
executable create-token
import: lang
main-is: Main.hs
hs-source-dirs: ./src
other-modules: NFT
, Token
, Validator
build-depends: base >=4.7 && <5
, aeson
, bytestring
, directory
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, containers
, text
, plutus-ledger >=1.1.0
, plutus-ledger-constraints >=1.1.0
, plutus-script-utils >=1.1.0
, cardano-api >= 1.35.4
, serialise
, base16-bytestring