File tree 1 file changed +3
-3
lines changed
src/tools/generate-copyright/src
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -187,14 +187,14 @@ fn render_deps<'a, 'b>(
187
187
buffer : & ' b mut Vec < u8 > ,
188
188
license_set : & mut BTreeSet < String > ,
189
189
) -> Result < ( ) , Error > {
190
- writeln ! ( buffer, "| Package | License | URL | Authors |" ) ?;
191
- writeln ! ( buffer, "|---------|---------|-----|----- ----|" ) ?;
190
+ writeln ! ( buffer, "| Package | License | Authors |" ) ?;
191
+ writeln ! ( buffer, "|---------|---------|---------|" ) ?;
192
192
for dep in deps {
193
193
let authors_list = dep. authors . join ( ", " ) . replace ( "<" , "\\ <" ) . replace ( ">" , "\\ >" ) ;
194
194
let url = format ! ( "https://crates.io/crates/{}/{}" , dep. name, dep. version) ;
195
195
writeln ! (
196
196
buffer,
197
- "| {name} {version} | {license} | <{url}> | {authors} |" ,
197
+ "| [ {name} {version}]({url}) | {license} {authors} |" ,
198
198
name = dep. name,
199
199
version = dep. version,
200
200
license = dep. license,
You can’t perform that action at this time.
0 commit comments