We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.
This Cargo.toml:
Cargo.toml
[workspace] members = [ ".", "hello-lib", ] [package] name = "hello-rust" version = "0.1.0" edition = "2018" [dependencies] hello-lib = { path = "hello-lib" } hex = "0.4.2"
currently fails to generate a repository because of this error:
Error: Some manifests are not being tracked. Please add the following labels to the `manifests` key: { "//package:Cargo.toml", }
where package is the package containing the above Cargo.toml.
package
We should do the path normalisation to absolute paths before filtering, and normalise out any /./ or /../ path segments too.
/./
/../
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This
Cargo.toml
:currently fails to generate a repository because of this error:
where
package
is the package containing the aboveCargo.toml
.We should do the path normalisation to absolute paths before filtering, and normalise out any
/./
or/../
path segments too.The text was updated successfully, but these errors were encountered: