David Tolnay

Results 810 comments of David Tolnay

I would prefer not to build this into this crate. https://github.com/dtolnay/dyn-clone/pull/31#pullrequestreview-3059667956 provides an alternative.

Reindeer respects Cargo.lock if there is one. Feel free to add one in shim/third-party/rust. Autocargo supports emitting Cargo.lock -- reindeer itself has one generated by autocargo: https://github.com/facebookincubator/reindeer/blob/main/Cargo.lock. This is guaranteed...

If anyone is following this issue because they want standard library types in signatures and data structures to link to https://doc.rust-lang.org/std, instead of https://doc.rust-lang.org/nightly/std like they do today in docs...

CI failures appear unrelated. I sent a fix in https://github.com/rust-lang/rust-bindgen/pull/2952.

> I wonder if this happens if you have different libraries that all want to use quasi and some use codegen and some do not. I bet it's this. You...

AFAIK Cargo does not support multiple dependencies on the same version with different features.

https://github.com/serde-rs/serde/issues/543 is tracking a resolution of this issue across the ecosystem.

@k0pernicus serde_macros is not supported any more, which is why the last release (6 weeks old at this point) is pulling in an old quasi. Can you see whether the...

@k0pernicus > Is there any other plugin to use `serde` macros? Yes, serde_derive is that plugin. Look at the [forum topic](https://users.rust-lang.org/t/serde-transitioning-to-macros-1-1/7437?u=dtolnay) I linked to or [serde docs](https://serde.rs/codegen-nightly.html) for how to...

@colindjk you need to run `cargo update` to pick up a newer version of serde_derive. You should be seeing 0.8.17 which no longer uses rustc_macro. Keep in mind that serde_derive...