-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong links in docs #1
Comments
Hello @eugenesvk. I believe these docs are generated by |
I think it fails because there is no Though no idea whether it's possible to configure docs to link to non-platform-specific docs in a dependency |
This is how these links defined in /// [`serde_json::Value`] from [`serde_json`].
pub type Value = serde_json::Value;
/// [`serde_json::Number`] from [`serde_json`].
pub type Number = serde_json::Number;
/// [`serde_json::Map`] from [`serde_json`].
pub type Map<K, V> = serde_json::Map<K, V>;
/// [`serde_json::from_value`] from [`serde_json`].
pub use serde_json::from_value;
/// [`serde_json::to_value`] from [`serde_json`].
pub use serde_json::to_value; When generating docs locally, everything works fine. Looks like this is a bug of https://docs.rs. |
yeah, locally as far as I understand, it doesn't generate any platforms except the one you compile it on, you don't have the platform picker, so it's not an issue |
link to value on this page https://docs.rs/osakit/latest/osakit/type.Value.html
opens an invalid
https://docs.rs/serde_json/1.0.133/x86_64-apple-darwin/serde_json/value/enum.Value.html
which redirects to an invalid search query
which should instead be
https://docs.rs/serde_json/1.0.133/serde_json/enum.Value.html
since serde_json doesn't seem to have platform-dependend values?
The text was updated successfully, but these errors were encountered: