Closed
Description
Including ::
in the package name on Windows 10 gives the following error:
The filename, directory name, or volume label syntax is incorrect. (os error 123)
If the first two lines of my Cargo.toml
are:
[package]
name = "library::core"
I get the above error. If I replace them with:
[package]
name = "library-core"
The package builds correctly.