-
Notifications
You must be signed in to change notification settings - Fork 0
/
gada-seed-sale.cabal
72 lines (68 loc) · 1.49 KB
/
gada-seed-sale.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
cabal-version: 3.4
name: gada-seed-sale
version: 0.1.0.0
author: GADA
maintainer: GADA
flag short-epoch
description: Set an epoch at two slots. For testing only.
default: False
manual: True
common lang
default-language: Haskell2010
default-extensions:
ImportQualifiedPost
NoImplicitPrelude
ghc-options:
-- -Weverything -Werror
-- For plutus
-Wno-all-missed-specialisations
-Wno-missing-local-signatures
-Wno-missing-safe-haskell-mode
-Wno-unsafe
-Wno-unused-packages
-- For plutus-tx
-fno-ignore-interface-pragmas
-fno-omit-interface-pragmas
-fobject-code
-fplugin-opt PlutusTx.Plugin:defer-errors
library
import: lang
hs-source-dirs: src
exposed-modules:
GADA.Contracts.Trace
GADA.Contracts.Gada
GADA.Contracts.Common
GADA.Contracts.OffChain
GADA.Contracts.OnChain
GADA.Contracts.Types
GADA.Contracts.Utils
GADA.Contracts.Token
build-depends:
, aeson
, base
, containers
, plutus-contract
, plutus-ledger
, plutus-ledger-constraints
, plutus-tx
, plutus-tx-plugin
, either
, lens
, data-default
test-suite seed-sale-tests
import: lang
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends:
, base
, data-default
, plutus-contract
, plutus-ledger
, plutus-ledger-constraints
, tasty
, tasty-quickcheck
, plutus-tx
, freer-simple
-- GADA Internal
, gada-seed-sale