1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Description: Drop UEFI dependencies
Author: Nadzeya Hutsko <nadzya.info@gmail.com>
Forwarded: not-needed
Last-Update: 2026-03-16
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -35,7 +35,7 @@
nvidia = ["dep:nvml-wrapper"]
readonly = []
rusb = ["dep:rusb"]
-uefi = ["lazy_static/spin_no_std"]
+# uefi = ["lazy_static/spin_no_std"]
[lib]
name = "framework_lib"
@@ -100,20 +100,20 @@
"git2",
]
-[target.'cfg(target_os = "uefi")'.dependencies.plain]
-version = "0.2.3"
+# [target.'cfg(target_os = "uefi")'.dependencies.plain]
+# version = "0.2.3"
-[target.'cfg(target_os = "uefi")'.dependencies.uefi]
-version = "0.36.1"
-features = [
- "alloc",
- "global_allocator",
- "panic_handler",
- "logger",
-]
+# [target.'cfg(target_os = "uefi")'.dependencies.uefi]
+# version = "0.36.1"
+# features = [
+# "alloc",
+# "global_allocator",
+# "panic_handler",
+# "logger",
+# ]
-[target.'cfg(target_os = "uefi")'.dependencies.uefi-raw]
-version = "0.13"
+# [target.'cfg(target_os = "uefi")'.dependencies.uefi-raw]
+# version = "0.13"
[target."cfg(unix)".dependencies.clap]
version = "4.5"
|