forked from rightfold/purescript-postgresql-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
packages.dhall
75 lines (74 loc) · 1.97 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
67
68
69
70
71
72
73
74
75
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.14.1-20210506/packages.dhall sha256:d199e142515f9cc15838d8e6d724a98cd0ca776ceb426b7b36e841311643e3ef
in upstream
with polyform =
{ dependencies =
[ "arrays"
, "bifunctors"
, "control"
, "effect"
, "either"
, "enums"
, "functors"
, "identity"
, "invariant"
, "lists"
, "maybe"
, "newtype"
, "parallel"
, "partial"
, "prelude"
, "profunctor"
, "psci-support"
, "quickcheck"
, "quickcheck-laws"
, "record"
, "transformers"
, "tuples"
, "typelevel-prelude"
, "unsafe-coerce"
, "validation"
, "variant"
]
, repo = "https://github.com/purescript-polyform/polyform.git"
, version = "v0.9.0"
}
with polyform-batteries-core =
{ dependencies =
[ "arrays"
, "decimals"
, "effect"
, "enums"
, "integers"
, "lazy"
, "maybe"
, "numbers"
, "partial"
, "polyform"
, "prelude"
, "psci-support"
, "quickcheck"
, "strings"
, "test-unit"
, "typelevel-prelude"
, "validation"
, "variant"
]
, repo = "https://github.com/purescript-polyform/batteries-core.git"
, version = "v0.2.0"
}
with polyform-batteries-env =
{ dependencies =
[ "arrays"
, "identity"
, "maybe"
, "ordered-collections"
, "polyform"
, "polyform-batteries-core"
, "prelude"
, "psci-support"
, "typelevel-prelude"
]
, repo = "https://github.com/purescript-polyform/batteries-env.git"
, version = "v0.1.0"
}