File tree 4 files changed +4
-1
lines changed
crates/font-awesome-as-a-crate
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ use std::{
6
6
} ;
7
7
8
8
fn main ( ) {
9
+ println ! ( "cargo::rustc-check-cfg=cfg(font_awesome_out_dir)" ) ;
9
10
println ! ( "cargo:rustc-cfg=font_awesome_out_dir" ) ;
10
11
write_fontawesome_sprite ( ) ;
11
12
}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ load_metric_type!(HistogramVec as vec);
20
20
/// the measured times from cdn invalidations, meaning:
21
21
/// * how long an invalidation took, or
22
22
/// * how long the invalidation was queued
23
+ ///
23
24
/// will be put into these buckets (seconds,
24
25
/// each entry is the upper bound).
25
26
/// Prometheus only gets the counts per bucket in a certain
Original file line number Diff line number Diff line change @@ -412,7 +412,7 @@ impl AsyncStorage {
412
412
413
413
let mut zip = zip:: ZipWriter :: new ( io:: Cursor :: new ( Vec :: new ( ) ) ) ;
414
414
for file_path in get_file_list ( & root_dir) ? {
415
- let mut file = fs:: File :: open ( & root_dir. join ( & file_path) ) ?;
415
+ let mut file = fs:: File :: open ( root_dir. join ( & file_path) ) ?;
416
416
417
417
zip. start_file ( file_path. to_str ( ) . unwrap ( ) , options) ?;
418
418
io:: copy ( & mut file, & mut zip) ?;
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ pub(crate) struct Release {
90
90
/// * the rest is all builds are in-progress -> InProgress
91
91
/// -> if we have any builds, and the previous conditions don't match, we end
92
92
/// up here, but we still check.
93
+ ///
93
94
/// calculated in a database view : `release_build_status`
94
95
pub build_status : BuildStatus ,
95
96
pub yanked : Option < bool > ,
You can’t perform that action at this time.
0 commit comments