mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-15 12:59:02 +00:00
Add uv-
prefix to all internal crates (#7853)
## Summary Brings more consistency to the repo and ensures that all crates automatically show up in `--verbose` logging.
This commit is contained in:
parent
7b55e97909
commit
14507a1793
319 changed files with 1327 additions and 1317 deletions
|
@ -1,7 +1,5 @@
|
|||
use crate::PythonRunnerOutput;
|
||||
use itertools::Itertools;
|
||||
use pep440_rs::Version;
|
||||
use pep508_rs::PackageName;
|
||||
use regex::Regex;
|
||||
use std::env;
|
||||
use std::fmt::{Display, Formatter};
|
||||
|
@ -13,6 +11,8 @@ use thiserror::Error;
|
|||
use tracing::error;
|
||||
use uv_configuration::BuildOutput;
|
||||
use uv_fs::Simplified;
|
||||
use uv_pep440::Version;
|
||||
use uv_pep508::PackageName;
|
||||
|
||||
/// e.g. `pygraphviz/graphviz_wrap.c:3020:10: fatal error: graphviz/cgraph.h: No such file or directory`
|
||||
static MISSING_HEADER_RE_GCC: LazyLock<Regex> = LazyLock::new(|| {
|
||||
|
@ -285,11 +285,11 @@ impl Error {
|
|||
mod test {
|
||||
use crate::{Error, PythonRunnerOutput};
|
||||
use indoc::indoc;
|
||||
use pep440_rs::Version;
|
||||
use pep508_rs::PackageName;
|
||||
use std::process::ExitStatus;
|
||||
use std::str::FromStr;
|
||||
use uv_configuration::BuildOutput;
|
||||
use uv_pep440::Version;
|
||||
use uv_pep508::PackageName;
|
||||
|
||||
#[test]
|
||||
fn missing_header() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue