Closed tshauck closed 6 months ago
Ah, the feature wasn't added to the noodles meta-crate.
A workaround in the interim is to add noodles-gff with the async feature enabled to your list of dependencies, i.e.,
noodles-gff = { version = "0.32.0", features = ["async"] }
Thanks!
Thanks for the quick update w.r.t. the async reader. I tried to give it shot, but am running into an issue where
AsyncReader
is seemingly gated by theasync
feature even though it's enabled and seems to work for other subcrates (e.g.fasta
).To reproduce, you can create a new crate with a file that like:
And a cargo.toml that looks like:
With the above code, I get the error that...
Note that near the end of the file I have
fasta::AsyncReader
and that seems to compile fine.