forked from Plutonomicon/cardano-transaction-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspago.dhall
75 lines (75 loc) · 1.25 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
{-
Welcome to a Spago project!
You can edit this file as you like.
-}
{ name = "cardano-transaction-lib"
, dependencies =
[ "aeson"
, "aeson-helpers"
, "aff"
, "aff-promise"
, "affjax"
, "arraybuffer-types"
, "arrays"
, "bifunctors"
, "bigints"
, "checked-exceptions"
, "console"
, "const"
, "control"
, "debug"
, "effect"
, "either"
, "encoding"
, "enums"
, "exceptions"
, "foldable-traversable"
, "foreign-object"
, "http-methods"
, "identity"
, "integers"
, "js-date"
, "lattice"
, "lists"
, "maybe"
, "medea"
, "media-types"
, "monad-logger"
, "mote"
, "newtype"
, "node-buffer"
, "node-fs"
, "node-fs-aff"
, "node-path"
, "nonempty"
, "ordered-collections"
, "orders"
, "partial"
, "prelude"
, "profunctor"
, "profunctor-lenses"
, "quickcheck"
, "quickcheck-laws"
, "quickcheck-combinators"
, "rationals"
, "record"
, "refs"
, "spec"
, "spec-quickcheck"
, "strings"
, "tailrec"
, "text-encoding"
, "these"
, "transformers"
, "tuples"
, "typelevel"
, "typelevel-prelude"
, "uint"
, "undefined"
, "unfoldable"
, "untagged-union"
, "variant"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs", "examples/**/*.purs" ]
}