- Fix a case where the
#[bitflags]
macro would access the crate throughenumflags2::...
instead of::enumflags2::...
. This makes the generated code more robust and avoids triggering theunused_qualifications
lint. (#58) - Rework the proc-macro to use
syn
with thederive
feature (as opposed tofull
). This reduces thecargo build
time forenumflags2
by about 20%.