mirror of
https://github.com/astral-sh/uv.git
synced 2025-09-24 03:02:34 +00:00
Rename uv-interpreter
crate to uv-toolchain
(#4120)
In preparation for managed toolchains #2607, just renames the crate to something broader. See #4121 and https://github.com/astral-sh/uv/pull/4138 to see the final intent.
This commit is contained in:
parent
2803a8c475
commit
325982c418
78 changed files with 117 additions and 117 deletions
|
@ -15,8 +15,8 @@ use uv_configuration::{
|
|||
};
|
||||
use uv_dispatch::BuildDispatch;
|
||||
use uv_git::GitResolver;
|
||||
use uv_interpreter::PythonEnvironment;
|
||||
use uv_resolver::{FlatIndex, InMemoryIndex};
|
||||
use uv_toolchain::PythonEnvironment;
|
||||
use uv_types::{BuildContext, BuildIsolation, InFlight};
|
||||
|
||||
#[derive(Parser)]
|
||||
|
|
|
@ -3,7 +3,7 @@ use std::path::PathBuf;
|
|||
use clap::Parser;
|
||||
use tracing::info;
|
||||
use uv_cache::{Cache, CacheArgs};
|
||||
use uv_interpreter::PythonEnvironment;
|
||||
use uv_toolchain::PythonEnvironment;
|
||||
|
||||
#[derive(Parser)]
|
||||
pub(crate) struct CompileArgs {
|
||||
|
|
|
@ -13,8 +13,8 @@ use tokio::time::Instant;
|
|||
use tracing::{info, info_span, Instrument};
|
||||
|
||||
use uv_fs::Simplified;
|
||||
use uv_interpreter::downloads::{DownloadResult, Error, PythonDownload, PythonDownloadRequest};
|
||||
use uv_interpreter::managed::InstalledToolchains;
|
||||
use uv_toolchain::downloads::{DownloadResult, Error, PythonDownload, PythonDownloadRequest};
|
||||
use uv_toolchain::managed::InstalledToolchains;
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
pub(crate) struct FetchPythonArgs {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue