mirror of
https://github.com/astral-sh/uv.git
synced 2025-09-27 04:29:10 +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
|
|
@ -8,9 +8,9 @@ use memchr::memmem::Finder;
|
|||
use serde::Deserialize;
|
||||
use thiserror::Error;
|
||||
|
||||
use pep440_rs::VersionSpecifiers;
|
||||
use pep508_rs::PackageName;
|
||||
use pypi_types::VerbatimParsedUrl;
|
||||
use uv_pep440::VersionSpecifiers;
|
||||
use uv_pep508::PackageName;
|
||||
use uv_pypi_types::VerbatimParsedUrl;
|
||||
use uv_settings::{GlobalOptions, ResolverInstallerOptions};
|
||||
use uv_workspace::pyproject::Sources;
|
||||
|
||||
|
|
@ -159,7 +159,7 @@ impl Pep723Script {
|
|||
#[derive(Debug, Deserialize)]
|
||||
#[serde(rename_all = "kebab-case")]
|
||||
pub struct Pep723Metadata {
|
||||
pub dependencies: Option<Vec<pep508_rs::Requirement<VerbatimParsedUrl>>>,
|
||||
pub dependencies: Option<Vec<uv_pep508::Requirement<VerbatimParsedUrl>>>,
|
||||
pub requires_python: Option<VersionSpecifiers>,
|
||||
pub tool: Option<Tool>,
|
||||
/// The raw unserialized document.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue