Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 0 additions & 96 deletions core/patina_internal_cpu/src/cpu/x64/cpu.rs

This file was deleted.

3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ deny = [
# is a direct dependency of the otherwise banned crate
#{ crate = "ansi_term@0.11.0", wrappers = ["this-crate-directly-depends-on-ansi_term"] },
{ crate = "indoc", reason = "Does not support CRLF, producing hard to read logs." },
{ crate = "tiny-keccak", reason = "Not updated in 5 years. Use alternative." }
{ crate = "tiny-keccak", reason = "Not updated in 5 years. Use alternative." },
{ crate = "r-efi", reason = "Depend on `patina` and use `patina::standard::efi` instead of r-efi directly.", wrappers = ["patina", "getrandom"] }
]

# List of features to allow/deny
Expand Down
3 changes: 1 addition & 2 deletions sdk/patina/src/arch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
//! SPDX-License-Identifier: Apache-2.0
//!

use crate::{error::EfiError, pi::protocol::cpu_arch::CpuFlushType};
use crate::{error::EfiError, pi::protocol::cpu_arch::CpuFlushType, standard::efi};
use core::num::NonZeroU64;
use r_efi::efi;

cfg_if::cfg_if! {
if #[cfg(not(target_os = "uefi"))] {
Expand Down
Loading