Problem:
I am converting some code that uses crate foo, outdated version.
In modern version, foo got split into foo_a, foo_b, foo_c, ... .
Is there a way in docs.rs to easily search multiple crates ?
Problem:
I am converting some code that uses crate foo, outdated version.
In modern version, foo got split into foo_a, foo_b, foo_c, ... .
Is there a way in docs.rs to easily search multiple crates ?
You can use cargo doc
to generate docs for all of the crates in your dependency graph and search there, but I don't think you can search multiple crates on docs.rs itself
I don't think there's something built-in, but you can always use site:docs.rs
with your favourite search engine.
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.