Remove warnings for missing lower bounds (#11195)

These are noisy relative to the effect they have on the user. It seems
better to prioritize hints on poor resolutions. Notably, it seems hard
to make these "not noisy" ref #11091.

Does not include the "lowest" resolution mode, in which lower bounds are
critical.
This commit is contained in:
Zanie Blue 2025-02-03 16:03:31 -06:00 committed by GitHub
parent efbc77bc37
commit dd7cd2e86a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 49 additions and 185 deletions

View file

@ -1,8 +0,0 @@
#[derive(Debug, Default, Copy, Clone)]
pub enum LowerBound {
/// Allow missing lower bounds.
#[default]
Allow,
/// Warn about missing lower bounds.
Warn,
}

View file

@ -1,5 +1,4 @@
pub use authentication::*;
pub use bounds::*;
pub use build_options::*;
pub use concurrency::*;
pub use config_settings::*;
@ -24,7 +23,6 @@ pub use trusted_publishing::*;
pub use vcs::*;
mod authentication;
mod bounds;
mod build_options;
mod concurrency;
mod config_settings;