Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ nix = { version = "0.29.0", features = [
"ptrace",
"signal",
] }
object = "0.36.7"
object = "0.37.3"
proc-maps = "0.4.0"
rustc-demangle = "0.1.24"
serde = { version = "1.0.217", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/extension_points.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ extension_point!(
///
/// This function runs in a feedback loop, allowing the hook to execute debugger
/// commands by returning Status values and receiving Feedback from those commands.
/// The loop continues until the hook returns Status::PluginContinue.
/// The loop continues until the hook returns `Status::PluginContinue`.
///
/// # Parameters
///
Expand Down Expand Up @@ -114,7 +114,7 @@ extension_point!(
///
/// This function runs in a feedback loop, allowing the hook to execute debugger
/// commands by returning Status values and receiving Feedback from those commands.
/// The loop continues until the hook returns Status::PluginContinue.
/// The loop continues until the hook returns `Status::PluginContinue`.
///
/// # Parameters
///
Expand Down
2 changes: 1 addition & 1 deletion src/ui/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ impl DebuggerUI for CliUi {
/// * `true` - If the command matches any prefix
/// * `false` - If the command does not match any prefix
fn string_matches(cmd: &str, prefixes: &[&str]) -> bool {
prefixes.iter().any(|a| cmd == *a)
prefixes.contains(&cmd)
}

/// Shows help information for the debugger commands
Expand Down