Update the remoteprocess/proc-maps crates#295
Conversation
The latest remoteprocess code includes a workaround for the case where the linux kernel was compiled without process_vm_readv support (by falling back to /proc/PID/mem: benfred/read-process-memory#4). Closes rbspy#196
|
Thanks @benfred. I tried to do this upgrade the other day to fix a CI issue on Windows but didn't have time to sort out the type errors. Happy to work with you on this in whatever way makes sense. |
|
Thanks @acj! The CI failures here were because we need https://github.com/rbspy/rbspy-testdata and https://github.com/rbspy/rbspy to use the exact same versions of remoteprocess in their Cargo.toml files. I've created a PR for the rbspy-testdata crate here: rbspy/rbspy-testdata#4 which will also need merged I've pointed this PR to link to my fork - which I'm hoping will sort out the CI failures 🤞 |
|
Ahh, good to know. I don't have a commit bit for rbspy-testdata, but the changes LGTM both there and here. The Travis musl build has been consistently failing recently, and we're planning to migrate that build to GH Actions soon, so it doesn't need to be a blocker imo. |
|
I merged the rbspy-testdata PR and gave both of you maintainer access on that repo |
The latest remoteprocess code includes a workaround for the case where the linux kernel
was compiled without process_vm_readv support (by falling back to /proc/PID/mem:
benfred/read-process-memory#4).
Closes #196