-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathold_package-set.dhall
138 lines (127 loc) · 3.75 KB
/
old_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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
let aviate_labs = https://github.com/aviate-labs/package-set/releases/download/v0.1.3/package-set.dhall sha256:ca68dad1e4a68319d44c587f505176963615d533b8ac98bdb534f37d1d6a5b47
let upstream = https://github.com/dfinity/vessel-package-set/releases/download/mo-0.8.3-20230224/package-set.dhall
let Package =
{ name : Text, version : Text, repo : Text, dependencies : List Text }
let additions =
[
{ name = "candy_0_1_10"
, repo = "https://github.com/icdevs/candy_library.git"
, version = "v0.1.10"
, dependencies = ["base"]
},
{ name = "candy_0_1_12"
, repo = "https://github.com/icdevs/candy_library.git"
, version = "v0.1.12"
, dependencies = ["base"]
},
{ name = "candy"
, repo = "https://github.com/icdevs/candy_library.git"
, version = "v0.1.12"
, dependencies = ["base"]
},
{
name="principalmo",
repo = "https://github.com/aviate-labs/principal.mo.git",
version = "v0.2.5",
dependencies = ["base"]
},
{ name = "crypto"
, repo = "https://github.com/aviate-labs/crypto.mo"
, version = "v0.2.0"
, dependencies = [ "base", "encoding" ]
},
{ name="principalmo"
, repo = "https://github.com/aviate-labs/principal.mo.git"
, version = "v0.2.5"
, dependencies = ["base"]
},
{ name = "crypto"
, repo = "https://github.com/aviate-labs/crypto.mo"
, version = "v0.2.0"
, dependencies = [ "base", "encoding" ]
},
{ name = "encoding"
, repo = "https://github.com/aviate-labs/encoding.mo"
, version = "v0.3.2"
, dependencies = [ "array", "base" ]
},
{ name = "array"
, repo = "https://github.com/aviate-labs/array.mo"
, version = "v0.2.0"
, dependencies = [ "base" ]
},
{ name = "hash"
, repo = "https://github.com/aviate-labs/hash.mo"
, version = "v0.1.0"
, dependencies = [ "array", "base" ]
},
{ name = "ext"
, repo = "https://github.com/skilesare/extendable-token"
, version = "v0.1.0"
, dependencies = ["ext"]
},
{ name = "httpparser"
, repo = "https://github.com/skilesare/http-parser.mo"
, version = "v0.1.0"
, dependencies = ["base"]
},
{ name = "http"
, repo = "https://github.com/aviate-labs/http.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "format"
, repo = "https://github.com/skilesare/format.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "json"
, repo = "https://github.com/aviate-labs/json.mo"
, version = "v0.1.0"
, dependencies = [ "base", "parser-combinators" ]
},
{ name = "stablebuffer_0_2_0"
, repo = "https://github.com/skilesare/StableBuffer"
, version = "v0.2.0"
, dependencies = [ "base"]
},
{ name = "stablebuffer"
, repo = "https://github.com/skilesare/StableBuffer"
, version = "v0.2.0"
, dependencies = [ "base"]
},
{ name = "map_7_0_0"
, repo = "https://github.com/ZhenyaUsenko/motoko-hash-map"
, version = "v7.0.0"
, dependencies = [ "base"]
},
{ name = "map_6_0_0"
, repo = "https://github.com/ZhenyaUsenko/motoko-hash-map"
, version = "v6.0.0"
, dependencies = [ "base"]
},
{ name = "map"
, repo = "https://github.com/ZhenyaUsenko/motoko-hash-map"
, version = "v7.0.0"
, dependencies = [ "base"]
},
{ name = "canistergeek"
, repo = "https://github.com/ORIGYN-SA/canistergeek-motoko"
, version = "v0.0.1"
, dependencies = ["base", "candy_0_1_10" ]
}
] : 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 aviate_labs # upstream # additions # overrides