maciejhirsz / kobold

Easy declarative web interfaces.
https://docs.rs/kobold/
Mozilla Public License 2.0
385 stars 7 forks source link

Fix errors in nightly #65

Closed maciejhirsz closed 1 year ago

maciejhirsz commented 1 year ago

Tests on nightly failed as it attempted to use proc_macro2::TokenStream in pub signatures.

Instead of importing proc_macro2 as proc_macro we import either proc_macro or proc_macro2 as tokens and use that as a faux crate name everywhere, so that proc_macro::TokenStream always resolves to the correct, undecorated TokenStream.