-
Notifications
You must be signed in to change notification settings - Fork 51
/
spago.dhall
119 lines (119 loc) · 2.07 KB
/
spago.dhall
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{ name = "cardano-transaction-lib"
, dependencies =
[ "aeson"
, "aff"
, "aff-promise"
, "aff-retry"
, "affjax"
, "ansi"
, "argonaut"
, "argonaut-codecs"
, "arrays"
, "avar"
, "bifunctors"
, "bignumber"
, "bytearrays"
, "cardano-hd-wallet"
, "cardano-key-wallet"
, "cardano-message-signing"
, "cardano-plutus-data-schema"
, "cardano-serialization-lib"
, "cardano-transaction-builder"
, "cardano-types"
, "checked-exceptions"
, "cip30"
, "cip30-mock"
, "cip30-typesafe"
, "cip95"
, "cip95-typesafe"
, "console"
, "control"
, "crypto"
, "datetime"
, "debug"
, "effect"
, "either"
, "enums"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "foreign-object"
, "formatters"
, "functions"
, "heterogeneous"
, "http-methods"
, "identity"
, "integers"
, "js-bigints"
, "js-date"
, "lattice"
, "lists"
, "literals"
, "maybe"
, "media-types"
, "monad-logger"
, "mote"
, "mote-testplan"
, "newtype"
, "noble-secp256k1"
, "node-buffer"
, "node-child-process"
, "node-fs"
, "node-fs-aff"
, "node-path"
, "node-process"
, "node-readline"
, "node-streams"
, "node-streams-aff"
, "nonempty"
, "now"
, "nullable"
, "numbers"
, "optparse"
, "ordered-collections"
, "orders"
, "parallel"
, "parsing"
, "partial"
, "plutus-types"
, "posix-types"
, "prelude"
, "profunctor"
, "profunctor-lenses"
, "quickcheck"
, "quickcheck-combinators"
, "random"
, "rationals"
, "record"
, "refs"
, "safe-coerce"
, "safely"
, "spec"
, "spec-quickcheck"
, "strings"
, "stringutils"
, "tailrec"
, "these"
, "toppokki"
, "transformers"
, "tuples"
, "typelevel-prelude"
, "uint"
, "unfoldable"
, "unsafe-coerce"
, "untagged-union"
, "uplc-apply-args"
, "variant"
, "web-html"
, "web-storage"
]
, packages = ./packages.dhall
, sources =
[ "src/**/*.purs"
, "examples/**/*.purs"
, "test/**/*.purs"
, "templates/ctl-scaffold/src/**/*.purs"
, "templates/ctl-scaffold/test/**/*.purs"
, "templates/ctl-scaffold/exe/**/*.purs"
]
}