github dtolnay/syn 0.8.0

latest releases: 2.0.63, 2.0.62, 2.0.61...
7 years ago

This release bumps the quote dependency to 0.2 which changes the handling of primitive integer and floating point types to match the behavior of quasi.

let int: u64 = 100;
quote!(#int)

In 0.1 this would quote as "100". In 0.2 it quotes as "100u64". Similar for i8, i16, i32, i64, isize, u8, u16, u32, usize, f32, f64.

Don't miss a new syn release

NewReleases is sending notifications on new releases.