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
When flux is building with rust 1.73 the following issue happens:
[ 70s] error: private item shadows public glob re-export [ 70s] --> flux/src/lib.rs:12:16 [ 70s] | [ 70s] 12 | use fluxcore::{Database, Flux}; [ 70s] | ^^^^^^^^ [ 70s] | [ 70s] note: the name `Database` in the type namespace is supposed to be publicly re-exported here [ 70s] --> flux/src/lib.rs:16:46 [ 70s] | [ 70s] 16 | pub use fluxcore::{ast, formatter, semantic, *}; [ 70s] | ^ [ 70s] note: but the private item here shadows it [ 70s] --> flux/src/lib.rs:12:16 [ 70s] | [ 70s] 12 | use fluxcore::{Database, Flux}; [ 70s] | ^^^^^^^^ [ 70s] note: the lint level is defined here [ 70s] --> flux/src/lib.rs:1:38 [ 70s] | [ 70s] 1 | #![cfg_attr(feature = "strict", deny(warnings, missing_docs))] [ 70s] | ^^^^^^^^ [ 70s] = note: `#[deny(hidden_glob_reexports)]` implied by `#[deny(warnings)]` [ 70s] [ 70s] error: private item shadows public glob re-export [ 70s] --> flux/src/lib.rs:12:26 [ 70s] | [ 70s] 12 | use fluxcore::{Database, Flux}; [ 70s] | ^^^^ [ 70s] | [ 70s] note: the name `Flux` in the type namespace is supposed to be publicly re-exported here [ 70s] --> flux/src/lib.rs:16:46 [ 70s] | [ 70s] 16 | pub use fluxcore::{ast, formatter, semantic, *}; [ 70s] | ^ [ 70s] note: but the private item here shadows it [ 70s] --> flux/src/lib.rs:12:26 [ 70s] | [ 70s] 12 | use fluxcore::{Database, Flux}; [ 70s] | ^^^^
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When flux is building with rust 1.73 the following issue happens:
The text was updated successfully, but these errors were encountered: