forked from xiaoyuanxun/Jasmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-set.dhall
53 lines (51 loc) · 1.48 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
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 = "anvil"
, repo = "https://github.com/infu/anvil.mo"
, version = "v0.1.7"
, dependencies = ["array", "base", "hash", "encoding", "sha"]
},
{ 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" ],
},
{ name = "stable-rbtree"
, repo = "https://github.com/canscale/StableRBTree"
, version = "v0.6.0"
, dependencies = [ "base" ]
},
{ name = "stable-buffer"
, repo = "https://github.com/canscale/StableBuffer"
, version = "v0.2.0"
, dependencies = [ "base" ]
},
{ name = "candb"
, repo = "git@github.com:canscale/CanDB.git"
, version = "alpha"
, dependencies = [ "base" ]
},
]
in upstream # additions