Jay Oster

Results 366 comments of Jay Oster

`rustc` also emits warnings about this: ``` warning: `extern` block uses type `u128` which is not FFI-safe: 128-bit integers don't currently have a known stable ABI ``` You're right, it...

For ISAs with a minimum addressable data size that is not 8-bits, this suggestion sounds reasonable. I have found that `#bits` is usually not the right tool, however. I am...

I believe that addresses the specific issue I brought up in this thread. It looks like the label alignment can be temporarily made smaller for packing structs, also.

@hlorenzi I think this PR is ready for a review. It would be nice to eventually add lints to CI (clippy, rustdoc, and rustfmt) so that editors with integrated clippy...

The binary name does not change. I don't think it will mess up `cargo install` ... But I've been wrong before. 😅 I use workspaces quite frequently. It takes getting...

The challenge is that Cargo doesn't have great support for crates that combine a binary with a reusable library. See https://github.com/rust-lang/cargo/issues/1982 for an example of an issue that this combination...

When you get a sense of what you want to do here, feel feee to either close this PR with a better one, or you can even take over this...

FWIW, I got this warning message when I updated `customasm` today. ``` Installing customasm v0.11.10 warning: output filename collision. The bin target `customasm` in package `customasm v0.11.10` has the same...

> Is it possible for you to declare a dependency on a sub-crate from crates.io? Yes, both crates have to be published separately, but it is otherwise fine to do...

It is quite common! Have a look at https://github.com/nical/lyon/tree/master/crates or https://github.com/tauri-apps/tauri/tree/dev/core and compare with how many crates they have published. These aren't even the biggest examples, just the ones I...