You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
syn is a notoriously slow crate to build. Most of the Rust ecosystem has moved from syn v1 to v2. However, lol_html indirectly depends on syn@1 (lol_html depends on [email protected] and [email protected], which depend on [email protected] -> [email protected] -> syn@1). This likely means that most projects using lol_html are including both versions of syn.
It would be nice to remove the syn@1 dependency to speed up compilation time.
As an aside: thanks for open sourcing this library!
The text was updated successfully, but these errors were encountered:
syn
is a notoriously slow crate to build. Most of the Rust ecosystem has moved fromsyn
v1 to v2. However,lol_html
indirectly depends onsyn@1
(lol_html
depends on[email protected]
and[email protected]
, which depend on[email protected] -> [email protected] -> syn@1
). This likely means that most projects usinglol_html
are including both versions ofsyn
.It would be nice to remove the
syn@1
dependency to speed up compilation time.As an aside: thanks for open sourcing this library!
The text was updated successfully, but these errors were encountered: