uv/crates/uv-configuration/src/bounds.rs

9 lines
176 B
Rust

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