Skip to content

Commit 50da80e

Browse files
committed
Use Zef instead of ecosystem
1 parent e96ce58 commit 50da80e

File tree

2 files changed

+20
-15
lines changed

2 files changed

+20
-15
lines changed

META6.json

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
{
2-
"authors" : [
2+
"auth": "zef:titsuki",
3+
"authors": [
34
"titsuki"
45
],
5-
"build-depends" : [ ],
6-
"depends" : [
6+
"build-depends": [
7+
],
8+
"depends": [
79
"Algorithm::SetUnion",
810
"Algorithm::MinMaxHeap"
911
],
10-
"description" : "a Raku implementation of Kruskal's Algorithm for constructing a spanning subtree of minimum length",
11-
"license" : "Artistic-2.0",
12-
"name" : "Algorithm::Kruskal",
13-
"perl" : "6.c",
14-
"provides" : {
15-
"Algorithm::Kruskal" : "lib/Algorithm/Kruskal.pm6"
12+
"description": "a Raku implementation of Kruskal's Algorithm for constructing a spanning subtree of minimum length",
13+
"license": "Artistic-2.0",
14+
"name": "Algorithm::Kruskal",
15+
"perl": "6.c",
16+
"provides": {
17+
"Algorithm::Kruskal": "lib/Algorithm/Kruskal.pm6"
1618
},
17-
"resources" : [ ],
18-
"source-url" : "git://github.com/titsuki/p6-Algorithm-Kruskal.git",
19-
"tags" : [ ],
20-
"test-depends" : [ ],
21-
"version" : "*"
19+
"resources": [
20+
],
21+
"source-url": "https://github.com/titsuki/raku-Algorithm-Kruskal.git",
22+
"tags": [
23+
],
24+
"test-depends": [
25+
],
26+
"version": "*"
2227
}

lib/Algorithm/Kruskal.pm6

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use v6;
2-
unit class Algorithm::Kruskal;
2+
unit class Algorithm::Kruskal:ver<0.0.1>:auth<zef:titsuki>;
33

44
use Algorithm::MinMaxHeap;
55
use Algorithm::SetUnion;

0 commit comments

Comments
 (0)