scraper
scraper copied to clipboard
Introduce proc macros for scraper
As of now, the scraper proc macros are an independent crate, and they don't constitute an optional feature, which is what we want to achieve. Moreover the selector
macro replicates parsing both at runtime and at complie time, because the objects from selectors
crate don't implement quote
's ToToken
trait, which could allow us to adopt a more efficient approach. For all this reasons, I'll mark this as a draft for now.