-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathplutus-lobster.cabal
89 lines (71 loc) · 2.59 KB
/
plutus-lobster.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
87
88
89
cabal-version: 2.4
name: plutus-lobster
version: 1.0.0
description: Lobster naming.
author: Lars Brünjes
maintainer: [email protected]
license: Apache-2.0
license-file: LICENSE
build-type: Simple
data-files: ENGivenMale.json
extra-source-files: README.md
Flag unexpected_thunks
Description: Turn on unexpected thunks checks
Default: False
common base
build-depends: base >= 4.14 && < 4.15
common project-config
default-language: Haskell2010
default-extensions: NoImplicitPrelude
OverloadedStrings
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
common maybe-Win32
if os(windows)
build-depends: Win32
library
import: base, project-config
, maybe-Win32
if flag(unexpected_thunks)
cpp-options: -DUNEXPECTED_THUNKS
hs-source-dirs: src
exposed-modules: Cardano.PlutusLobster.LobsterScript
build-depends: bytestring
, cardano-api
, plutus-core
, plutus-ledger
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, serialise
ghc-options: -fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas
executable plutus-lobster-tokens
import: base, project-config
hs-source-dirs: app
main-is: plutus-lobster-tokens.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends: cardano-api
, plutus-ledger
, plutus-lobster
executable plutus-lobster
import: base, project-config
hs-source-dirs: app
main-is: plutus-lobster.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends: cardano-api
, plutus-ledger
, plutus-lobster
executable plutus-lobster-names
hs-source-dirs: app
main-is: plutus-lobster-names.hs
other-modules: Paths_plutus_lobster
autogen-modules: Paths_plutus_lobster
ghc-options: -Wall
build-depends: aeson
, base
, bytestring