-
Notifications
You must be signed in to change notification settings - Fork 0
/
equalityValues.cabal
91 lines (85 loc) · 2.9 KB
/
equalityValues.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
90
cabal-version: 2.4
Name: equalityValues
Version: 0.1.0.0
Author: Manuel Padilla
Maintainer: [email protected]
Build-Type: Simple
Copyright: © 2022 Manuel Padilla
License: Apache-2.0
License-files: LICENSE
common lang
default-language: Haskell2010
ghc-options:
-Wall -Wnoncanonical-monad-instances
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities -rtsopts
-- See Plutus Tx readme
-fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas
if flag(defer-plugin-errors)
ghc-options: -fplugin-opt PlutusTx.Plugin:defer-errors
library
hs-source-dirs: src
exposed-modules: Test
--------------------
-- Local components
--------------------
build-depends:
cardano-api
, cardano-addresses
, cardano-crypto-class
, cardano-ledger-core
, cardano-ledger-alonzo
, cardano-ledger-babbage
, cardano-ledger-shelley
, cardano-wallet-core
, data-default
, playground-common
, plutonomy
, plutus-chain-index-core
, plutus-contract
, plutus-core
, plutus-ledger
, plutus-ledger-api
, plutus-ledger-constraints
, plutus-script-utils
, plutus-pab
, plutus-tx
, plutus-tx-plugin
------------------------
-- Non-IOG dependencies
------------------------
build-depends:
aeson
, base ^>= 4.14.1.0
, base16-bytestring
, bech32
, bytestring
, containers
, freer-extras
, freer-simple
, filepath
, lens
, openapi3
, prettyprinter
, regex
, serialise
, split
, text
, hex-text
, stm
, old-locale
, time
, utf8-string
, directory
, MissingH
default-language: Haskell2010
ghc-options: -Wall -fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas -fno-strictness -fno-spec-constr -fno-specialise
executable test
main-is: test.hs
hs-source-dirs:
app
build-depends:
base ^>=4.14.1.0,
network,
equalityValues
default-language: Haskell2010