You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has resulted in an issue in Cargo where rustdocs cannot be generated on Windows machines: rust-lang/cargo#1393
use std::path::Path;fnmain(){let p = Path::new(r"C:\src\rust\cargo-test\test\Cargo.toml");println!("{:?}", p.relative_from(r"C:\src\rust\cargo-test\test"));println!("{:?}", p.relative_from(r"c:\src\rust\cargo-test\test"));}
Some("Cargo.toml")
None
The text was updated successfully, but these errors were encountered:
This has resulted in an issue in Cargo where rustdocs cannot be generated on Windows machines:
rust-lang/cargo#1393
The text was updated successfully, but these errors were encountered: