cargo-disasm icon indicating copy to clipboard operation
cargo-disasm copied to clipboard

Disassembly viewer for rust projects.

Results 9 cargo-disasm issues
Sort by recently updated
recently updated
newest added

Bumps [once_cell](https://github.com/matklad/once_cell) from 1.7.2 to 1.14.0. Changelog Sourced from once_cell's changelog. 1.14.0 Add extension to unsync and sync Lazy mut API: force_mut get_mut 1.13.1 Make implementation compliant with strict provenance....

dependencies

Bumps [libc](https://github.com/rust-lang/libc) from 0.2.92 to 0.2.132. Release notes Sourced from libc's releases. 0.2.132 What's Changed Add FUTEX_LOCK_PI2 on Linux by @​rtzoeller in rust-lang/libc#2874 Add pthread_sigqueue. by @​pirocks in rust-lang/libc#2873 Fix...

dependencies

Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.5.0 to 1.5.3. Changelog Sourced from rayon's changelog. Release rayon 1.5.3 (2022-05-13) The new ParallelSliceMut::par_sort_by_cached_key is a stable sort that caches the keys for each item --...

dependencies

Bumps [cc](https://github.com/alexcrichton/cc-rs) from 1.0.67 to 1.0.73. Commits fba7fed Bump to 1.0.73 8159cda Try to fix CI (#659) 421f06b Fail fast and more helpfully on invalid compile argument (#655) a5bda9c Add...

dependencies

Bumps [rustc-demangle](https://github.com/alexcrichton/rustc-demangle) from 0.1.18 to 0.1.21. Commits 2811a1a Bump to 0.1.21 670f024 Merge pull request #55 from eddyb/const-values fd906f8 v0: demangle ADT const values. 2327898 v0: demangle array and tuple...

dependencies

Running `cargo install cargo-disasm` on my machine (Windows 10 64bit x86) results on the following errors: ``` Compiling cargo-disasm v0.5.0 error[E0432]: unresolved import `clap::Clap` --> D:\.cargo\registry\src\github.com-1ecc6299db9ec823\cargo-disasm-0.5.0\src\app\cli.rs:1:5 | 1 | use...

### Features I Want To Finish First - [x] Showing source code alongside disassembly **Windows** - [x] PE/COFF file disassembly and symbol discovery - [x] use PDB for symbol discovery...

enhancement

At the moment if you run `cargo disasm copy_nonoverlapping`, this is the output: ```asm core::intrinsics::copy_nonoverlapping: cc6e0 sub rsp, 0x28 cc6e4 mov qword ptr [rsp + 0x10], rdi cc6e9 mov qword...

bug