Closed Crispy13 closed 7 months ago
This is not an error. When using the noodles meta crate, you would indeed import using the re-exported names, e.g., noodles::bam
. The examples, however, are written with respect to their individual crates, e.g., if you added noodles_bam
directly as a dependency.
It's recommended to use the meta crate as described in the README.
Ah, I see.
In https://docs.rs/noodles/latest/noodles/bam/index.html,
May it need to be modified to
use noodles::bam as bam;
?