Michael Bryan

Results 216 issues of Michael Bryan

I wasn't sure whether this would be the most appropriate way to get in contact, but I'm wondering if you ever looked into splitting splines as part of your research?...

What are your thoughts on adding [serde] support so you can serialize to/deserialize from an INI file? Along the same lines as [serde_json], [toml], or [serde_xml]. [serde]: https://serde.rs/ [serde_json]: https://docs.rs/serde_json...

The build script for `rusty-jsc-sys` doesn't include a `main()` function on Windows, which means builds will fail with the following error on Windows: ``` error[E0601]: `main` function not found in...

I'm trying to use the `tflite` crate on Android and iOS, but have been having issues getting it to compile. For some reason it doesn't look like `bindgen` can find...

In a project I found myself needing to calculate the memory used by a `PathBuf` and ended up just ignoring the field. It'd be better if `PathBuf` implemented `HeapSizeOf` though....

I just encountered an issue where the `heapSizeOf` derive wasn't able to parse `dyn Trait` in a struct, so I thought I'd make a PR to update `heapsize_derive` to use...

With https://github.com/wasmerio/wasmer-toml/pull/8 now being merged, we should rename the command to `cargo wasmer` and switch to the `wasmer-toml` crate. For compatibility, it might be a good idea to leave the...

It looks like when `cargo-wapm` generates the `wapm.toml`, it uses absolute paths for things like the `README` rather than making them relative to the base directory. Here is one example:...

Publishing Rust crates with the `wapm` command no longer works because you run into validation errors around bulk memory operations. ```console $ cargo wapm --dry-run 2023-07-19T02:43:40.113941Z INFO publish: cargo_wapm::publish: Getting...

When constructing a `wapm_toml::Manifest`, we call [`determine_target()`](https://github.com/wasmerio/cargo-wapm/blob/f8d9e6d58e6fa923aa23b895c4d0dc5aa0c4ecff/src/publish.rs#L95-L115) which takes a `cargo_metadata::Package` (i.e. a parsed `Cargo.toml`) and returns a reference to the **one** `cargo_metadata::Target` in that `Package`. From there, we construct...

enhancement