widberg

Results 29 comments of widberg

I switched the Cargo.toml dependency from my arbitrary-int git repo to v1.2.7 on crates.io and switched the PR from draft to open. My tests are passing but please test my...

Coming back to this after getting everything working myself and wanted to add some comments about global initializers, SEH, and resources in MSVC that seem relevant incase someone else comes...

I love this project, I'm glad you're continuing to work on unlinking after [ghidra-unlinker-scripts](https://github.com/boricj/ghidra-unlinker-scripts) (although the earlier project is easier to find since "unlinking" seems to be the more popular...

Delinker definitely pairs better with decompiler, can't argue with that. Funny you mention HN because that's exactly how I stumbled across this project ([this post in specific](https://news.ycombinator.com/item?id=38852362)). I recognized your...

Thank you for tracking this down! Turing that analyzer off did fix the issue. The work around should be good enough for now.

That is correct. I will often have a container struct that I want to be able to work with a generic type that impls read and/or write. Right now since...

Thanks for the feedback. That all sounds great to me. Serde has some complicated logic for walking the AST to find uses of generic type parameters, but the predicate generation...

I've hit a wall deciding how to handle the validation. Right now, I do the whole AST walk and decide which generic types need to have where clauses generated in...

`Vec` is a good example. Some more examples of fields using generic type parameters can be found in this struct I've been playing with: ```rust trait Wrapper { type Item;...

Thank you for putting so much thought into this. I've started working to incorporate your feedback. Regarding the field-level attribute, I added it because serde has it. It allows you...