This causes export_prefix to filter based on Rust item name, intentionally not taking any export names set by the name = ... attribute into account. @schungx pointed this out in #38.
One thing I did not do was presume that the presence of an export name automatically assumes that it should be exported. To handle that case, I am planning an always attribute that is the inverse of skip.
This is being merged to master, because I merged the other fix there by mistake. Once this is merged, I'd like master to be merged into plugins for the last little bit of work I do on this feature.
This causes
export_prefix
to filter based on Rust item name, intentionally not taking any export names set by thename = ...
attribute into account. @schungx pointed this out in #38.One thing I did not do was presume that the presence of an export name automatically assumes that it should be exported. To handle that case, I am planning an
always
attribute that is the inverse ofskip
.This is being merged to
master
, because I merged the other fix there by mistake. Once this is merged, I'd likemaster
to be merged intoplugins
for the last little bit of work I do on this feature.