Trangar
Trangar
> For interop with bincode’s derive feature, you can use the `#[bincode(with_serde)]` attribute on each field that implements serde’s traits. https://docs.rs/bincode/2.0.0-rc.3/bincode/serde/index.html Would this work?
Currently bincode simply encodes/decodes the contents of the `Arc/Rc`: [source](https://github.com/bincode-org/bincode/blob/trunk/src/features/impl_alloc.rs#L444-L561). Serde by default does not implement `Arc/Rc` unless you enable the `rc` feature: https://serde.rs/feature-flags.html#rc It would be great if someone...
We're using cargo cross for this, it might be worth investigating running containers directly ourselves
Not sure if we should've updated this as it's a test to make sure that version of glam still worked, but there was no actual change to the test so...
Should be pretty easy: - Add a field to the [GenStruct](https://github.com/bincode-org/virtue/blob/trunk/src/generate/gen_struct.rs#L8) struct - Add functions to that struct to add attributes - Add documentations that also test the output, see...
> If we want to add multiple attributes at once Let's do the simple solution first; only 1 attribute at a time. We can come up with something smarter in...
I'm up for changing `ParsedAttribute ::Property`. Some options I see: - Make `ParsedAttribute::Property(Ident, TokenTree);` - Make `ParsedAttribute::LiteralProperty(Ident, Literal);` and `ParsedAttribute::IdentProperty(Ident, Ident)` (names bikesheddable) I do feel like there is a...
Rebased onto `dev`