Closed zachs18 closed 10 months ago
The html_root_url currently links to an old version of the docs, so if you run cargo doc --no-deps on a downstream package that depends on indexmap@2.1.0, intra-doc links to indexmap types will resolve to indexmap@1.9.3 on docs.rs.
html_root_url
cargo doc --no-deps
indexmap@2.1.0
indexmap
indexmap@1.9.3
Oops! We should just remove this altogether, as it's no longer recommended: https://github.com/rust-lang/api-guidelines/pull/230
Okay, I've updated the PR to remove the attribute instead of updating it.
Thanks!
The
html_root_url
currently links to an old version of the docs, so if you runcargo doc --no-deps
on a downstream package that depends onindexmap@2.1.0
, intra-doc links toindexmap
types will resolve toindexmap@1.9.3
on docs.rs.