Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
kekeimiku committed Sep 13, 2024
1 parent d3946be commit 869d4aa
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 11 deletions.
5 changes: 0 additions & 5 deletions libptrscan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,5 @@ crate-type = ["cdylib", "staticlib"]
version = "0.4.9"
default-features = false

[target.'cfg(all(target_arch = "x86_64", any(target_os = "linux", target_os = "android")))'.dependencies.iced-x86]
version = "1.21.0"
default-features = false
features = ["decoder", "no_std"]

[features]
nightly = []
File renamed without changes.
4 changes: 2 additions & 2 deletions libptrscan/src/dump/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ mod windows;
#[cfg(target_os = "windows")]
pub use windows::Process;

mod load;
mod loader;
mod rangemap;

use core::{mem, slice};
use std::collections::BTreeMap;

pub use load::load_pointer_map_file;
pub use loader::load_pointer_map_file;
pub use rangemap::{RangeMap, RangeSet};

pub struct PointerMap {
Expand Down
2 changes: 0 additions & 2 deletions libptrscan/src/scan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ pub mod private {
fn from_residual(residual: ControlFlow<B, Infallible>) -> Self {
match residual {
ControlFlow::Break(b) => ControlFlow::Break(b),
_ => unsafe { core::hint::unreachable_unchecked() },
}
}
}
Expand Down Expand Up @@ -107,7 +106,6 @@ pub mod private {
fn from_residual(residual: Result<Infallible, E>) -> Self {
match residual {
Err(e) => Err(From::from(e)),
_ => unsafe { core::hint::unreachable_unchecked() },
}
}
}
Expand Down
2 changes: 0 additions & 2 deletions rust-toolchain.toml

This file was deleted.

0 comments on commit 869d4aa

Please sign in to comment.