One of my crates (A) uses bincode. Another one (B) depends on this crate and uses bincode too. I'm trying to make crate B use bincode exported from crate A. It works fine with functions from bincode, but not with macros. bincode derive macros seem to expand to code which uses ::bincode::... instead of bincode::... for example. So it seems like I simply can’t use these macros without depending on bincode directly.
Is it really so or am I missing some possible workarounds?