html-to-markdown 2.27.2 → 2.27.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -8
- data/ext/html-to-markdown-rb/native/Cargo.toml +1 -1
- data/lib/html_to_markdown/version.rb +1 -1
- data/rust-vendor/getrandom/.cargo-checksum.json +1 -1
- data/rust-vendor/getrandom/.cargo_vcs_info.json +1 -1
- data/rust-vendor/getrandom/CHANGELOG.md +62 -43
- data/rust-vendor/getrandom/Cargo.lock +49 -56
- data/rust-vendor/getrandom/Cargo.toml +2 -2
- data/rust-vendor/getrandom/Cargo.toml.orig +2 -2
- data/rust-vendor/getrandom/src/backends/efi_rng.rs +8 -10
- data/rust-vendor/getrandom/src/backends/getentropy.rs +13 -4
- data/rust-vendor/getrandom/src/backends/linux_android_with_fallback.rs +10 -25
- data/rust-vendor/getrandom/src/backends/netbsd.rs +17 -25
- data/rust-vendor/getrandom/src/backends/rdrand.rs +15 -9
- data/rust-vendor/getrandom/src/backends/rndr.rs +2 -1
- data/rust-vendor/getrandom/src/backends/vxworks.rs +7 -3
- data/rust-vendor/getrandom/src/backends/windows.rs +21 -5
- data/rust-vendor/getrandom/src/utils/lazy_bool.rs +39 -0
- data/rust-vendor/getrandom/src/utils/lazy_ptr.rs +57 -0
- data/rust-vendor/html-to-markdown-rs/Cargo.toml +2 -2
- data/rust-vendor/html-to-markdown-rs/src/converter/text_node.rs +2 -1
- data/rust-vendor/html-to-markdown-rs/tests/issue_216_217_regressions.rs +82 -0
- data/rust-vendor/quote/.cargo-checksum.json +1 -1
- data/rust-vendor/quote/.cargo_vcs_info.json +1 -1
- data/rust-vendor/quote/.github/workflows/ci.yml +2 -2
- data/rust-vendor/quote/Cargo.lock +21 -21
- data/rust-vendor/quote/Cargo.toml +2 -2
- data/rust-vendor/quote/Cargo.toml.orig +2 -2
- data/rust-vendor/quote/README.md +0 -1
- data/rust-vendor/quote/src/lib.rs +1 -1
- data/rust-vendor/quote/src/to_tokens.rs +7 -0
- data/rust-vendor/quote/tests/ui/not-quotable.stderr +1 -1
- data/rust-vendor/quote/tests/ui/not-repeatable.stderr +3 -11
- data/rust-vendor/r-efi/.cargo-checksum.json +1 -1
- data/rust-vendor/r-efi/.cargo_vcs_info.json +1 -1
- data/rust-vendor/r-efi/AUTHORS +1 -0
- data/rust-vendor/r-efi/Cargo.lock +1 -1
- data/rust-vendor/r-efi/Cargo.toml +1 -3
- data/rust-vendor/r-efi/Cargo.toml.orig +1 -5
- data/rust-vendor/r-efi/NEWS.md +16 -0
- data/rust-vendor/r-efi/src/base.rs +1 -1
- data/rust-vendor/r-efi/src/lib.rs +27 -12
- data/rust-vendor/r-efi/src/protocols/absolute_pointer.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/block_io.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/bus_specific_driver_override.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/debug_support.rs +10 -10
- data/rust-vendor/r-efi/src/protocols/debugport.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/decompress.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/device_path_from_text.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/device_path_to_text.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/device_path_utilities.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/disk_io.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/disk_io2.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/driver_binding.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/driver_diagnostics2.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/driver_family_override.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/file.rs +28 -28
- data/rust-vendor/r-efi/src/protocols/graphics_output.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/hii_database.rs +24 -24
- data/rust-vendor/r-efi/src/protocols/hii_font.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/hii_font_ex.rs +10 -10
- data/rust-vendor/r-efi/src/protocols/hii_string.rs +10 -10
- data/rust-vendor/r-efi/src/protocols/ip4.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/ip6.rs +18 -18
- data/rust-vendor/r-efi/src/protocols/load_file.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/loaded_image.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/managed_network.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/memory_attribute.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/mp_services.rs +15 -15
- data/rust-vendor/r-efi/src/protocols/pci_io.rs +26 -26
- data/rust-vendor/r-efi/src/protocols/platform_driver_override.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/rng.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/service_binding.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/shell.rs +81 -81
- data/rust-vendor/r-efi/src/protocols/shell_dynamic_command.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/simple_file_system.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/simple_network.rs +26 -26
- data/rust-vendor/r-efi/src/protocols/simple_text_input.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/simple_text_input_ex.rs +11 -11
- data/rust-vendor/r-efi/src/protocols/simple_text_output.rs +18 -18
- data/rust-vendor/r-efi/src/protocols/tcp4.rs +20 -20
- data/rust-vendor/r-efi/src/protocols/tcp6.rs +18 -18
- data/rust-vendor/r-efi/src/protocols/timestamp.rs +3 -3
- data/rust-vendor/r-efi/src/protocols/udp4.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/udp6.rs +14 -14
- data/rust-vendor/r-efi/src/system.rs +115 -115
- data/rust-vendor/r-efi/src/vendor/intel/console_control.rs +6 -6
- data/rust-vendor/r-efi-5.3.0/.cargo-checksum.json +1 -0
- data/rust-vendor/r-efi-5.3.0/.cargo_vcs_info.json +6 -0
- data/rust-vendor/r-efi-5.3.0/.github/workflows/publish.yml +39 -0
- data/rust-vendor/r-efi-5.3.0/.github/workflows/rust-tests.yml +125 -0
- data/rust-vendor/r-efi-5.3.0/AUTHORS +74 -0
- data/rust-vendor/r-efi-5.3.0/Cargo.lock +16 -0
- data/rust-vendor/r-efi-5.3.0/Cargo.toml +70 -0
- data/rust-vendor/r-efi-5.3.0/Cargo.toml.orig +51 -0
- data/rust-vendor/r-efi-5.3.0/Makefile +85 -0
- data/rust-vendor/r-efi-5.3.0/NEWS.md +301 -0
- data/rust-vendor/r-efi-5.3.0/README.md +99 -0
- data/rust-vendor/r-efi-5.3.0/examples/freestanding.rs +34 -0
- data/rust-vendor/r-efi-5.3.0/examples/gop-query.rs +188 -0
- data/rust-vendor/r-efi-5.3.0/examples/hello-world.rs +55 -0
- data/rust-vendor/r-efi-5.3.0/src/base.rs +993 -0
- data/rust-vendor/r-efi-5.3.0/src/hii.rs +1300 -0
- data/rust-vendor/r-efi-5.3.0/src/lib.rs +182 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/absolute_pointer.rs +69 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/block_io.rs +70 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/bus_specific_driver_override.rs +32 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/debug_support.rs +835 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/debugport.rs +42 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/decompress.rs +37 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path.rs +82 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path_from_text.rs +26 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path_to_text.rs +30 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path_utilities.rs +63 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/disk_io.rs +40 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/disk_io2.rs +58 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/driver_binding.rs +42 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/driver_diagnostics2.rs +38 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/driver_family_override.rs +23 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/file.rs +183 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/graphics_output.rs +103 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_database.rs +299 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_font.rs +87 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_font_ex.rs +107 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_package_list.rs +14 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_string.rs +71 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/ip4.rs +202 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/ip6.rs +264 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/load_file.rs +26 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/load_file2.rs +15 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/loaded_image.rs +39 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/loaded_image_device_path.rs +13 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/managed_network.rs +147 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/memory_attribute.rs +40 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/mp_services.rs +121 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/pci_io.rs +203 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/platform_driver_override.rs +46 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/rng.rs +83 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/service_binding.rs +20 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/shell.rs +295 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/shell_dynamic_command.rs +33 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/shell_parameters.rs +23 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_file_system.rs +26 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_network.rs +196 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_text_input.rs +38 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_text_input_ex.rs +85 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_text_output.rs +86 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/tcp4.rs +224 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/tcp6.rs +202 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/timestamp.rs +32 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/udp4.rs +151 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/udp6.rs +137 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols.rs +54 -0
- data/rust-vendor/r-efi-5.3.0/src/system.rs +1130 -0
- data/rust-vendor/r-efi-5.3.0/src/vendor/intel/console_control.rs +37 -0
- data/rust-vendor/r-efi-5.3.0/src/vendor.rs +10 -0
- data/rust-vendor/tokio/.cargo-checksum.json +1 -1
- data/rust-vendor/tokio/.cargo_vcs_info.json +1 -1
- data/rust-vendor/tokio/CHANGELOG.md +94 -0
- data/rust-vendor/tokio/Cargo.lock +1549 -0
- data/rust-vendor/tokio/Cargo.toml +96 -83
- data/rust-vendor/tokio/Cargo.toml.orig +7 -7
- data/rust-vendor/tokio/README.md +1 -1
- data/rust-vendor/tokio/src/fs/open_options.rs +4 -1
- data/rust-vendor/tokio/src/fs/read.rs +4 -1
- data/rust-vendor/tokio/src/fs/write.rs +4 -1
- data/rust-vendor/tokio/src/io/async_write.rs +3 -4
- data/rust-vendor/tokio/src/io/poll_evented.rs +23 -1
- data/rust-vendor/tokio/src/io/stderr.rs +15 -1
- data/rust-vendor/tokio/src/io/stdout.rs +14 -0
- data/rust-vendor/tokio/src/io/util/async_write_ext.rs +2 -2
- data/rust-vendor/tokio/src/io/util/write_buf.rs +11 -2
- data/rust-vendor/tokio/src/lib.rs +12 -28
- data/rust-vendor/tokio/src/macros/select.rs +6 -8
- data/rust-vendor/tokio/src/net/tcp/socket.rs +25 -1
- data/rust-vendor/tokio/src/net/tcp/stream.rs +40 -1
- data/rust-vendor/tokio/src/process/unix/pidfd_reaper.rs +1 -41
- data/rust-vendor/tokio/src/runtime/blocking/pool.rs +18 -14
- data/rust-vendor/tokio/src/runtime/builder.rs +10 -4
- data/rust-vendor/tokio/src/runtime/handle.rs +3 -2
- data/rust-vendor/tokio/src/runtime/io/driver/uring.rs +49 -61
- data/rust-vendor/tokio/src/runtime/io/driver.rs +6 -5
- data/rust-vendor/tokio/src/runtime/mod.rs +20 -1
- data/rust-vendor/tokio/src/runtime/runtime.rs +71 -1
- data/rust-vendor/tokio/src/runtime/scheduler/current_thread/mod.rs +24 -8
- data/rust-vendor/tokio/src/runtime/scheduler/multi_thread/worker.rs +5 -0
- data/rust-vendor/tokio/src/runtime/task/core.rs +1 -0
- data/rust-vendor/tokio/src/runtime/task/join.rs +7 -3
- data/rust-vendor/tokio/src/runtime/task/list.rs +5 -3
- data/rust-vendor/tokio/src/runtime/task/mod.rs +0 -5
- data/rust-vendor/tokio/src/runtime/tests/loom_blocking.rs +39 -1
- data/rust-vendor/tokio/src/signal/mod.rs +6 -17
- data/rust-vendor/tokio/src/signal/registry.rs +1 -1
- data/rust-vendor/tokio/src/signal/unix.rs +24 -44
- data/rust-vendor/tokio/src/signal/windows/sys.rs +52 -64
- data/rust-vendor/tokio/src/signal/windows.rs +35 -23
- data/rust-vendor/tokio/src/sync/mpsc/mod.rs +3 -1
- data/rust-vendor/tokio/src/sync/oneshot.rs +13 -0
- data/rust-vendor/tokio/src/sync/rwlock.rs +4 -5
- data/rust-vendor/tokio/src/sync/tests/loom_oneshot.rs +27 -1
- data/rust-vendor/tokio/src/task/blocking.rs +16 -1
- data/rust-vendor/tokio/src/task/builder.rs +2 -2
- data/rust-vendor/tokio/src/task/mod.rs +1 -1
- data/rust-vendor/tokio/src/task/spawn.rs +8 -3
- data/rust-vendor/tokio/src/task/yield_now.rs +13 -23
- data/rust-vendor/tokio/src/time/clock.rs +62 -0
- data/rust-vendor/tokio/src/util/memchr.rs +32 -4
- data/rust-vendor/tokio/src/util/sharded_list.rs +6 -4
- data/rust-vendor/tokio/tests/fs_link.rs +54 -0
- data/rust-vendor/tokio/tests/io_async_fd_memory_leak.rs +209 -0
- data/rust-vendor/tokio/tests/io_write_buf.rs +56 -0
- data/rust-vendor/tokio/tests/process_issue_7144.rs +8 -0
- data/rust-vendor/tokio/tests/rt_basic.rs +41 -0
- data/rust-vendor/tokio/tests/rt_common_before_park.rs +92 -0
- data/rust-vendor/tokio/tests/rt_metrics.rs +1 -1
- data/rust-vendor/tokio/tests/rt_panic.rs +12 -0
- data/rust-vendor/tokio/tests/rt_shutdown_err.rs +82 -0
- data/rust-vendor/tokio/tests/rt_threaded.rs +49 -1
- data/rust-vendor/tokio/tests/rt_unstable_metrics.rs +32 -0
- data/rust-vendor/tokio/tests/tcp_connect.rs +2 -3
- data/rust-vendor/tokio/tests/tcp_shutdown.rs +1 -3
- data/rust-vendor/tokio/tests/tcp_socket.rs +3 -4
- data/rust-vendor/tokio/tests/tcp_stream.rs +3 -0
- metadata +78 -3
- data/rust-vendor/getrandom/src/utils/lazy.rs +0 -64
|
@@ -230,7 +230,7 @@ pub const EVT_NOTIFY_SIGNAL: u32 = 0x00000200u32;
|
|
|
230
230
|
pub const EVT_SIGNAL_EXIT_BOOT_SERVICES: u32 = 0x00000201u32;
|
|
231
231
|
pub const EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE: u32 = 0x60000202u32;
|
|
232
232
|
|
|
233
|
-
pub type EventNotify =
|
|
233
|
+
pub type EventNotify = unsafe extern "efiapi" fn(crate::base::Event, *mut core::ffi::c_void);
|
|
234
234
|
|
|
235
235
|
pub const EVENT_GROUP_EXIT_BOOT_SERVICES: crate::base::Guid = crate::base::Guid::from_fields(
|
|
236
236
|
0x27abf055,
|
|
@@ -654,90 +654,90 @@ pub struct TableHeader {
|
|
|
654
654
|
pub const RUNTIME_SERVICES_SIGNATURE: u64 = 0x56524553544e5552u64; // "RUNTSERV"
|
|
655
655
|
pub const RUNTIME_SERVICES_REVISION: u32 = SPECIFICATION_REVISION;
|
|
656
656
|
|
|
657
|
-
pub type RuntimeGetTime =
|
|
657
|
+
pub type RuntimeGetTime = unsafe extern "efiapi" fn(
|
|
658
658
|
*mut Time,
|
|
659
659
|
*mut TimeCapabilities,
|
|
660
|
-
) -> crate::base::Status
|
|
660
|
+
) -> crate::base::Status;
|
|
661
661
|
|
|
662
|
-
pub type RuntimeSetTime =
|
|
662
|
+
pub type RuntimeSetTime = unsafe extern "efiapi" fn(
|
|
663
663
|
*mut Time,
|
|
664
|
-
) -> crate::base::Status
|
|
664
|
+
) -> crate::base::Status;
|
|
665
665
|
|
|
666
|
-
pub type RuntimeGetWakeupTime =
|
|
666
|
+
pub type RuntimeGetWakeupTime = unsafe extern "efiapi" fn(
|
|
667
667
|
*mut crate::base::Boolean,
|
|
668
668
|
*mut crate::base::Boolean,
|
|
669
669
|
*mut Time,
|
|
670
|
-
) -> crate::base::Status
|
|
670
|
+
) -> crate::base::Status;
|
|
671
671
|
|
|
672
|
-
pub type RuntimeSetWakeupTime =
|
|
672
|
+
pub type RuntimeSetWakeupTime = unsafe extern "efiapi" fn(
|
|
673
673
|
crate::base::Boolean,
|
|
674
674
|
*mut Time,
|
|
675
|
-
) -> crate::base::Status
|
|
675
|
+
) -> crate::base::Status;
|
|
676
676
|
|
|
677
|
-
pub type RuntimeSetVirtualAddressMap =
|
|
677
|
+
pub type RuntimeSetVirtualAddressMap = unsafe extern "efiapi" fn(
|
|
678
678
|
usize,
|
|
679
679
|
usize,
|
|
680
680
|
u32,
|
|
681
681
|
*mut MemoryDescriptor,
|
|
682
|
-
) -> crate::base::Status
|
|
682
|
+
) -> crate::base::Status;
|
|
683
683
|
|
|
684
|
-
pub type RuntimeConvertPointer =
|
|
684
|
+
pub type RuntimeConvertPointer = unsafe extern "efiapi" fn(
|
|
685
685
|
usize,
|
|
686
686
|
*mut *mut core::ffi::c_void,
|
|
687
|
-
) -> crate::base::Status
|
|
687
|
+
) -> crate::base::Status;
|
|
688
688
|
|
|
689
|
-
pub type RuntimeGetVariable =
|
|
689
|
+
pub type RuntimeGetVariable = unsafe extern "efiapi" fn(
|
|
690
690
|
*mut crate::base::Char16,
|
|
691
691
|
*mut crate::base::Guid,
|
|
692
692
|
*mut u32,
|
|
693
693
|
*mut usize,
|
|
694
694
|
*mut core::ffi::c_void,
|
|
695
|
-
) -> crate::base::Status
|
|
695
|
+
) -> crate::base::Status;
|
|
696
696
|
|
|
697
|
-
pub type RuntimeGetNextVariableName =
|
|
697
|
+
pub type RuntimeGetNextVariableName = unsafe extern "efiapi" fn(
|
|
698
698
|
*mut usize,
|
|
699
699
|
*mut crate::base::Char16,
|
|
700
700
|
*mut crate::base::Guid,
|
|
701
|
-
) -> crate::base::Status
|
|
701
|
+
) -> crate::base::Status;
|
|
702
702
|
|
|
703
|
-
pub type RuntimeSetVariable =
|
|
703
|
+
pub type RuntimeSetVariable = unsafe extern "efiapi" fn(
|
|
704
704
|
*mut crate::base::Char16,
|
|
705
705
|
*mut crate::base::Guid,
|
|
706
706
|
u32,
|
|
707
707
|
usize,
|
|
708
708
|
*mut core::ffi::c_void,
|
|
709
|
-
) -> crate::base::Status
|
|
709
|
+
) -> crate::base::Status;
|
|
710
710
|
|
|
711
|
-
pub type RuntimeGetNextHighMonoCount =
|
|
711
|
+
pub type RuntimeGetNextHighMonoCount = unsafe extern "efiapi" fn(
|
|
712
712
|
*mut u32,
|
|
713
|
-
) -> crate::base::Status
|
|
713
|
+
) -> crate::base::Status;
|
|
714
714
|
|
|
715
|
-
pub type RuntimeResetSystem =
|
|
715
|
+
pub type RuntimeResetSystem = unsafe extern "efiapi" fn(
|
|
716
716
|
ResetType,
|
|
717
717
|
crate::base::Status,
|
|
718
718
|
usize,
|
|
719
719
|
*mut core::ffi::c_void,
|
|
720
|
-
)
|
|
720
|
+
);
|
|
721
721
|
|
|
722
|
-
pub type RuntimeUpdateCapsule =
|
|
722
|
+
pub type RuntimeUpdateCapsule = unsafe extern "efiapi" fn(
|
|
723
723
|
*mut *mut CapsuleHeader,
|
|
724
724
|
usize,
|
|
725
725
|
crate::base::PhysicalAddress,
|
|
726
|
-
) -> crate::base::Status
|
|
726
|
+
) -> crate::base::Status;
|
|
727
727
|
|
|
728
|
-
pub type RuntimeQueryCapsuleCapabilities =
|
|
728
|
+
pub type RuntimeQueryCapsuleCapabilities = unsafe extern "efiapi" fn(
|
|
729
729
|
*mut *mut CapsuleHeader,
|
|
730
730
|
usize,
|
|
731
731
|
*mut u64,
|
|
732
732
|
*mut ResetType,
|
|
733
|
-
) -> crate::base::Status
|
|
733
|
+
) -> crate::base::Status;
|
|
734
734
|
|
|
735
|
-
pub type RuntimeQueryVariableInfo =
|
|
735
|
+
pub type RuntimeQueryVariableInfo = unsafe extern "efiapi" fn(
|
|
736
736
|
u32,
|
|
737
737
|
*mut u64,
|
|
738
738
|
*mut u64,
|
|
739
739
|
*mut u64,
|
|
740
|
-
) -> crate::base::Status
|
|
740
|
+
) -> crate::base::Status;
|
|
741
741
|
|
|
742
742
|
#[repr(C)]
|
|
743
743
|
pub struct RuntimeServices {
|
|
@@ -766,269 +766,269 @@ pub struct RuntimeServices {
|
|
|
766
766
|
pub const BOOT_SERVICES_SIGNATURE: u64 = 0x56524553544f4f42u64; // "BOOTSERV"
|
|
767
767
|
pub const BOOT_SERVICES_REVISION: u32 = SPECIFICATION_REVISION;
|
|
768
768
|
|
|
769
|
-
pub type BootRaiseTpl =
|
|
769
|
+
pub type BootRaiseTpl = unsafe extern "efiapi" fn(
|
|
770
770
|
crate::base::Tpl,
|
|
771
|
-
) -> crate::base::Tpl
|
|
771
|
+
) -> crate::base::Tpl;
|
|
772
772
|
|
|
773
|
-
pub type BootRestoreTpl =
|
|
773
|
+
pub type BootRestoreTpl = unsafe extern "efiapi" fn(
|
|
774
774
|
crate::base::Tpl,
|
|
775
|
-
)
|
|
775
|
+
);
|
|
776
776
|
|
|
777
|
-
pub type BootAllocatePages =
|
|
777
|
+
pub type BootAllocatePages = unsafe extern "efiapi" fn(
|
|
778
778
|
AllocateType,
|
|
779
779
|
MemoryType,
|
|
780
780
|
usize,
|
|
781
781
|
*mut crate::base::PhysicalAddress,
|
|
782
|
-
) -> crate::base::Status
|
|
782
|
+
) -> crate::base::Status;
|
|
783
783
|
|
|
784
|
-
pub type BootFreePages =
|
|
784
|
+
pub type BootFreePages = unsafe extern "efiapi" fn(
|
|
785
785
|
crate::base::PhysicalAddress,
|
|
786
786
|
usize,
|
|
787
|
-
) -> crate::base::Status
|
|
787
|
+
) -> crate::base::Status;
|
|
788
788
|
|
|
789
|
-
pub type BootGetMemoryMap =
|
|
789
|
+
pub type BootGetMemoryMap = unsafe extern "efiapi" fn(
|
|
790
790
|
*mut usize,
|
|
791
791
|
*mut MemoryDescriptor,
|
|
792
792
|
*mut usize,
|
|
793
793
|
*mut usize,
|
|
794
794
|
*mut u32,
|
|
795
|
-
) -> crate::base::Status
|
|
795
|
+
) -> crate::base::Status;
|
|
796
796
|
|
|
797
|
-
pub type BootAllocatePool =
|
|
797
|
+
pub type BootAllocatePool = unsafe extern "efiapi" fn(
|
|
798
798
|
MemoryType,
|
|
799
799
|
usize,
|
|
800
800
|
*mut *mut core::ffi::c_void,
|
|
801
|
-
) -> crate::base::Status
|
|
801
|
+
) -> crate::base::Status;
|
|
802
802
|
|
|
803
|
-
pub type BootFreePool =
|
|
803
|
+
pub type BootFreePool = unsafe extern "efiapi" fn(
|
|
804
804
|
*mut core::ffi::c_void,
|
|
805
|
-
) -> crate::base::Status
|
|
805
|
+
) -> crate::base::Status;
|
|
806
806
|
|
|
807
|
-
pub type BootCreateEvent =
|
|
807
|
+
pub type BootCreateEvent = unsafe extern "efiapi" fn(
|
|
808
808
|
u32,
|
|
809
809
|
crate::base::Tpl,
|
|
810
810
|
Option<EventNotify>,
|
|
811
811
|
*mut core::ffi::c_void,
|
|
812
812
|
*mut crate::base::Event,
|
|
813
|
-
) -> crate::base::Status
|
|
813
|
+
) -> crate::base::Status;
|
|
814
814
|
|
|
815
|
-
pub type BootSetTimer =
|
|
815
|
+
pub type BootSetTimer = unsafe extern "efiapi" fn(
|
|
816
816
|
crate::base::Event,
|
|
817
817
|
TimerDelay,
|
|
818
818
|
u64,
|
|
819
|
-
) -> crate::base::Status
|
|
819
|
+
) -> crate::base::Status;
|
|
820
820
|
|
|
821
|
-
pub type BootWaitForEvent =
|
|
821
|
+
pub type BootWaitForEvent = unsafe extern "efiapi" fn(
|
|
822
822
|
usize,
|
|
823
823
|
*mut crate::base::Event,
|
|
824
824
|
*mut usize,
|
|
825
|
-
) -> crate::base::Status
|
|
825
|
+
) -> crate::base::Status;
|
|
826
826
|
|
|
827
|
-
pub type BootSignalEvent =
|
|
827
|
+
pub type BootSignalEvent = unsafe extern "efiapi" fn(
|
|
828
828
|
crate::base::Event,
|
|
829
|
-
) -> crate::base::Status
|
|
829
|
+
) -> crate::base::Status;
|
|
830
830
|
|
|
831
|
-
pub type BootCloseEvent =
|
|
831
|
+
pub type BootCloseEvent = unsafe extern "efiapi" fn(
|
|
832
832
|
crate::base::Event,
|
|
833
|
-
) -> crate::base::Status
|
|
833
|
+
) -> crate::base::Status;
|
|
834
834
|
|
|
835
|
-
pub type BootCheckEvent =
|
|
835
|
+
pub type BootCheckEvent = unsafe extern "efiapi" fn(
|
|
836
836
|
crate::base::Event,
|
|
837
|
-
) -> crate::base::Status
|
|
837
|
+
) -> crate::base::Status;
|
|
838
838
|
|
|
839
|
-
pub type BootInstallProtocolInterface =
|
|
839
|
+
pub type BootInstallProtocolInterface = unsafe extern "efiapi" fn(
|
|
840
840
|
*mut crate::base::Handle,
|
|
841
841
|
*mut crate::base::Guid,
|
|
842
842
|
InterfaceType,
|
|
843
843
|
*mut core::ffi::c_void,
|
|
844
|
-
) -> crate::base::Status
|
|
844
|
+
) -> crate::base::Status;
|
|
845
845
|
|
|
846
|
-
pub type BootReinstallProtocolInterface =
|
|
846
|
+
pub type BootReinstallProtocolInterface = unsafe extern "efiapi" fn(
|
|
847
847
|
crate::base::Handle,
|
|
848
848
|
*mut crate::base::Guid,
|
|
849
849
|
*mut core::ffi::c_void,
|
|
850
850
|
*mut core::ffi::c_void,
|
|
851
|
-
) -> crate::base::Status
|
|
851
|
+
) -> crate::base::Status;
|
|
852
852
|
|
|
853
|
-
pub type BootUninstallProtocolInterface =
|
|
853
|
+
pub type BootUninstallProtocolInterface = unsafe extern "efiapi" fn(
|
|
854
854
|
crate::base::Handle,
|
|
855
855
|
*mut crate::base::Guid,
|
|
856
856
|
*mut core::ffi::c_void,
|
|
857
|
-
) -> crate::base::Status
|
|
857
|
+
) -> crate::base::Status;
|
|
858
858
|
|
|
859
|
-
pub type BootHandleProtocol =
|
|
859
|
+
pub type BootHandleProtocol = unsafe extern "efiapi" fn(
|
|
860
860
|
crate::base::Handle,
|
|
861
861
|
*mut crate::base::Guid,
|
|
862
862
|
*mut *mut core::ffi::c_void,
|
|
863
|
-
) -> crate::base::Status
|
|
863
|
+
) -> crate::base::Status;
|
|
864
864
|
|
|
865
|
-
pub type BootRegisterProtocolNotify =
|
|
865
|
+
pub type BootRegisterProtocolNotify = unsafe extern "efiapi" fn(
|
|
866
866
|
*mut crate::base::Guid,
|
|
867
867
|
crate::base::Event,
|
|
868
868
|
*mut *mut core::ffi::c_void,
|
|
869
|
-
) -> crate::base::Status
|
|
869
|
+
) -> crate::base::Status;
|
|
870
870
|
|
|
871
|
-
pub type BootLocateHandle =
|
|
871
|
+
pub type BootLocateHandle = unsafe extern "efiapi" fn(
|
|
872
872
|
LocateSearchType,
|
|
873
873
|
*mut crate::base::Guid,
|
|
874
874
|
*mut core::ffi::c_void,
|
|
875
875
|
*mut usize,
|
|
876
876
|
*mut crate::base::Handle,
|
|
877
|
-
) -> crate::base::Status
|
|
877
|
+
) -> crate::base::Status;
|
|
878
878
|
|
|
879
|
-
pub type BootLocateDevicePath =
|
|
879
|
+
pub type BootLocateDevicePath = unsafe extern "efiapi" fn(
|
|
880
880
|
*mut crate::base::Guid,
|
|
881
881
|
*mut *mut crate::protocols::device_path::Protocol,
|
|
882
882
|
*mut crate::base::Handle,
|
|
883
|
-
) -> crate::base::Status
|
|
883
|
+
) -> crate::base::Status;
|
|
884
884
|
|
|
885
|
-
pub type BootInstallConfigurationTable =
|
|
885
|
+
pub type BootInstallConfigurationTable = unsafe extern "efiapi" fn(
|
|
886
886
|
*mut crate::base::Guid,
|
|
887
887
|
*mut core::ffi::c_void,
|
|
888
|
-
) -> crate::base::Status
|
|
888
|
+
) -> crate::base::Status;
|
|
889
889
|
|
|
890
|
-
pub type BootLoadImage =
|
|
890
|
+
pub type BootLoadImage = unsafe extern "efiapi" fn(
|
|
891
891
|
crate::base::Boolean,
|
|
892
892
|
crate::base::Handle,
|
|
893
893
|
*mut crate::protocols::device_path::Protocol,
|
|
894
894
|
*mut core::ffi::c_void,
|
|
895
895
|
usize,
|
|
896
896
|
*mut crate::base::Handle,
|
|
897
|
-
) -> crate::base::Status
|
|
897
|
+
) -> crate::base::Status;
|
|
898
898
|
|
|
899
|
-
pub type BootStartImage =
|
|
899
|
+
pub type BootStartImage = unsafe extern "efiapi" fn(
|
|
900
900
|
crate::base::Handle,
|
|
901
901
|
*mut usize,
|
|
902
902
|
*mut *mut crate::base::Char16,
|
|
903
|
-
) -> crate::base::Status
|
|
903
|
+
) -> crate::base::Status;
|
|
904
904
|
|
|
905
|
-
pub type BootExit =
|
|
905
|
+
pub type BootExit = unsafe extern "efiapi" fn(
|
|
906
906
|
crate::base::Handle,
|
|
907
907
|
crate::base::Status,
|
|
908
908
|
usize,
|
|
909
909
|
*mut crate::base::Char16,
|
|
910
|
-
) -> crate::base::Status
|
|
910
|
+
) -> crate::base::Status;
|
|
911
911
|
|
|
912
|
-
pub type BootUnloadImage =
|
|
912
|
+
pub type BootUnloadImage = unsafe extern "efiapi" fn(
|
|
913
913
|
crate::base::Handle,
|
|
914
|
-
) -> crate::base::Status
|
|
914
|
+
) -> crate::base::Status;
|
|
915
915
|
|
|
916
|
-
pub type BootExitBootServices =
|
|
916
|
+
pub type BootExitBootServices = unsafe extern "efiapi" fn(
|
|
917
917
|
crate::base::Handle,
|
|
918
918
|
usize,
|
|
919
|
-
) -> crate::base::Status
|
|
919
|
+
) -> crate::base::Status;
|
|
920
920
|
|
|
921
|
-
pub type BootGetNextMonotonicCount =
|
|
921
|
+
pub type BootGetNextMonotonicCount = unsafe extern "efiapi" fn(
|
|
922
922
|
*mut u64,
|
|
923
|
-
) -> crate::base::Status
|
|
923
|
+
) -> crate::base::Status;
|
|
924
924
|
|
|
925
|
-
pub type BootStall =
|
|
925
|
+
pub type BootStall = unsafe extern "efiapi" fn(
|
|
926
926
|
usize,
|
|
927
|
-
) -> crate::base::Status
|
|
927
|
+
) -> crate::base::Status;
|
|
928
928
|
|
|
929
|
-
pub type BootSetWatchdogTimer =
|
|
929
|
+
pub type BootSetWatchdogTimer = unsafe extern "efiapi" fn(
|
|
930
930
|
usize,
|
|
931
931
|
u64,
|
|
932
932
|
usize,
|
|
933
933
|
*mut crate::base::Char16,
|
|
934
|
-
) -> crate::base::Status
|
|
934
|
+
) -> crate::base::Status;
|
|
935
935
|
|
|
936
|
-
pub type BootConnectController =
|
|
936
|
+
pub type BootConnectController = unsafe extern "efiapi" fn(
|
|
937
937
|
crate::base::Handle,
|
|
938
938
|
*mut crate::base::Handle,
|
|
939
939
|
*mut crate::protocols::device_path::Protocol,
|
|
940
940
|
crate::base::Boolean,
|
|
941
|
-
) -> crate::base::Status
|
|
941
|
+
) -> crate::base::Status;
|
|
942
942
|
|
|
943
|
-
pub type BootDisconnectController =
|
|
943
|
+
pub type BootDisconnectController = unsafe extern "efiapi" fn(
|
|
944
944
|
crate::base::Handle,
|
|
945
945
|
crate::base::Handle,
|
|
946
946
|
crate::base::Handle,
|
|
947
|
-
) -> crate::base::Status
|
|
947
|
+
) -> crate::base::Status;
|
|
948
948
|
|
|
949
|
-
pub type BootOpenProtocol =
|
|
949
|
+
pub type BootOpenProtocol = unsafe extern "efiapi" fn(
|
|
950
950
|
crate::base::Handle,
|
|
951
951
|
*mut crate::base::Guid,
|
|
952
952
|
*mut *mut core::ffi::c_void,
|
|
953
953
|
crate::base::Handle,
|
|
954
954
|
crate::base::Handle,
|
|
955
955
|
u32,
|
|
956
|
-
) -> crate::base::Status
|
|
956
|
+
) -> crate::base::Status;
|
|
957
957
|
|
|
958
|
-
pub type BootCloseProtocol =
|
|
958
|
+
pub type BootCloseProtocol = unsafe extern "efiapi" fn(
|
|
959
959
|
crate::base::Handle,
|
|
960
960
|
*mut crate::base::Guid,
|
|
961
961
|
crate::base::Handle,
|
|
962
962
|
crate::base::Handle,
|
|
963
|
-
) -> crate::base::Status
|
|
963
|
+
) -> crate::base::Status;
|
|
964
964
|
|
|
965
|
-
pub type BootOpenProtocolInformation =
|
|
965
|
+
pub type BootOpenProtocolInformation = unsafe extern "efiapi" fn(
|
|
966
966
|
crate::base::Handle,
|
|
967
967
|
*mut crate::base::Guid,
|
|
968
968
|
*mut *mut OpenProtocolInformationEntry,
|
|
969
969
|
*mut usize,
|
|
970
|
-
) -> crate::base::Status
|
|
970
|
+
) -> crate::base::Status;
|
|
971
971
|
|
|
972
|
-
pub type BootProtocolsPerHandle =
|
|
972
|
+
pub type BootProtocolsPerHandle = unsafe extern "efiapi" fn(
|
|
973
973
|
crate::base::Handle,
|
|
974
974
|
*mut *mut *mut crate::base::Guid,
|
|
975
975
|
*mut usize,
|
|
976
|
-
) -> crate::base::Status
|
|
976
|
+
) -> crate::base::Status;
|
|
977
977
|
|
|
978
|
-
pub type BootLocateHandleBuffer =
|
|
978
|
+
pub type BootLocateHandleBuffer = unsafe extern "efiapi" fn(
|
|
979
979
|
LocateSearchType,
|
|
980
980
|
*mut crate::base::Guid,
|
|
981
981
|
*mut core::ffi::c_void,
|
|
982
982
|
*mut usize,
|
|
983
983
|
*mut *mut crate::base::Handle,
|
|
984
|
-
) -> crate::base::Status
|
|
984
|
+
) -> crate::base::Status;
|
|
985
985
|
|
|
986
|
-
pub type BootLocateProtocol =
|
|
986
|
+
pub type BootLocateProtocol = unsafe extern "efiapi" fn(
|
|
987
987
|
*mut crate::base::Guid,
|
|
988
988
|
*mut core::ffi::c_void,
|
|
989
989
|
*mut *mut core::ffi::c_void,
|
|
990
|
-
) -> crate::base::Status
|
|
990
|
+
) -> crate::base::Status;
|
|
991
991
|
|
|
992
|
-
pub type BootInstallMultipleProtocolInterfaces =
|
|
992
|
+
pub type BootInstallMultipleProtocolInterfaces = unsafe extern "efiapi" fn(
|
|
993
993
|
*mut crate::base::Handle,
|
|
994
994
|
// XXX: Actual definition is variadic. See eficall!{} for details.
|
|
995
995
|
*mut core::ffi::c_void,
|
|
996
996
|
*mut core::ffi::c_void,
|
|
997
|
-
) -> crate::base::Status
|
|
997
|
+
) -> crate::base::Status;
|
|
998
998
|
|
|
999
|
-
pub type BootUninstallMultipleProtocolInterfaces =
|
|
999
|
+
pub type BootUninstallMultipleProtocolInterfaces = unsafe extern "efiapi" fn(
|
|
1000
1000
|
crate::base::Handle,
|
|
1001
1001
|
// XXX: Actual definition is variadic. See eficall!{} for details.
|
|
1002
1002
|
*mut core::ffi::c_void,
|
|
1003
1003
|
*mut core::ffi::c_void,
|
|
1004
|
-
) -> crate::base::Status
|
|
1004
|
+
) -> crate::base::Status;
|
|
1005
1005
|
|
|
1006
|
-
pub type BootCalculateCrc32 =
|
|
1006
|
+
pub type BootCalculateCrc32 = unsafe extern "efiapi" fn(
|
|
1007
1007
|
*mut core::ffi::c_void,
|
|
1008
1008
|
usize,
|
|
1009
1009
|
*mut u32,
|
|
1010
|
-
) -> crate::base::Status
|
|
1010
|
+
) -> crate::base::Status;
|
|
1011
1011
|
|
|
1012
|
-
pub type BootCopyMem =
|
|
1012
|
+
pub type BootCopyMem = unsafe extern "efiapi" fn(
|
|
1013
1013
|
*mut core::ffi::c_void,
|
|
1014
1014
|
*mut core::ffi::c_void,
|
|
1015
1015
|
usize,
|
|
1016
|
-
)
|
|
1016
|
+
);
|
|
1017
1017
|
|
|
1018
|
-
pub type BootSetMem =
|
|
1018
|
+
pub type BootSetMem = unsafe extern "efiapi" fn(
|
|
1019
1019
|
*mut core::ffi::c_void,
|
|
1020
1020
|
usize,
|
|
1021
1021
|
u8,
|
|
1022
|
-
)
|
|
1022
|
+
);
|
|
1023
1023
|
|
|
1024
|
-
pub type BootCreateEventEx =
|
|
1024
|
+
pub type BootCreateEventEx = unsafe extern "efiapi" fn(
|
|
1025
1025
|
u32,
|
|
1026
1026
|
crate::base::Tpl,
|
|
1027
1027
|
Option<EventNotify>,
|
|
1028
1028
|
*const core::ffi::c_void,
|
|
1029
1029
|
*const crate::base::Guid,
|
|
1030
1030
|
*mut crate::base::Event,
|
|
1031
|
-
) -> crate::base::Status
|
|
1031
|
+
) -> crate::base::Status;
|
|
1032
1032
|
|
|
1033
1033
|
#[repr(C)]
|
|
1034
1034
|
pub struct BootServices {
|
|
@@ -20,18 +20,18 @@ pub const SCREEN_MAX_VALUE: ScreenMode = 0x00000002;
|
|
|
20
20
|
|
|
21
21
|
#[repr(C)]
|
|
22
22
|
pub struct Protocol {
|
|
23
|
-
pub get_mode:
|
|
23
|
+
pub get_mode: unsafe extern "efiapi" fn(
|
|
24
24
|
*mut Protocol,
|
|
25
25
|
*mut ScreenMode,
|
|
26
26
|
*mut crate::base::Boolean,
|
|
27
27
|
*mut crate::base::Boolean,
|
|
28
|
-
) -> crate::base::Status
|
|
29
|
-
pub set_mode:
|
|
28
|
+
) -> crate::base::Status,
|
|
29
|
+
pub set_mode: unsafe extern "efiapi" fn(
|
|
30
30
|
*mut Protocol,
|
|
31
31
|
ScreenMode,
|
|
32
|
-
) -> crate::base::Status
|
|
33
|
-
pub lock_std_in:
|
|
32
|
+
) -> crate::base::Status,
|
|
33
|
+
pub lock_std_in: unsafe extern "efiapi" fn(
|
|
34
34
|
*mut Protocol,
|
|
35
35
|
*mut crate::base::Char16,
|
|
36
|
-
) -> crate::base::Status
|
|
36
|
+
) -> crate::base::Status,
|
|
37
37
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"files":{".cargo_vcs_info.json":"50e0c72ee0164f182d7b5db0213cdb1626bad950f2443b05d006c28c7f0641b5",".github/workflows/publish.yml":"431c68b9d566180134e8771ea9cb9339d72ec77c3010b4cedfd423e271dc7386",".github/workflows/rust-tests.yml":"ca7ba173da0a6510676770b103119ce57029d424afe9e1027541d529af6c7f3f","AUTHORS":"ff92bed461f50338dd703a9ba9aee496a425957873df1d91192776e4bdf5dda7","Cargo.lock":"cc335892128a13fb1431213f65cfd3281ff098cf47b97882ca097f0206d7e0b0","Cargo.toml":"dba000c0173b09b1e3b69afa42a715b5ab64355e6502ce6d9d1767c7845cf402","Cargo.toml.orig":"57b6d9b9a1b6524f6b4dcc1dd24970ac03e6959786a6cfedaec9ba52878b4d3e","Makefile":"b445cfadd750b564ba8ef072754a4eed5aa127f12faa6e5b15a35b748d28b6fb","NEWS.md":"a8924309f9b5d8cf035b12ee47d4afe99c3ca57ea60061239263ac0b0e2161ba","README.md":"420f65fec3ba2e89d49da51b222d2881d26959037a7b7d3794143db4bd4627b1","examples/freestanding.rs":"0be5eb60397228306aa9f8afc533e32926d210205a7359e14da903159482416d","examples/gop-query.rs":"3257c55d6ae4572db1bfcaf20bc05990ea92d46c5d292eb99c278242f1007e2c","examples/hello-world.rs":"1a398f93a54bfddaab6ba3e0145cf70496266c44b9748a11ff569a9a18063bc4","src/base.rs":"e0f0b69967dc436e302f37230f5aff0e8bf748f6a1159b968180e6d0ac0b9644","src/hii.rs":"d0b19b7cc7b0c2c4d70e2891554ed6d7f941388709476eab6fa7bad129c583ed","src/lib.rs":"289fdfa8384062616aa39b49c4094b93849ff0a2e5f6d7125b40124299a0837e","src/protocols.rs":"a8f1c0d9abf2af2d7962fce68160a3bf8083165bb70861808423afedadee6602","src/protocols/absolute_pointer.rs":"46ad9792ea021f47e4fedf8d3c07769872e056c39936c9647492a52455558b41","src/protocols/block_io.rs":"4f70d38453f057bb240988d7fac593ffa0f38a0057c6e8855f34ff37801e7f3d","src/protocols/bus_specific_driver_override.rs":"a695a18e6729020919f99880fb14c2a26f565471f15d6300cb67475d33ec6087","src/protocols/debug_support.rs":"a03fc44a2ad151e58eff3bd72f910b63bfadd5802ac2fc157fc94c2030bd9fa9","src/protocols/debugport.rs":"bc491b03444ec35593a9cde519d0ab5fc863a046073dd813f1eb58c075da45dc","src/protocols/decompress.rs":"a4c67d958f0b9a392840a53eef69369acc6f545f90369685b3cae3c32e5cbc51","src/protocols/device_path.rs":"1a8c897f8e392fd7fe60d829b7852d22dd847f5f64bf1382e58e7776d9a176a2","src/protocols/device_path_from_text.rs":"e972d7699fb031df9da2c4d5623ae289d4cc282116b634218039b97d1e7628fe","src/protocols/device_path_to_text.rs":"9929d0797ab4892051bd15ac831dc2566f7106ec9edec0fd289b3c780a2b0976","src/protocols/device_path_utilities.rs":"7d7e9ba66e9f8add3c77718bd605e6e434598f2834236e7805aba57b531eba30","src/protocols/disk_io.rs":"01a68686dae958b4fbd9fd5bbc556cf41b61e7da281a0b4ea56e62e61822d843","src/protocols/disk_io2.rs":"33aeb807ab9b78534787f44e0a3a8c52afe057e23b48ecb6703195cd0b135a8e","src/protocols/driver_binding.rs":"f48363c5afd21aac39cbd2644be0e861acc4b182bc14c68a4f84e94a5f001f8d","src/protocols/driver_diagnostics2.rs":"62b0ffe6760ae0e90e51652c667ec623cef3bbd44c17fb89881a24167b1b446c","src/protocols/driver_family_override.rs":"004aceae8540766d87eb2cef9c8c37ab5aa3755920af6d960cb9171a41acb4a1","src/protocols/file.rs":"25f09f54cf3ebd69366bde5160218247c6712ae19dac17a36ec4e2881b214f93","src/protocols/graphics_output.rs":"9e9b7ac05b92ac0a9680506edb3ed36ebbac2dc9c800268b2c54cbf539e9dd9e","src/protocols/hii_database.rs":"faa82d420085dee851f8a332db00c888e7ed1685d43e2c286790a34b2ecfdf7a","src/protocols/hii_font.rs":"092f45c74335c524ee379508e2b6925ed9033c7c10928e64b2489ca3778a4723","src/protocols/hii_font_ex.rs":"2400b2092c14da2aa09c62266356321d4b96838dc41c5918a2f3e0e1e3920318","src/protocols/hii_package_list.rs":"6bb29d076697bb3b672913b98f55995f9efcba830b4ab6bfed29bd8402aa70ab","src/protocols/hii_string.rs":"1327ba9e108900ddafec98c02534c81104c3c47cad32a7d17c7b7a7ee723c86f","src/protocols/ip4.rs":"252d244ec9b098fcee6a185ffa98cbdee34164c7872fe30b07d5e8dfdf7a8fe3","src/protocols/ip6.rs":"72a51653aa4535f7b136a7bacaa1718e0a68be847d4a716c6e76b7f75a94e6ea","src/protocols/load_file.rs":"8aa4a43db3da6c71398eb9408b2be9b893eb2147e5317a0f977e998db2910cba","src/protocols/load_file2.rs":"5be9c5d501b4f10a44ba91448fce5d4a20c01eab9a8f7fb3c63eaa62cbb1c2f4","src/protocols/loaded_image.rs":"508cf1514071e611f3c70776463a19f53685b3569c52a2350f307cbeac9cbbcc","src/protocols/loaded_image_device_path.rs":"66e8fe3477785dadf96401da10e203ba729e54d7eddedaffc4d17acc9a0daf7f","src/protocols/managed_network.rs":"592111dee58137a21f3b49211baf0d9c73a14ca9de95fa31d7e87435ded3808d","src/protocols/memory_attribute.rs":"c512ae777b95248127fc39b63eb99d746aaf8a5dc2cfda167d15ea5aa627653c","src/protocols/mp_services.rs":"509e7d483df52ab1ba1f9241bb7b286ffe205c4328557b3115cd290b4c9f8278","src/protocols/pci_io.rs":"43dac18dfa284d83836ff1ccfb8e40d48ef94533b72cdb99ce30a768f70be67c","src/protocols/platform_driver_override.rs":"f0ada483bccd90f31a6f0ce8831ea00885b66ca558e34e347ec775cbc171534c","src/protocols/rng.rs":"279ce976d190889064d0159b10586bab9a2e5670368b460be4497ead523d6dda","src/protocols/service_binding.rs":"256920333ea26fabd3b62ba8a8b25068349acab6da01a807dfba3307a45d79a0","src/protocols/shell.rs":"3259b0bf2574da6b2343da0b9ce46980d296a8e6d8c2fe36df3a07d0629ad653","src/protocols/shell_dynamic_command.rs":"9c2f977fe4e0757b633de49627a9645d81c821a39e752cb329f6285d376fe52d","src/protocols/shell_parameters.rs":"fb88c63822a14dc94e96f7912fa5409f68b669105fb81459b969ec066002e352","src/protocols/simple_file_system.rs":"e3d870bdaf3ae0f0cded7817a4eda6d5dea2e0b77855cd21c7ac05046c77b564","src/protocols/simple_network.rs":"8b8c49872488cc0e759efe74c04fc65f5d7637dca7d9a0a1cedb5dafb2597acb","src/protocols/simple_text_input.rs":"d9a7e8cbf508daedaa26dc8301e52be957edfcc12be9e962b8504584aee669a8","src/protocols/simple_text_input_ex.rs":"84ccd2ff2c354c0447a9c46406ad76de018495d5f85979cf35d78b7070a8f63c","src/protocols/simple_text_output.rs":"05857880b5c0a6fb6ce83eedcc7fa25107f368950ab18a3d0ef1ed669d3456df","src/protocols/tcp4.rs":"2131cf06fd856017ea45135fb59264a43fabc3db1b7ddc90cd19c169ccdacae9","src/protocols/tcp6.rs":"98c24c43632acc60f2dc558c13a03657f93edca735435c50b9f2cc5625f7d3bb","src/protocols/timestamp.rs":"118cc4a54da4f53a4bb2fbf66cde8c433208266a22b59b4e370393f5a40c20a9","src/protocols/udp4.rs":"c4d344a40c674524383be51621a485d15ccfffaa94a1050c7a4642199fa91bf6","src/protocols/udp6.rs":"ea4ee2154e045a4e5992688e6cafed2d5a5de41f2796f5c070e739818b361550","src/system.rs":"2428de82301085a5c99b1b54411530adf2c895aa311a58c94c1b8e9eb247b18f","src/vendor.rs":"6cc53fe0e98220fe627d82c9b27f1468095358bb26634a8c19274495888138af","src/vendor/intel/console_control.rs":"03a7fdf97ab1836353266786811ac47171d1c425dcead707f5ed0e2e834873fb"},"package":"69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Publish Releases
|
|
3
|
+
#
|
|
4
|
+
# This workflow can be manually triggered and will then publish the
|
|
5
|
+
# specified release to the configured release channels.
|
|
6
|
+
#
|
|
7
|
+
|
|
8
|
+
name: "Publish Releases"
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
inputs:
|
|
13
|
+
tag:
|
|
14
|
+
description: "Git-Tag to Publish"
|
|
15
|
+
default: ""
|
|
16
|
+
required: true
|
|
17
|
+
verify:
|
|
18
|
+
description: "Verify package before publishing"
|
|
19
|
+
default: "yes"
|
|
20
|
+
required: false
|
|
21
|
+
|
|
22
|
+
defaults:
|
|
23
|
+
run:
|
|
24
|
+
shell: "bash"
|
|
25
|
+
|
|
26
|
+
jobs:
|
|
27
|
+
publish:
|
|
28
|
+
name: "Publish Crate"
|
|
29
|
+
uses: readaheadeu/rae-actions/.github/workflows/lib-publish-rust.yml@v1
|
|
30
|
+
|
|
31
|
+
permissions:
|
|
32
|
+
contents: write
|
|
33
|
+
|
|
34
|
+
secrets:
|
|
35
|
+
ciotoken: ${{ secrets.DEPLOY_CRATESIO_TOKEN }}
|
|
36
|
+
|
|
37
|
+
with:
|
|
38
|
+
tag: ${{ github.event.inputs.tag }}
|
|
39
|
+
verify: ${{ github.event.inputs.verify == 'yes' || false }}
|