mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
chore: upgrade to Rust 1.67 (#17548)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
1a1faff2f6
commit
f5840bdcd3
148 changed files with 576 additions and 681 deletions
|
@ -122,7 +122,7 @@ impl CliModuleLoader {
|
|||
)?
|
||||
}
|
||||
MediaType::TsBuildInfo | MediaType::Wasm | MediaType::SourceMap => {
|
||||
panic!("Unexpected media type {} for {}", media_type, found_url)
|
||||
panic!("Unexpected media type {media_type} for {found_url}")
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -136,7 +136,7 @@ impl CliModuleLoader {
|
|||
})
|
||||
}
|
||||
_ => {
|
||||
let mut msg = format!("Loading unprepared module: {}", specifier);
|
||||
let mut msg = format!("Loading unprepared module: {specifier}");
|
||||
if let Some(referrer) = maybe_referrer {
|
||||
msg = format!("{}, imported from: {}", msg, referrer.as_str());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue