mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-15 16:13:20 +00:00
Merge pull request #5059 from amshinde/bump-rust-version
versions: Upgrade rust supported version to 1.59.0 for 2.5 branch
This commit is contained in:
commit
d04c7e582f
@ -98,13 +98,11 @@ pub fn signame_to_signum(name: &str) -> Result<u8> {
|
|||||||
return Ok(n);
|
return Ok(n);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut search_term: String;
|
let mut search_term: String = if name.starts_with("SIG") {
|
||||||
|
name.to_string()
|
||||||
if name.starts_with("SIG") {
|
|
||||||
search_term = name.to_string();
|
|
||||||
} else {
|
} else {
|
||||||
search_term = format!("SIG{}", name);
|
format!("SIG{}", name)
|
||||||
}
|
};
|
||||||
|
|
||||||
search_term = search_term.to_uppercase();
|
search_term = search_term.to_uppercase();
|
||||||
|
|
||||||
|
@ -280,12 +280,12 @@ languages:
|
|||||||
rust:
|
rust:
|
||||||
description: "Rust language"
|
description: "Rust language"
|
||||||
notes: "'version' is the default minimum version used by this project."
|
notes: "'version' is the default minimum version used by this project."
|
||||||
version: "1.58.1"
|
version: "1.59.0"
|
||||||
meta:
|
meta:
|
||||||
description: |
|
description: |
|
||||||
'newest-version' is the latest version known to work when
|
'newest-version' is the latest version known to work when
|
||||||
building Kata
|
building Kata
|
||||||
newest-version: "1.58.1"
|
newest-version: "1.59.0"
|
||||||
|
|
||||||
specs:
|
specs:
|
||||||
description: "Details of important specifications"
|
description: "Details of important specifications"
|
||||||
|
Loading…
Reference in New Issue
Block a user