forked from Savissy/plutus-tx-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplinth-template.cabal
More file actions
68 lines (61 loc) · 1.5 KB
/
plinth-template.cabal
File metadata and controls
68 lines (61 loc) · 1.5 KB
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
cabal-version: 3.0
name: plinth-template
version: 0.1.0.0
license:
build-type: Simple
extra-doc-files: README.md
common options
ghc-options: -Wall
default-language: Haskell2010
library scripts
import: options
hs-source-dirs: src
exposed-modules:
AuctionMintingPolicy
AuctionValidator
build-depends:
, base
, plutus-core ^>=1.45.0.0
, plutus-ledger-api ^>=1.45.0.0
, plutus-tx ^>=1.45.0.0
if !(impl(ghcjs) || os(ghcjs))
build-depends: plutus-tx-plugin
executable gen-auction-validator-blueprint
import: options
hs-source-dirs: app
main-is: GenAuctionValidatorBlueprint.hs
build-depends:
, base
, bytestring
, containers
, plutus-core ^>=1.45.0.0
, plutus-ledger-api ^>=1.45.0.0
, plutus-tx ^>=1.45.0.0
, plutus-tx-plugin ^>=1.45.0.0
, scripts
executable gen-minting-policy-blueprint
import: options
hs-source-dirs: app
main-is: GenMintingPolicyBlueprint.hs
build-depends:
, base
, bytestring
, containers
, plutus-core ^>=1.45.0.0
, plutus-ledger-api ^>=1.45.0.0
, plutus-tx ^>=1.45.0.0
, plutus-tx-plugin ^>=1.45.0.0
, scripts
test-suite auction-tests
type: exitcode-stdio-1.0
main-is: AuctionValidatorSpec.hs
hs-source-dirs: test
build-depends:
base >=4.7 && <5
, scripts
, hspec
, QuickCheck
, plutus-ledger-api
, plutus-tx
, test-framework
default-language: Haskell2010