elast0ny

Results 10 issues of elast0ny

In the struct ```Rust Struct goblin::pe::import::SyntheticImportDirectoryEntry { ... } ``` The field `import_address_table` does not point to the IAT but instead points to the Import Name Table.

This should be possible on MacOS, just need to implement & test

enhancement
help wanted

Hello, I have created a basic TLS over TCP client/server project. They do not use asyc/mio and are the most basic setup where the server only accepts 1 client. Once...

### Feature Request Summary Would it be possible to split clap argument parsing logic into a `no_std` "clap_core" crate or allow crates to toggle a `no_std` style feature. This would...

C-enhancement
S-waiting-on-decision
A-meta

Hi, Is there a reason why you are [telling github](https://github.com/FillZpp/sys-info-rs/blob/master/.gitattributes#L1) to ignore the [c/](https://github.com/FillZpp/sys-info-rs/tree/master/c) folder for your project's language statistics ? It seems a bit dishonest for the users of...

The latest patch bump of `cmake-rs` broke our CD/CI when cross compiling to Windows x86 on x86_64 Windows hosts. The error logs are somewhat misleading but we were able to...

Hello, I'm working on a project that is considering using `embedded-io`'s traits for `no_std` environments and had some concerns about the stability of the API. For example, the popular `postcard`...

Hello, your README.md says that continuous testing is done on : - x86_64-apple-darwin (OSX) - i686-apple-darwin But it seems that you do not have automated build&testing for those two platforms....

https://github.com/ohyo-io/wampire/blob/de5aa3b46789edef767440ff97885f5b3271271e/src/lib.rs#L17 The `WampResult` type which is returned by many public facing APIs wraps the private wampire::error::Error type. This prevents callers from implementing `From(wampire::error::Error)` for their custom error types.

The call to `connect()` ends up calling `unwrap()` which makes the program panic. Client code : ```Rust let mut client = match connection.connect() { Ok(c) => c, Err(e) => {...