File tree 2 files changed +20
-15
lines changed
2 files changed +20
-15
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "authors" : [
2
+ "auth" : " zef:titsuki" ,
3
+ "authors" : [
3
4
" titsuki"
4
5
],
5
- "build-depends" : [ ],
6
- "depends" : [
6
+ "build-depends" : [
7
+ ],
8
+ "depends" : [
7
9
" Algorithm::SetUnion" ,
8
10
" Algorithm::MinMaxHeap"
9
11
],
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"
16
18
},
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" : " *"
22
27
}
Original file line number Diff line number Diff line change 1
1
use v6 ;
2
- unit class Algorithm::Kruskal ;
2
+ unit class Algorithm::Kruskal : ver< 0.0.1 > : auth< zef:titsuki > ;
3
3
4
4
use Algorithm::MinMaxHeap;
5
5
use Algorithm::SetUnion;
You can’t perform that action at this time.
0 commit comments