Skip to content

Commit 9a257a0

Browse files
committed
template: remove from uefi-services
1 parent 01b8f54 commit 9a257a0

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

template/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ publish = false
66

77
[dependencies]
88
uefi = { version = "0.27.0", features = ["alloc"] }
9-
uefi-services = "0.24.0"

template/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use uefi::prelude::*;
55

66
#[entry]
77
fn main(_handle: Handle, mut system_table: SystemTable<Boot>) -> Status {
8-
uefi_services::init(&mut system_table).unwrap();
8+
uefi::helpers::init(&mut system_table).unwrap();
99

1010
Status::SUCCESS
1111
}

0 commit comments

Comments
 (0)