-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-set.dhall
38 lines (36 loc) · 1.07 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
let upstream = https://github.com/dfinity/vessel-package-set/releases/download/mo-0.6.20-20220131/package-set.dhall
let Package =
{ name : Text, version : Text, repo : Text, dependencies : List Text }
let additions = [
{ name = "base"
, repo = "https://github.com/dfinity/motoko-base"
, version = "moc-0.9.1"
, dependencies = [ "base" ]
},
{ name = "sha"
, repo = "https://github.com/aviate-labs/sha.mo"
, version = "v0.1.1"
, dependencies = [ "base" ]
},
{ name = "array"
, repo = "https://github.com/aviate-labs/array.mo"
, version = "v0.1.1"
, dependencies = [ "base" ]
},
{ name = "hash"
, repo = "https://github.com/aviate-labs/hash.mo"
, version = "v0.1.0"
, dependencies = [ "base" ]
},
{ name = "encoding"
, repo = "https://github.com/aviate-labs/encoding.mo"
, version = "v0.3.0"
, dependencies = [ "base", "array" ]
},
{ name = "principal"
, repo = "https://github.com/aviate-labs/principal.mo"
, version = "v0.2.3"
, dependencies = [ "array", "base", "hash", "encoding", "sha" ],
},
]
in upstream # additions