Michael Bryan

Results 213 issues of Michael Bryan

See also: - [dtolnay/cxx](https://github.com/dtolnay/cxx) - [Michael-F-Bryan/cxx-experiment](https://github.com/Michael-F-Bryan/cxx-experiment) - [Reddit announcement](https://www.reddit.com/r/rust/comments/elvfyn/ffi_like_its_2020_announcing_safe_ffi_for_rust_c/)

This is the draft of an article for the WebRocket blog. I'm planning to walk through the process for wrapping a Rust library and publishing it as WebAssembly to NPM....

#12 introduced `aabb_quadtree` as a mechanism for doing lookups based on location (i.e. "which items are within 5mm of P?"), but its API doesn't really line up with how we'd...

To be a CAD program our WebAssembly demo actually needs to draw things. There should be a toolbar with buttons to enter specific "drawing modes". When you are in a...

I'm trying to use `cross` in my CI jobs to cross-compile a library so I can provide precompiled binaries to my users. It looks like `cross` currently shells out to...

enhancement
help wanted
hacktoberfest

## Motivation The current strategy for naming log files generates filenames like `/var/log/MyApplication.log.2020-07-21`. I'd prefer my log files to have `log` as the extension (e.g. `/var/log/MyApplication.2020-07-21.log`) because OSs and VS...

I just encountered an issue when deserializing a newtype struct. You usually use a newtype struct (e.g. `struct Foo(Bar)`) to put something inside a tag, however `serde_xml_rs` seems to want...

bug