-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaiken-utils.cabal
80 lines (73 loc) · 1.82 KB
/
aiken-utils.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
cabal-version: 3.0
name: aiken-utils
version: 0.1.0.0
license: Apache-2.0
author: Juan Salvador Magan Valero
common ghc-version-support
if (impl(ghc <9.6) || impl(ghc >=9.7))
buildable: False
common lang
default-language: Haskell2010
default-extensions:
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
DerivingStrategies
DerivingVia
ExplicitForAll
FlexibleContexts
GeneralizedNewtypeDeriving
ImportQualifiedPost
ScopedTypeVariables
StandaloneDeriving
Strict
-- See Note [-fno-full-laziness in Plutus Tx]
ghc-options:
-fno-specialise -fno-spec-constr -fno-strictness
-fno-ignore-interface-pragmas -fno-omit-interface-pragmas
-fno-unbox-strict-fields -fno-unbox-small-strict-fields
-fno-full-laziness
ghc-options:
-Wall -Wnoncanonical-monad-instances -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wredundant-constraints -Widentities
-Wunused-packages -Wmissing-deriving-strategies
---------------- Common code for benchmarking ----------------
library
import: lang
hs-source-dirs: src
exposed-modules: Testing
build-depends:
, base >=4.9 && <5
, bytestring
, criterion
, deepseq
, directory
, filepath
, flat ^>=0.6
, hedgehog
, hex-text
, ordinal
, plutus-accumulator
, plutus-core ^>=1.30
, plutus-ledger-api ^>=1.30
, plutus-tx ^>=1.30
, tasty
, tasty-golden
, temporary
, text
executable aiken-utils-exe
import: lang
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: app
build-depends:
, aeson
, aiken-utils
, base >=4.9 && <5
, bytestring
, plutus-accumulator
, plutus-core ^>=1.30
, plutus-tx ^>=1.30
, plutus-tx-plugin ^>=1.30