Upgrade to value-bag 1.0.0-alpha.9 and remove by-value 128bit int conversions#504
Conversation
|
We can work around the breakage if it's worth it by the way. I just carried it through to |
Thomasdezeeuw
left a comment
There was a problem hiding this comment.
LGTM.
I also took a quick the changes to sval and I think I found a breaking one in sval-rs/value-bag@3fb84ab#diff-2e9d962a08321605940b5a657135052fbcef87b5e360662bb527c96d9a615542R24-R25. It uses ? in enabling feature, which is 1.60+, while log still supports 1.31 (although we could bump that).
| impl_to_value_primitive![ | ||
| usize, u8, u16, u32, u64, u128, isize, i8, i16, i32, i64, i128, f32, f64, char, bool, | ||
| ]; | ||
| impl_to_value_primitive![usize, u8, u16, u32, u64, isize, i8, i16, i32, i64, f32, f64, char, bool,]; |
There was a problem hiding this comment.
I think that macro implementation is a little iffy and it actually requires that trailing , 😄
Ah well spotted! We actually only require the latest stable for the key-value API, so are ok to bump this. That feature is perfect for that library because it stitches together serialization APIs. Before I was wondering how I could ever introduce a new framework like |
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This PR upgrades our
value-bagversion to1.0.0-alpha.9, which includes a breaking change to how 128bit numbers are handled. Instead of storing them by-value we only store them by reference. Along with some other internal layout changes this reduces the size ofValuefrom 48 to 24 bytes, which is a great saving for the stack-local arrays we create to hold them.In practice this doesn't affect whether or not 128bit values can be used in the macros because they rely on the
ToValuetrait, which is always by-reference. I'd be keen to hear if anybody is relying on theFromimpls though.I'm hoping to get this through sooner rather than later in case rust-lang/rust#95845 is merged in its current state that breaks constant type id comparison, which will mean shipping a patch to
value-bagfornightlyusers.r? @Thomasdezeeuw