-
Notifications
You must be signed in to change notification settings - Fork 6
/
package-set.dhall
117 lines (113 loc) · 3.26 KB
/
package-set.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
let upstream = https://github.com/dfinity/vessel-package-set/releases/download/mo-0.6.7-20210818/package-set.dhall sha256:c4bd3b9ffaf6b48d21841545306d9f69b57e79ce3b1ac5e1f63b068ca4f89957
let Package =
{ name : Text, version : Text, repo : Text, dependencies : List Text }
let
-- This is where you can add your own packages to the package-set
additions =
[
{ name = "array"
, repo = "https://github.com/aviate-labs/array.mo"
, version = "v0.1.1"
, dependencies = [ "base" ]
},
{ name = "asset-storage"
, repo = "https://github.com/aviate-labs/asset-storage.mo"
, version = "asset-storage-0.7.0"
, dependencies = [ "base" ]
},
{ name = "bimap"
, repo = "https://github.com/aviate-labs/bimap.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "encoding"
, repo = "https://github.com/aviate-labs/encoding.mo"
, version = "v0.3.1"
, dependencies = [ "array", "base" ]
},
{
name = "ext",
repo = "https://github.com/jorgenbuilder/extendable-token",
version = "main",
dependencies = ["ext"]
},
{ name = "fmt"
, repo = "https://github.com/aviate-labs/fmt.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "hash"
, repo = "https://github.com/aviate-labs/hash.mo"
, version = "v0.1.0"
, dependencies = [ "array", "base" ]
},
{ name = "io"
, repo = "https://github.com/aviate-labs/io.mo"
, version = "v0.3.0"
, dependencies = [ "base" ]
},
{ name = "json"
, repo = "https://github.com/aviate-labs/json.mo"
, version = "v0.1.0"
, dependencies = [ "base", "parser-combinators" ]
},
{ name = "parser-combinators"
, repo = "https://github.com/aviate-labs/parser-combinators.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "principal"
, repo = "https://github.com/aviate-labs/principal.mo"
, version = "v0.2.4"
, dependencies = [ "array", "base", "encoding", "hash", "sha" ]
},
{ name = "queue"
, repo = "https://github.com/aviate-labs/queue.mo"
, version = "v0.1.1"
, dependencies = [ "base" ]
},
{ name = "rand"
, repo = "https://github.com/aviate-labs/rand.mo"
, version = "v0.2.1"
, dependencies = [ "base", "io" ]
},
{ name = "sha"
, repo = "https://github.com/aviate-labs/sha.mo"
, version = "v0.1.1"
, dependencies = [ "base", "encoding" ]
},
{ name = "sorted"
, repo = "https://github.com/aviate-labs/sorted.mo"
, version = "v0.1.3"
, dependencies = [ "base" ]
},
{ name = "stable"
, repo = "https://github.com/aviate-labs/stable.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "ulid"
, repo = "https://github.com/aviate-labs/ulid.mo"
, version = "v0.1.0"
, dependencies = [ "base", "encoding", "array", "io" ]
},
{ name = "uuid"
, repo = "https://github.com/aviate-labs/uuid.mo"
, version = "v0.2.0"
, dependencies = [ "base", "encoding", "io" ]
}
] : List Package
let
{- This is where you can override existing packages in the package-set
For example, if you wanted to use version `v2.0.0` of the foo library:
let overrides = [
{ name = "foo"
, version = "v2.0.0"
, repo = "https://github.com/bar/foo"
, dependencies = [] : List Text
}
]
-}
overrides =
[] : List Package
in upstream # additions # overrides