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
Thanks for the excellent crate!
FYI we get a false positive on a duplicate dependency for these lines of code:
https://github.com/PRQL/prql/blob/0a6d2e881b47ec3f6c09b361da625ff252ca512e/crates/prql-parser/Cargo.toml#L22-L25
[target.'cfg(not(target_family="wasm"))'.dependencies] chumsky = "0.9.2" [target.'cfg(target_family="wasm")'.dependencies] chumsky = {version = "0.9.2", features = ["ahash", "std"], default-features = false}
duplicate package mentioned in toml chumsky v0.9.2. Some("chumsky")
These aren't duplicated since there's no overlap in targets.
Here's an example of the annotation: https://github.com/PRQL/prql/actions/runs/5916930046
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the excellent crate!
FYI we get a false positive on a duplicate dependency for these lines of code:
https://github.com/PRQL/prql/blob/0a6d2e881b47ec3f6c09b361da625ff252ca512e/crates/prql-parser/Cargo.toml#L22-L25
These aren't duplicated since there's no overlap in targets.
Here's an example of the annotation: https://github.com/PRQL/prql/actions/runs/5916930046
The text was updated successfully, but these errors were encountered: