From 31ec051fd683d3747f10a0981b497d90f08d25a3 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sat, 27 Sep 2025 17:39:19 -0400 Subject: [Rust] Refactor download provider module to allow for custom implementations --- plugins/dwarf/dwarf_import/src/helpers.rs | 2 +- plugins/pdb-ng/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/dwarf/dwarf_import/src/helpers.rs b/plugins/dwarf/dwarf_import/src/helpers.rs index 1e847c48..63dcb542 100644 --- a/plugins/dwarf/dwarf_import/src/helpers.rs +++ b/plugins/dwarf/dwarf_import/src/helpers.rs @@ -22,7 +22,7 @@ use binaryninja::file_metadata::FileMetadata; use binaryninja::Endianness; use binaryninja::{ binary_view::{BinaryView, BinaryViewExt}, - download_provider::{DownloadInstanceInputOutputCallbacks, DownloadProvider}, + download::{DownloadInstanceInputOutputCallbacks, DownloadProvider}, rc::Ref, settings::Settings, }; diff --git a/plugins/pdb-ng/src/lib.rs b/plugins/pdb-ng/src/lib.rs index 9a0e0724..c4da40e6 100644 --- a/plugins/pdb-ng/src/lib.rs +++ b/plugins/pdb-ng/src/lib.rs @@ -26,7 +26,7 @@ use pdb::PDB; use binaryninja::binary_view::{BinaryView, BinaryViewBase, BinaryViewExt}; use binaryninja::debuginfo::{CustomDebugInfoParser, DebugInfo, DebugInfoParser}; -use binaryninja::download_provider::{DownloadInstanceInputOutputCallbacks, DownloadProvider}; +use binaryninja::download::{DownloadInstanceInputOutputCallbacks, DownloadProvider}; use binaryninja::interaction::{MessageBoxButtonResult, MessageBoxButtonSet}; use binaryninja::logger::Logger; use binaryninja::settings::{QueryOptions, Settings}; -- cgit v1.3.1