From 995d81dafe50bd4f73e6e51bf10f3a078b5eb2a5 Mon Sep 17 00:00:00 2001 From: doinkythederp Date: Mon, 9 Sep 2024 22:40:56 -0700 Subject: [PATCH] chore: minor fixes --- .vscode/settings.json | 11 ++++++++++- packages/vex-libunwind/src/lib.rs | 7 +------ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index eae21cb..58ed294 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,14 @@ { - "cSpell.words": [], + "cSpell.words": [ + "libunwind", + "armv7a", + "repr", + "fpreg", + "getcontext", + "uninit", + "regname", + "lsda" + ], "rust-analyzer.cargo.allTargets": false, "rust-analyzer.check.targets": [ "${workspaceFolder}/armv7a-vex-v5.json" diff --git a/packages/vex-libunwind/src/lib.rs b/packages/vex-libunwind/src/lib.rs index 33848c2..0e27ee5 100644 --- a/packages/vex-libunwind/src/lib.rs +++ b/packages/vex-libunwind/src/lib.rs @@ -17,12 +17,7 @@ //! ``` #![no_std] -use core::{ - cell::RefCell, - ffi::{c_char, CStr}, - fmt::Debug, - mem::MaybeUninit, -}; +use core::{cell::RefCell, ffi::CStr, fmt::Debug, mem::MaybeUninit}; use snafu::Snafu; pub use vex_libunwind_sys::registers;