Replies: 1 comment 3 replies
-
hmm, I think that would only work if both systems used the exact same algorithm to determine what the latest version is 🤔 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In rust-lang/docs.rs#1438 I'm working on improving ability for search engines to reliably find the latest version of a crate. The main part of the docs.rs work is done: https://docs.rs/rustls/ now redirects to https://docs.rs/rustls/latest/rustls/, not https://docs.rs/rustls/0.20.2/rustls/.
It would be helpful if crates.io also linked to the latest version. In particular, I'm proposing: If a user is viewing the latest version of crate, the documentation link on crates.io should point to
https://docs.rs/<cratename>/
instead of a specific versioned URL. If the user is viewing an older version, the documentation link on crates.io should continue to point to a versioned URL as it does today.Beta Was this translation helpful? Give feedback.
All reactions