mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-23 16:04:46 +02:00
feat: bump rust version to 1.86
fixes the hardcoded `/usr/bin/strip` issue on macos see https://github.com/rust-lang/rust/issues/131206 Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
parent
eb39705ff1
commit
0b8f1d54c7
6 changed files with 12 additions and 12 deletions
|
@ -81,7 +81,7 @@ pub fn get_quote_and_collateral(
|
|||
}
|
||||
|
||||
if tcblevel != TcbLevel::Ok
|
||||
&& allowed_tcb_levels.map_or(false, |levels| !levels.contains(tcblevel))
|
||||
&& allowed_tcb_levels.is_some_and(|levels| !levels.contains(tcblevel))
|
||||
{
|
||||
error!("Quote verification result: {}", tcblevel);
|
||||
bail!("Quote verification result: {}", tcblevel);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue