-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackages.dhall
66 lines (63 loc) · 1.8 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
63
64
65
66
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/master/packages.dhall
sha256:af2751772a729d58edf7056805007934e3687b3079f8a02ac514e705aeab8c42
let additions =
{ bytestrings = eth-core-deps.bytestrings
, 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"
, "bytestrings"
, "effect"
, "either"
, "foldable-traversable"
, "foreign"
, "functions"
, "gen"
, "integers"
, "js-bigints"
, "lists"
, "maybe"
, "newtype"
, "node-buffer"
, "nonempty"
, "ordered-collections"
, "partial"
, "prelude"
, "quotient"
, "simple-json"
, "strings"
, "unfoldable"
, "unsafe-coerce"
]
, repo = "https://github.com/f-o-a-m/purescript-eth-core"
, version = "v10.1.0"
}
, quotient = eth-core-deps.quotient
}
in upstream // additions