indexmap-rs / indexmap

A hash table with consistent order and fast iteration; access items by key or sequence index
https://docs.rs/indexmap/
Other
1.71k stars 150 forks source link

Remove doc `html_root_url` #292

Closed zachs18 closed 10 months ago

zachs18 commented 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.

cuviper commented 10 months ago

Oops! We should just remove this altogether, as it's no longer recommended: https://github.com/rust-lang/api-guidelines/pull/230

zachs18 commented 10 months ago

Okay, I've updated the PR to remove the attribute instead of updating it.

cuviper commented 10 months ago

Thanks!