-
Notifications
You must be signed in to change notification settings - Fork 24
/
packages.dhall
62 lines (59 loc) · 1.68 KB
/
packages.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
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.15.15-20240416/packages.dhall
sha256:ca727657c01cc31d0e79c2113b59126b9826f4b56d20a8193be3c725599fb754
let eth-core-deps =
https://raw.githubusercontent.com/f-o-a-m/purescript-eth-core/aaa64b175717247f0ea6fe3c35780dea02ac8e3a/packages.dhall
sha256:ca727657c01cc31d0e79c2113b59126b9826f4b56d20a8193be3c725599fb754
let additions =
{ coroutine-transducers =
{ dependencies =
[ "console"
, "either"
, "foldable-traversable"
, "freet"
, "functors"
, "newtype"
, "parallel"
, "prelude"
, "tailrec"
, "transformers"
, "tuples"
, "aff"
, "coroutines"
, "effect"
, "maybe"
, "psci-support"
]
, repo = "https://github.com/martyall/purescript-coroutine-transducers"
, version = "v1.0.0"
}
, eth-core =
{ dependencies =
[ "argonaut"
, "arrays"
, "effect"
, "either"
, "foldable-traversable"
, "foreign"
, "functions"
, "gen"
, "integers"
, "js-bigints"
, "lists"
, "maybe"
, "newtype"
, "node-buffer"
, "nonempty"
, "ordered-collections"
, "partial"
, "prelude"
, "simple-json"
, "strings"
, "unfoldable"
, "unsafe-coerce"
]
, repo = "https://github.com/f-o-a-m/purescript-eth-core"
, version = "v10.1.0"
}
}
in upstream // additions