a5fa7fa996
At certain points in the code, dependency groups are represented by `DevGroups*` naming, probably as a historical artifact. This PR updates the naming. This includes renaming `uv-configuration/src/dev.rs` to `uv-configuration/src/dependency_groups.rs`.
50 lines
1007 B
Rust
50 lines
1007 B
Rust
pub use authentication::*;
|
|
pub use build_options::*;
|
|
pub use concurrency::*;
|
|
pub use config_settings::*;
|
|
pub use constraints::*;
|
|
pub use dependency_groups::*;
|
|
pub use dry_run::*;
|
|
pub use editable::*;
|
|
pub use export_format::*;
|
|
pub use extras::*;
|
|
pub use hash::*;
|
|
pub use install_options::*;
|
|
pub use name_specifiers::*;
|
|
pub use overrides::*;
|
|
pub use package_options::*;
|
|
pub use preview::*;
|
|
pub use project_build_backend::*;
|
|
pub use rayon::*;
|
|
pub use required_version::*;
|
|
pub use sources::*;
|
|
pub use target_triple::*;
|
|
pub use trusted_host::*;
|
|
pub use trusted_publishing::*;
|
|
pub use vcs::*;
|
|
|
|
mod authentication;
|
|
mod build_options;
|
|
mod concurrency;
|
|
mod config_settings;
|
|
mod constraints;
|
|
mod dependency_groups;
|
|
mod dry_run;
|
|
mod editable;
|
|
mod export_format;
|
|
mod extras;
|
|
mod hash;
|
|
mod install_options;
|
|
mod name_specifiers;
|
|
mod overrides;
|
|
mod package_options;
|
|
mod preview;
|
|
mod project_build_backend;
|
|
mod rayon;
|
|
mod required_version;
|
|
mod sources;
|
|
mod target_triple;
|
|
mod trusted_host;
|
|
mod trusted_publishing;
|
|
mod vcs;
|