File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ fn gen_license_urls(ArgsGenLicenseUrls {}: ArgsGenLicenseUrls) -> eyre::Result<(
130
130
} = packages[ & ( & * * name, version) ] ;
131
131
let manifest_dir = manifest_path. parent ( ) . unwrap ( ) ;
132
132
133
- // proconioとnalgebraだけ暫定対応
133
+ // proconio, nalgebra, bitset-fixedだけ暫定対応
134
134
if name == "proconio" {
135
135
let sha1 = read_git_sha1 ( manifest_dir) ?;
136
136
return Ok ( (
@@ -145,6 +145,12 @@ fn gen_license_urls(ArgsGenLicenseUrls {}: ArgsGenLicenseUrls) -> eyre::Result<(
145
145
format ! ( "https://docs.rs/crate/nalgebra/{version}/source/Cargo.toml.orig" ) ,
146
146
) ) ;
147
147
}
148
+ if name == "bitset-fixed" {
149
+ return Ok ( (
150
+ "bitset-fixed" ,
151
+ format ! ( "https://docs.rs/crate/bitset-fixed/{version}/source/Cargo.toml.orig" ) ,
152
+ ) ) ;
153
+ }
148
154
149
155
let url = format ! ( "https://docs.rs/crate/{name}/{version}/source/" ) ;
150
156
let url = if manifest_dir. join ( "LICENSE" ) . exists ( ) {
You can’t perform that action at this time.
0 commit comments