repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/extras.rs
crates/uv-requirements/src/extras.rs
use std::sync::Arc; use futures::{TryStreamExt, stream::FuturesOrdered}; use uv_distribution::{DistributionDatabase, Reporter}; use uv_distribution_types::DistributionMetadata; use uv_distribution_types::Requirement; use uv_resolver::{InMemoryIndex, MetadataResponse}; use uv_types::{BuildContext, HashStrategy}; use ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/source_tree.rs
crates/uv-requirements/src/source_tree.rs
use std::borrow::Cow; use std::path::{Path, PathBuf}; use std::sync::Arc; use anyhow::{Context, Result}; use futures::TryStreamExt; use futures::stream::FuturesOrdered; use url::Url; use uv_configuration::ExtrasSpecification; use uv_distribution::{DistributionDatabase, FlatRequiresDist, Reporter, RequiresDist}; use u...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/upgrade.rs
crates/uv-requirements/src/upgrade.rs
use std::path::Path; use anyhow::Result; use uv_configuration::Upgrade; use uv_fs::CWD; use uv_git::ResolvedRepositoryReference; use uv_requirements_txt::RequirementsTxt; use uv_resolver::{Lock, LockError, Preference, PreferenceError, PylockToml, PylockTomlErrorKind}; #[derive(Debug, Default)] pub struct LockedRequi...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/lookahead.rs
crates/uv-requirements/src/lookahead.rs
use std::{collections::VecDeque, sync::Arc}; use futures::StreamExt; use futures::stream::FuturesUnordered; use rustc_hash::FxHashSet; use tracing::trace; use uv_configuration::{Constraints, Overrides}; use uv_distribution::{DistributionDatabase, Reporter}; use uv_distribution_types::{Dist, DistributionMetadata, Requ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/unnamed.rs
crates/uv-requirements/src/unnamed.rs
use std::borrow::Cow; use std::path::Path; use std::str::FromStr; use std::sync::Arc; use configparser::ini::Ini; use futures::{TryStreamExt, stream::FuturesOrdered}; use serde::Deserialize; use tracing::debug; use url::Host; use uv_distribution::{DistributionDatabase, Reporter}; use uv_distribution_filename::{DistEx...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/specification.rs
crates/uv-requirements/src/specification.rs
//! Collecting the requirements to compile, sync or install. //! //! # `requirements.txt` format //! //! The `requirements.txt` format (also known as `requirements.in`) is static except for the //! possibility of making network requests. //! //! All entries are stored as `requirements` and `editables` or `constraints` ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-requirements/src/sources.rs
crates/uv-requirements/src/sources.rs
use std::ffi::OsStr; use std::path::{Path, PathBuf}; use anyhow::{Context, Result}; use console::Term; use uv_fs::{CWD, Simplified}; use uv_requirements_txt::RequirementsTxtRequirement; #[derive(Debug, Clone)] pub enum RequirementsSource { /// A package was provided on the command line (e.g., `pip install flask`...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/uninstall.rs
crates/uv-install-wheel/src/uninstall.rs
use std::collections::BTreeSet; use std::path::{Component, Path, PathBuf}; use std::sync::{LazyLock, Mutex}; use tracing::trace; use uv_fs::write_atomic_sync; use crate::Error; use crate::wheel::read_record_file; /// Uninstall the wheel represented by the given `.dist-info` directory. pub fn uninstall_wheel(dist_inf...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/lib.rs
crates/uv-install-wheel/src/lib.rs
//! Takes a wheel and installs it into a venv. use std::io; use std::path::PathBuf; use owo_colors::OwoColorize; use thiserror::Error; use uv_fs::Simplified; use uv_normalize::PackageName; use uv_pep440::Version; use uv_pypi_types::Scheme; pub use install::install_wheel; pub use linker::{LinkMode, Locks}; pub use u...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/install.rs
crates/uv-install-wheel/src/install.rs
//! Like `wheel.rs`, but for installing wheels that have already been unzipped, rather than //! reading from a zip file. use std::path::Path; use std::str::FromStr; use fs_err::File; use tracing::{instrument, trace}; use uv_distribution_filename::WheelFilename; use uv_pep440::Version; use uv_pypi_types::{DirectUrl, ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/wheel.rs
crates/uv-install-wheel/src/wheel.rs
use std::collections::HashMap; use std::io; use std::io::{BufReader, Read, Write}; use std::path::{Path, PathBuf}; use data_encoding::BASE64URL_NOPAD; use fs_err as fs; use fs_err::{DirEntry, File}; use mailparse::parse_headers; use rustc_hash::FxHashMap; use sha2::{Digest, Sha256}; use tracing::{debug, instrument, tr...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/record.rs
crates/uv-install-wheel/src/record.rs
use serde::{Deserialize, Serialize}; /// Line in a RECORD file /// <https://www.python.org/dev/peps/pep-0376/#record> /// /// ```csv /// tqdm/cli.py,sha256=x_c8nmc4Huc-lKEsAXj78ZiyqSJ9hJ71j7vltY67icw,10509 /// tqdm-4.62.3.dist-info/RECORD,, /// ``` #[derive(Deserialize, Serialize, PartialOrd, PartialEq, Ord, Eq)] pub ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/script.rs
crates/uv-install-wheel/src/script.rs
use configparser::ini::Ini; use regex::Regex; use rustc_hash::FxHashSet; use serde::Serialize; use std::sync::LazyLock; use crate::{Error, wheel}; /// A script defining the name of the runnable entrypoint and the module and function that should be /// run. #[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd, Serial...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-install-wheel/src/linker.rs
crates/uv-install-wheel/src/linker.rs
use std::ffi::{OsStr, OsString}; use std::path::{Path, PathBuf}; use std::sync::{Arc, Mutex}; use std::time::SystemTime; use fs_err as fs; use fs_err::DirEntry; use reflink_copy as reflink; use rustc_hash::FxHashMap; use serde::{Deserialize, Serialize}; use tempfile::tempdir_in; use tracing::{debug, instrument, trace}...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-scripts/src/lib.rs
crates/uv-scripts/src/lib.rs
use std::collections::BTreeMap; use std::io; use std::path::{Path, PathBuf}; use std::str::FromStr; use std::sync::LazyLock; use memchr::memmem::Finder; use serde::Deserialize; use thiserror::Error; use url::Url; use uv_configuration::SourceStrategy; use uv_normalize::PackageName; use uv_pep440::VersionSpecifiers; us...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv-console/src/lib.rs
crates/uv-console/src/lib.rs
use console::{Key, Term, measure_text_width, style}; use std::{cmp::Ordering, iter}; /// Prompt the user for confirmation in the given [`Term`]. /// /// This is a slimmed-down version of `dialoguer::Confirm`, with the post-confirmation report /// enabled. pub fn confirm(message: &str, term: &Term, default: bool) -> st...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/build.rs
crates/uv/build.rs
//! This embeds a "manifest" - a special XML document - into the uv binary on Windows builds. //! //! It includes reasonable defaults for Windows binaries: //! - `System` codepage to retain backwards compatibility with previous uv releases. //! We can set to the utf-8 codepage in a future breaking release which lets ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/settings.rs
crates/uv/src/settings.rs
use std::env::VarError; use std::num::NonZeroUsize; use std::path::PathBuf; use std::process; use std::str::FromStr; use std::time::Duration; use crate::commands::{PythonUpgrade, PythonUpgradeSource}; use uv_auth::Service; use uv_cache::{CacheArgs, Refresh}; use uv_cli::comma::CommaSeparatedRequirements; use uv_cli::{...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/lib.rs
crates/uv/src/lib.rs
#![deny(clippy::print_stdout, clippy::print_stderr)] use std::borrow::Cow; use std::ffi::OsString; use std::fmt::Write; use std::io::stdout; #[cfg(feature = "self-update")] use std::ops::Bound; use std::path::Path; use std::process::ExitCode; use std::str::FromStr; use std::sync::atomic::Ordering; use anstream::eprin...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/printer.rs
crates/uv/src/printer.rs
use anstream::{eprint, print}; use indicatif::ProgressDrawTarget; #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub(crate) enum Printer { /// A printer that suppresses all output. Silent, /// A printer that suppresses most output, but preserves "important" stdout. Quiet, /// A printer that prints to...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/child.rs
crates/uv/src/child.rs
use tokio::process::Child; use tracing::debug; use crate::commands::ExitStatus; /// Wait for the child process to complete, handling signals and error codes. /// /// Note that this registers handles to ignore some signals in the parent process. This is safe as /// long as the command is the last thing that runs in th...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/windows_exception.rs
crates/uv/src/windows_exception.rs
//! Helper for setting up Windows exception handling. //! //! Recent versions of Windows seem to no longer show dialog boxes on access violations //! (segfaults) or similar errors. The user experience is that the command exits with //! the exception code as its exit status and no visible output. In order to see these /...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/install_source.rs
crates/uv/src/install_source.rs
#![cfg(not(feature = "self-update"))] use std::{ ffi::OsStr, path::{Path, PathBuf}, }; /// Known sources for uv installations. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub(crate) enum InstallSource { Homebrew, } impl InstallSource { /// Attempt to infer the install source for the given executable...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/logging.rs
crates/uv/src/logging.rs
use std::str::FromStr; use anyhow::Context; #[cfg(feature = "tracing-durations-export")] use tracing_durations_export::{ DurationsLayer, DurationsLayerBuilder, DurationsLayerDropGuard, plot::PlotConfig, }; use tracing_subscriber::filter::Directive; use tracing_subscriber::layer::SubscriberExt; use tracing_subscrib...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/venv.rs
crates/uv/src/commands/venv.rs
use std::fmt::Write; use std::path::{Path, PathBuf}; use std::str::FromStr; use std::vec; use anyhow::Result; use owo_colors::OwoColorize; use thiserror::Error; use uv_cache::Cache; use uv_client::{BaseClientBuilder, FlatIndexClient, RegistryClientBuilder}; use uv_configuration::{ BuildOptions, Concurrency, Const...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/diagnostics.rs
crates/uv/src/commands/diagnostics.rs
use std::str::FromStr; use std::sync::{Arc, LazyLock}; use owo_colors::OwoColorize; use rustc_hash::FxHashMap; use version_ranges::Ranges; use uv_distribution_types::{ DerivationChain, DerivationStep, Dist, DistErrorKind, Name, RequestedDist, }; use uv_normalize::PackageName; use uv_pep440::Version; use uv_resolv...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/publish.rs
crates/uv/src/commands/publish.rs
use std::fmt::Write; use std::sync::Arc; use anyhow::{Context, Result, bail}; use console::Term; use owo_colors::{AnsiColors, OwoColorize}; use tokio::sync::Semaphore; use tracing::{debug, info, trace}; use uv_auth::{Credentials, DEFAULT_TOLERANCE_SECS, PyxTokenStore}; use uv_cache::Cache; use uv_client::{ AuthInt...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/cache_prune.rs
crates/uv/src/commands/cache_prune.rs
use std::fmt::Write; use anyhow::{Context, Result}; use owo_colors::OwoColorize; use tracing::debug; use uv_cache::{Cache, Removal}; use uv_fs::Simplified; use crate::commands::{ExitStatus, human_readable_bytes}; use crate::printer::Printer; /// Prune all unreachable objects from the cache. pub(crate) async fn cach...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/build_backend.rs
crates/uv/src/commands/build_backend.rs
use crate::commands::ExitStatus; use anyhow::{Context, Result}; use std::env; use std::io::Write; use std::path::Path; /// PEP 517 hook to build a source distribution. pub(crate) fn build_sdist(sdist_directory: &Path) -> Result<ExitStatus> { let filename = uv_build_backend::build_source_dist( &env::current...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/cache_clean.rs
crates/uv/src/commands/cache_clean.rs
use std::fmt::Write; use anyhow::{Context, Result}; use owo_colors::OwoColorize; use tracing::debug; use uv_cache::{Cache, Removal}; use uv_fs::Simplified; use uv_normalize::PackageName; use crate::commands::reporters::{CleaningDirectoryReporter, CleaningPackageReporter}; use crate::commands::{ExitStatus, human_read...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/cache_dir.rs
crates/uv/src/commands/cache_dir.rs
use owo_colors::OwoColorize; use std::fmt::Write; use uv_cache::Cache; use uv_fs::Simplified; use crate::commands::ExitStatus; use crate::printer::Printer; /// Show the cache directory. pub(crate) fn cache_dir(cache: &Cache, printer: Printer) -> anyhow::Result<ExitStatus> { writeln!( printer.stdout(), ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/cache_size.rs
crates/uv/src/commands/cache_size.rs
use std::fmt::Write; use anyhow::Result; use diskus::DiskUsage; use crate::commands::{ExitStatus, human_readable_bytes}; use crate::printer::Printer; use uv_cache::Cache; use uv_preview::{Preview, PreviewFeatures}; use uv_warnings::warn_user; /// Display the total size of the cache. pub(crate) fn cache_size( cac...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/help.rs
crates/uv/src/commands/help.rs
use std::ffi::OsString; use std::path::PathBuf; use std::str::FromStr; use std::{fmt::Display, fmt::Write}; use anstream::{ColorChoice, stream::IsTerminal}; use anyhow::{Result, anyhow}; use clap::CommandFactory; use itertools::Itertools; use owo_colors::OwoColorize; use which::which; use super::ExitStatus; use crate...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/build_frontend.rs
crates/uv/src/commands/build_frontend.rs
use std::borrow::Cow; use std::fmt::Write as _; use std::io::Write as _; use std::path::{Path, PathBuf}; use std::str::FromStr; use std::{fmt, io}; use anyhow::{Context, Result}; use owo_colors::OwoColorize; use thiserror::Error; use tracing::instrument; use uv_build_backend::check_direct_build; use uv_cache::{Cache,...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/self_update.rs
crates/uv/src/commands/self_update.rs
use std::fmt::Write; use anyhow::Result; use axoupdater::{AxoUpdater, AxoupdateError, UpdateRequest}; use owo_colors::OwoColorize; use tracing::debug; use uv_client::{BaseClientBuilder, WrappedReqwestError}; use uv_fs::Simplified; use crate::commands::ExitStatus; use crate::printer::Printer; /// Attempt to update t...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/mod.rs
crates/uv/src/commands/mod.rs
use std::borrow::Cow; use std::io::stdout; use std::path::{Path, PathBuf}; use std::time::Duration; use std::{fmt::Write, process::ExitCode}; use anstream::AutoStream; use anyhow::Context; use owo_colors::OwoColorize; use tracing::debug; pub(crate) use auth::dir::dir as auth_dir; pub(crate) use auth::helper::helper a...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/reporters.rs
crates/uv/src/commands/reporters.rs
use std::env; use std::fmt::Write; use std::ops::Deref; use std::sync::LazyLock; use std::sync::{Arc, Mutex}; use std::time::Duration; use indicatif::{MultiProgress, ProgressBar, ProgressStyle}; use owo_colors::OwoColorize; use rustc_hash::FxHashMap; use crate::commands::human_readable_bytes; use crate::printer::Prin...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/uninstall.rs
crates/uv/src/commands/python/uninstall.rs
use std::collections::BTreeSet; use std::fmt::Write; use std::path::PathBuf; use anyhow::Result; use futures::StreamExt; use futures::stream::FuturesUnordered; use indexmap::IndexSet; use itertools::Itertools; use owo_colors::OwoColorize; use rustc_hash::{FxHashMap, FxHashSet}; use tracing::{debug, warn}; use uv_fs::...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/list.rs
crates/uv/src/commands/python/list.rs
use serde::Serialize; use std::collections::BTreeSet; use std::fmt::Write; use uv_cli::PythonListFormat; use uv_pep440::Version; use uv_preview::Preview; use anyhow::Result; use itertools::Either; use owo_colors::OwoColorize; use rustc_hash::FxHashSet; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_fs::...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/find.rs
crates/uv/src/commands/python/find.rs
use anyhow::Result; use std::fmt::Write; use std::path::Path; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_configuration::DependencyGroupsWithDefaults; use uv_fs::Simplified; use uv_preview::Preview; use uv_python::downloads::ManagedPythonDownloadList; use uv_python::{ EnvironmentPreference, Pytho...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/install.rs
crates/uv/src/commands/python/install.rs
use std::borrow::Cow; use std::collections::BTreeMap; use std::fmt::Write; use std::io::ErrorKind; use std::path::{Path, PathBuf}; use std::str::FromStr; use anyhow::{Error, Result}; use futures::StreamExt; use futures::stream::FuturesUnordered; use indexmap::IndexSet; use itertools::{Either, Itertools}; use owo_color...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/update_shell.rs
crates/uv/src/commands/python/update_shell.rs
#![cfg_attr(windows, allow(unreachable_code))] use std::fmt::Write; use anyhow::Result; use owo_colors::OwoColorize; use tokio::io::AsyncWriteExt; use tracing::debug; use uv_fs::Simplified; use uv_python::managed::python_executable_dir; use uv_shell::Shell; use crate::commands::ExitStatus; use crate::printer::Print...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/mod.rs
crates/uv/src/commands/python/mod.rs
pub(crate) mod dir; pub(crate) mod find; pub(crate) mod install; pub(crate) mod list; pub(crate) mod pin; pub(crate) mod uninstall; pub(crate) mod update_shell; #[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)] pub(super) enum ChangeEventKind { /// The Python version was uninstalled. Removed, /...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/dir.rs
crates/uv/src/commands/python/dir.rs
use std::fmt::Write; use anyhow::Context; use owo_colors::OwoColorize; use uv_fs::Simplified; use uv_python::managed::{ManagedPythonInstallations, python_executable_dir}; use crate::printer::Printer; /// Show the Python installation directory. pub(crate) fn dir(bin: bool, printer: Printer) -> anyhow::Result<()> { ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/python/pin.rs
crates/uv/src/commands/python/pin.rs
use std::fmt::Write; use std::path::Path; use std::str::FromStr; use anyhow::{Result, bail}; use owo_colors::OwoColorize; use tracing::debug; use uv_python::downloads::ManagedPythonDownloadList; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_configuration::DependencyGroupsWithDefaults; use uv_fs::Simpl...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/auth/login.rs
crates/uv/src/commands/auth/login.rs
use std::fmt::Write; use anyhow::{Result, bail}; use console::Term; use owo_colors::OwoColorize; use url::Url; use uuid::Uuid; use uv_auth::{ AccessToken, AuthBackend, Credentials, PyxJwt, PyxOAuthTokens, PyxTokenStore, PyxTokens, Service, TextCredentialStore, }; use uv_client::{AuthIntegration, BaseClient, B...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/auth/helper.rs
crates/uv/src/commands/auth/helper.rs
use std::collections::HashMap; use std::fmt::Write; use std::io::Read; use anyhow::{Context, Result, bail}; use serde::{Deserialize, Serialize}; use tracing::debug; use uv_auth::{AuthBackend, Credentials, PyxTokenStore}; use uv_client::BaseClientBuilder; use uv_preview::{Preview, PreviewFeatures}; use uv_redacted::Di...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/auth/mod.rs
crates/uv/src/commands/auth/mod.rs
pub(crate) mod dir; pub(crate) mod helper; pub(crate) mod login; pub(crate) mod logout; pub(crate) mod token;
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/auth/logout.rs
crates/uv/src/commands/auth/logout.rs
use std::fmt::Write; use anyhow::{Context, Result, bail}; use owo_colors::OwoColorize; use uv_auth::{AuthBackend, Credentials, PyxTokenStore, Service, TextCredentialStore, Username}; use uv_client::BaseClientBuilder; use uv_distribution_types::IndexUrl; use uv_pep508::VerbatimUrl; use uv_preview::Preview; use crate:...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/auth/dir.rs
crates/uv/src/commands/auth/dir.rs
use owo_colors::OwoColorize; use std::fmt::Write; use uv_auth::{PyxTokenStore, Service, TextCredentialStore}; use uv_fs::Simplified; use crate::printer::Printer; /// Show the credentials directory. pub(crate) fn dir(service: Option<&Service>, printer: Printer) -> anyhow::Result<()> { if let Some(service) = servi...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/auth/token.rs
crates/uv/src/commands/auth/token.rs
use std::fmt::Write; use anyhow::{Result, bail}; use tracing::debug; use uv_auth::{AuthBackend, Service}; use uv_auth::{Credentials, PyxTokenStore}; use uv_client::{AuthIntegration, BaseClient, BaseClientBuilder}; use uv_preview::Preview; use crate::commands::ExitStatus; use crate::commands::auth::login; use crate::...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/workspace/list.rs
crates/uv/src/commands/workspace/list.rs
use std::fmt::Write; use std::path::Path; use anyhow::Result; use owo_colors::OwoColorize; use uv_fs::Simplified; use uv_preview::{Preview, PreviewFeatures}; use uv_warnings::warn_user; use uv_workspace::{DiscoveryOptions, Workspace, WorkspaceCache}; use crate::commands::ExitStatus; use crate::printer::Printer; ///...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/workspace/mod.rs
crates/uv/src/commands/workspace/mod.rs
pub(crate) mod dir; pub(crate) mod list; pub(crate) mod metadata;
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/workspace/dir.rs
crates/uv/src/commands/workspace/dir.rs
use std::fmt::Write; use std::path::Path; use anyhow::{Result, bail}; use owo_colors::OwoColorize; use uv_fs::Simplified; use uv_normalize::PackageName; use uv_preview::{Preview, PreviewFeatures}; use uv_warnings::warn_user; use uv_workspace::{DiscoveryOptions, Workspace, WorkspaceCache}; use crate::commands::ExitSt...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/workspace/metadata.rs
crates/uv/src/commands/workspace/metadata.rs
use std::fmt::Write; use std::path::Path; use anyhow::Result; use serde::Serialize; use uv_fs::PortablePathBuf; use uv_normalize::PackageName; use uv_preview::{Preview, PreviewFeatures}; use uv_warnings::warn_user; use uv_workspace::{DiscoveryOptions, Workspace, WorkspaceCache}; use crate::commands::ExitStatus; use ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/install_target.rs
crates/uv/src/commands/project/install_target.rs
use std::borrow::Cow; use std::collections::{BTreeMap, BTreeSet, VecDeque}; use std::path::Path; use std::str::FromStr; use itertools::Either; use rustc_hash::FxHashSet; use uv_configuration::{Constraints, DependencyGroupsWithDefaults, ExtrasSpecification}; use uv_distribution_types::Index; use uv_normalize::{ExtraNa...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/environment.rs
crates/uv/src/commands/project/environment.rs
use std::path::Path; use tracing::debug; use crate::commands::pip::loggers::{InstallLogger, ResolveLogger}; use crate::commands::pip::operations::Modifications; use crate::commands::project::{ EnvironmentSpecification, PlatformState, ProjectError, resolve_environment, sync_environment, }; use crate::printer::Prin...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/version.rs
crates/uv/src/commands/project/version.rs
use std::fmt::Write; use std::path::Path; use std::str::FromStr; use anyhow::{Context, Result, anyhow}; use owo_colors::OwoColorize; use tracing::debug; use uv_cache::Cache; use uv_cli::version::VersionInfo; use uv_cli::{VersionBump, VersionBumpSpec, VersionFormat}; use uv_client::BaseClientBuilder; use uv_configurat...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/sync.rs
crates/uv/src/commands/project/sync.rs
use std::fmt::Write; use std::ops::Deref; use std::path::Path; use std::sync::Arc; use anyhow::{Context, Result}; use itertools::Itertools; use owo_colors::OwoColorize; use serde::Serialize; use tracing::warn; use uv_cache::Cache; use uv_cli::SyncFormat; use uv_client::{BaseClientBuilder, FlatIndexClient, RegistryClie...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/lock_target.rs
crates/uv/src/commands/project/lock_target.rs
use std::collections::BTreeMap; use std::path::{Path, PathBuf}; use itertools::Either; use uv_auth::CredentialsCache; use uv_configuration::{DependencyGroupsWithDefaults, SourceStrategy}; use uv_distribution::LoweredRequirement; use uv_distribution_types::{Index, IndexLocations, Requirement, RequiresPython}; use uv_no...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/lock.rs
crates/uv/src/commands/project/lock.rs
#![allow(clippy::single_match_else)] use std::collections::{BTreeMap, BTreeSet}; use std::fmt::Write; use std::path::Path; use std::sync::Arc; use owo_colors::OwoColorize; use rustc_hash::{FxBuildHasher, FxHashMap}; use tracing::debug; use uv_cache::{Cache, Refresh}; use uv_client::{BaseClientBuilder, FlatIndexClien...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/tree.rs
crates/uv/src/commands/project/tree.rs
use std::path::Path; use anstream::print; use anyhow::{Error, Result}; use futures::StreamExt; use tokio::sync::Semaphore; use uv_cache::{Cache, Refresh}; use uv_cache_info::Timestamp; use uv_client::{BaseClientBuilder, RegistryClientBuilder}; use uv_configuration::{Concurrency, DependencyGroups, TargetTriple}; use uv...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/mod.rs
crates/uv/src/commands/project/mod.rs
use std::borrow::Cow; use std::collections::{BTreeMap, BTreeSet}; use std::fmt::Write; use std::path::{Path, PathBuf}; use std::sync::Arc; use itertools::Itertools; use owo_colors::OwoColorize; use tracing::{debug, trace, warn}; use uv_auth::CredentialsCache; use uv_cache::{Cache, CacheBucket}; use uv_cache_key::cache...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/format.rs
crates/uv/src/commands/project/format.rs
use std::path::Path; use std::str::FromStr; use anyhow::{Context, Result}; use tokio::process::Command; use uv_bin_install::{Binary, bin_install}; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_pep440::Version; use uv_preview::{Preview, PreviewFeatures}; use uv_warnings::warn_user; use uv_workspace::{D...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/run.rs
crates/uv/src/commands/project/run.rs
use std::borrow::Cow; use std::env::VarError; use std::ffi::OsString; use std::fmt::Write; use std::io; use std::io::Read; use std::path::{Path, PathBuf}; use anyhow::{Context, anyhow, bail}; use futures::StreamExt; use itertools::Itertools; use owo_colors::OwoColorize; use thiserror::Error; use tokio::process::Comman...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/init.rs
crates/uv/src/commands/project/init.rs
use std::fmt::Write; use std::iter; use std::path::{Path, PathBuf}; use std::process::{Command, Stdio}; use std::str::FromStr; use anyhow::{Context, Result, anyhow}; use owo_colors::OwoColorize; use toml_edit::{InlineTable, Value}; use tracing::{debug, trace, warn}; use uv_cache::Cache; use uv_cli::AuthorFrom; use uv...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/export.rs
crates/uv/src/commands/project/export.rs
use std::env; use std::ffi::OsStr; use std::io::Write; use std::path::{Path, PathBuf}; use anyhow::{Context, Result, anyhow}; use clap::ValueEnum; use itertools::Itertools; use owo_colors::OwoColorize; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_configuration::{ Concurrency, DependencyGroups, Ed...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/add.rs
crates/uv/src/commands/project/add.rs
use std::collections::BTreeMap; use std::collections::hash_map::Entry; use std::fmt::Write; use std::io; use std::path::Path; use std::str::FromStr; use std::sync::Arc; use anyhow::{Context, Result, bail}; use itertools::Itertools; use owo_colors::OwoColorize; use rustc_hash::{FxBuildHasher, FxHashMap}; use tracing::{...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/project/remove.rs
crates/uv/src/commands/project/remove.rs
use std::fmt::Write; use std::io; use std::path::Path; use std::str::FromStr; use anyhow::{Context, Result}; use owo_colors::OwoColorize; use tracing::{debug, warn}; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_configuration::{ Concurrency, DependencyGroups, DryRun, ExtrasSpecification, InstallOp...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/uninstall.rs
crates/uv/src/commands/pip/uninstall.rs
use std::fmt::Write; use anyhow::Result; use itertools::{Either, Itertools}; use owo_colors::OwoColorize; use tracing::{debug, warn}; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_configuration::{DryRun, KeyringProviderType}; use uv_distribution_types::Requirement; use uv_distribution_types::{Installe...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/compile.rs
crates/uv/src/commands/pip/compile.rs
use std::collections::BTreeSet; use std::env; use std::ffi::OsStr; use std::io::Write; use std::path::Path; use std::str::FromStr; use anyhow::{Result, anyhow}; use itertools::Itertools; use owo_colors::OwoColorize; use rustc_hash::FxHashSet; use tracing::debug; use uv_python::downloads::ManagedPythonDownloadList; u...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/sync.rs
crates/uv/src/commands/pip/sync.rs
use std::collections::BTreeSet; use std::fmt::Write; use anyhow::{Context, Result}; use owo_colors::OwoColorize; use tracing::{debug, warn}; use uv_cache::Cache; use uv_client::{BaseClientBuilder, FlatIndexClient, RegistryClientBuilder}; use uv_configuration::{ BuildIsolation, BuildOptions, Concurrency, Constrain...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/list.rs
crates/uv/src/commands/pip/list.rs
use std::cmp::max; use std::fmt::Write; use anyhow::Result; use futures::StreamExt; use itertools::Itertools; use owo_colors::OwoColorize; use rustc_hash::FxHashMap; use serde::Serialize; use tokio::sync::Semaphore; use tracing::debug; use unicode_width::UnicodeWidthStr; use uv_cache::{Cache, Refresh}; use uv_cache_i...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/check.rs
crates/uv/src/commands/pip/check.rs
use std::fmt::Write; use std::time::Instant; use anyhow::Result; use owo_colors::OwoColorize; use uv_cache::Cache; use uv_configuration::TargetTriple; use uv_distribution_types::{Diagnostic, InstalledDist}; use uv_installer::{SitePackages, SitePackagesDiagnostic}; use uv_preview::Preview; use uv_python::{ Environ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/tree.rs
crates/uv/src/commands/pip/tree.rs
use std::cmp::Ordering; use std::collections::VecDeque; use std::fmt::Write; use anyhow::Result; use futures::StreamExt; use owo_colors::OwoColorize; use petgraph::Direction; use petgraph::graph::{EdgeIndex, NodeIndex}; use petgraph::prelude::EdgeRef; use rustc_hash::{FxHashMap, FxHashSet}; use tokio::sync::Semaphore;...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/loggers.rs
crates/uv/src/commands/pip/loggers.rs
use std::collections::BTreeSet; use std::fmt; use std::fmt::Write; use itertools::Itertools; use owo_colors::OwoColorize; use rustc_hash::{FxBuildHasher, FxHashMap}; use uv_configuration::DryRun; use uv_distribution_types::Name; use uv_normalize::PackageName; use crate::commands::pip::operations::{Changelog, ShortSp...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/install.rs
crates/uv/src/commands/pip/install.rs
use std::collections::BTreeSet; use anyhow::Context; use itertools::Itertools; use owo_colors::OwoColorize; use tracing::{Level, debug, enabled, warn}; use uv_cache::Cache; use uv_client::{BaseClientBuilder, FlatIndexClient, RegistryClientBuilder}; use uv_configuration::{ BuildIsolation, BuildOptions, Concurrency...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/operations.rs
crates/uv/src/commands/pip/operations.rs
//! Common operations shared across the `pip` API and subcommands. use std::collections::{BTreeMap, BTreeSet, HashSet}; use std::fmt::Write; use std::path::PathBuf; use std::sync::Arc; use anyhow::{Context, anyhow}; use itertools::Itertools; use owo_colors::OwoColorize; use tracing::debug; use uv_cache::Cache; use u...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/mod.rs
crates/uv/src/commands/pip/mod.rs
use std::borrow::Cow; use uv_configuration::TargetTriple; use uv_platform_tags::{Tags, TagsError}; use uv_pypi_types::ResolverMarkerEnvironment; use uv_python::{Interpreter, PythonVersion}; pub(crate) mod check; pub(crate) mod compile; pub(crate) mod freeze; pub(crate) mod install; pub(crate) mod latest; pub(crate) m...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/show.rs
crates/uv/src/commands/pip/show.rs
use std::fmt::Write; use anyhow::Result; use fs_err::File; use itertools::{Either, Itertools}; use owo_colors::OwoColorize; use rustc_hash::FxHashMap; use tracing::debug; use uv_cache::Cache; use uv_distribution_types::{Diagnostic, Name}; use uv_fs::Simplified; use uv_install_wheel::read_record_file; use uv_installer...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/latest.rs
crates/uv/src/commands/pip/latest.rs
use tokio::sync::Semaphore; use tracing::debug; use uv_client::{MetadataFormat, RegistryClient, VersionFiles}; use uv_distribution_filename::DistFilename; use uv_distribution_types::{IndexCapabilities, IndexMetadataRef, IndexUrl, RequiresPython}; use uv_normalize::PackageName; use uv_platform_tags::Tags; use uv_resolv...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/pip/freeze.rs
crates/uv/src/commands/pip/freeze.rs
use std::fmt::Write; use std::path::PathBuf; use anyhow::Result; use itertools::Itertools; use owo_colors::OwoColorize; use tracing::debug; use uv_cache::Cache; use uv_distribution_types::{Diagnostic, InstalledDistKind, Name}; use uv_fs::Simplified; use uv_installer::SitePackages; use uv_preview::Preview; use uv_pyth...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/uninstall.rs
crates/uv/src/commands/tool/uninstall.rs
use std::fmt::Write; use anyhow::{Result, bail}; use itertools::Itertools; use owo_colors::OwoColorize; use tracing::debug; use uv_fs::Simplified; use uv_normalize::PackageName; use uv_tool::{InstalledTools, Tool, ToolEntrypoint}; use crate::commands::ExitStatus; use crate::printer::Printer; /// Uninstall a tool. p...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/list.rs
crates/uv/src/commands/tool/list.rs
use std::fmt::Write; use anyhow::Result; use itertools::Itertools; use owo_colors::OwoColorize; use uv_cache::Cache; use uv_fs::Simplified; use uv_python::LenientImplementationName; use uv_tool::InstalledTools; use uv_warnings::warn_user; use crate::commands::ExitStatus; use crate::printer::Printer; /// List instal...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/install.rs
crates/uv/src/commands/tool/install.rs
use std::fmt::Write; use std::str::FromStr; use anyhow::{Result, bail}; use owo_colors::OwoColorize; use tokio::sync::Semaphore; use tracing::{debug, trace}; use uv_cache::{Cache, Refresh}; use uv_cache_info::Timestamp; use uv_client::{BaseClientBuilder, RegistryClientBuilder}; use uv_configuration::{ Concurrency...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/upgrade.rs
crates/uv/src/commands/tool/upgrade.rs
use anyhow::Result; use itertools::Itertools; use owo_colors::{AnsiColors, OwoColorize}; use std::collections::BTreeMap; use std::fmt::Write; use std::str::FromStr; use tracing::{debug, trace}; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_configuration::{Concurrency, Constraints, DryRun, TargetTriple}...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/update_shell.rs
crates/uv/src/commands/tool/update_shell.rs
#![cfg_attr(windows, allow(unreachable_code))] use std::fmt::Write; use anyhow::Result; use owo_colors::OwoColorize; use tokio::io::AsyncWriteExt; use tracing::debug; use uv_fs::Simplified; use uv_shell::Shell; use uv_tool::tool_executable_dir; use crate::commands::ExitStatus; use crate::printer::Printer; /// Ensu...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/mod.rs
crates/uv/src/commands/tool/mod.rs
use std::str::FromStr; use tracing::debug; use uv_normalize::{ExtraName, PackageName}; use uv_pep440::Version; use uv_python::PythonRequest; mod common; pub(crate) mod dir; pub(crate) mod install; pub(crate) mod list; pub(crate) mod run; pub(crate) mod uninstall; pub(crate) mod update_shell; pub(crate) mod upgrade; ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/run.rs
crates/uv/src/commands/tool/run.rs
use std::fmt::Display; use std::fmt::Write; use std::path::Path; use std::path::PathBuf; use std::str::FromStr; use anstream::eprint; use anyhow::{Context, bail}; use console::Term; use itertools::Itertools; use owo_colors::OwoColorize; use tokio::process::Command; use tokio::sync::Semaphore; use tracing::{debug, warn...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/dir.rs
crates/uv/src/commands/tool/dir.rs
use std::fmt::Write; use anyhow::Context; use owo_colors::OwoColorize; use uv_fs::Simplified; use uv_preview::Preview; use uv_tool::{InstalledTools, tool_executable_dir}; use crate::printer::Printer; /// Show the tool directory. pub(crate) fn dir(bin: bool, _preview: Preview, printer: Printer) -> anyhow::Result<()>...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/commands/tool/common.rs
crates/uv/src/commands/tool/common.rs
use anyhow::{Context, bail}; use itertools::Itertools; use owo_colors::OwoColorize; use std::{ collections::{BTreeSet, Bound}, ffi::OsString, fmt::Write, path::Path, }; use tracing::{debug, warn}; use uv_cache::Cache; use uv_client::BaseClientBuilder; use uv_distribution_types::Requirement; use uv_distr...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/bin/uvw.rs
crates/uv/src/bin/uvw.rs
#![cfg_attr(windows, windows_subsystem = "windows")] use std::convert::Infallible; use std::path::{Path, PathBuf}; use std::process::{Command, ExitCode, ExitStatus}; /// Spawns a command exec style. fn exec_spawn(cmd: &mut Command) -> std::io::Result<Infallible> { #[cfg(unix)] { use std::os::unix::pro...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/bin/uvx.rs
crates/uv/src/bin/uvx.rs
use std::convert::Infallible; use std::path::{Path, PathBuf}; use std::{ ffi::OsString, process::{Command, ExitCode, ExitStatus}, }; /// Spawns a command exec style. fn exec_spawn(cmd: &mut Command) -> std::io::Result<Infallible> { #[cfg(unix)] { use std::os::unix::process::CommandExt; ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/src/bin/uv.rs
crates/uv/src/bin/uv.rs
// Don't optimize the alloc crate away due to it being otherwise unused. // https://github.com/rust-lang/rust/issues/64402 #[cfg(feature = "performance-memory-allocator")] extern crate uv_performance_memory_allocator; use std::process::ExitCode; use uv::main as uv_main; #[allow(unsafe_code)] fn main() -> ExitCode { ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/tests/it/lock_exclude_newer_relative.rs
crates/uv/tests/it/lock_exclude_newer_relative.rs
use anyhow::Result; use assert_fs::fixture::{FileWriteStr, PathChild}; use insta::assert_snapshot; use uv_static::EnvVars; use crate::common::{TestContext, uv_snapshot}; /// Lock with a relative exclude-newer value. /// /// Uses idna which has releases at: /// - 3.6: 2023-11-25 /// - 3.7: 2024-04-11 #[test] fn lock_e...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/tests/it/venv.rs
crates/uv/tests/it/venv.rs
use anyhow::Result; use assert_cmd::prelude::*; use assert_fs::prelude::*; use indoc::indoc; use predicates::prelude::*; use uv_python::{PYTHON_VERSION_FILENAME, PYTHON_VERSIONS_FILENAME}; use uv_static::EnvVars; #[cfg(unix)] use fs_err::os::unix::fs::symlink; use crate::common::{TestContext, uv_snapshot}; #[test] f...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/tests/it/python_list.rs
crates/uv/tests/it/python_list.rs
use uv_platform::{Arch, Os}; use uv_static::EnvVars; use crate::common::{TestContext, uv_snapshot}; use anyhow::Result; use wiremock::{ Mock, MockServer, ResponseTemplate, matchers::{method, path}, }; #[test] fn python_list() { let mut context: TestContext = TestContext::new_with_versions(&["3.11", "3.12"...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/tests/it/ecosystem.rs
crates/uv/tests/it/ecosystem.rs
use crate::common::{self, TestContext, get_bin}; use anyhow::Result; use insta::assert_snapshot; use std::path::Path; use std::process::Command; use uv_static::EnvVars; // These tests just run `uv lock` on an assorted of ecosystem // projects. // // The idea here is to provide a body of ecosystem projects that // let ...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/tests/it/pip_sync.rs
crates/uv/tests/it/pip_sync.rs
use std::env::consts::EXE_SUFFIX; use anyhow::Result; use assert_cmd::prelude::*; use assert_fs::fixture::ChildPath; use assert_fs::prelude::*; use fs_err as fs; use indoc::indoc; use predicates::Predicate; use url::Url; use crate::common::{TestContext, download_to_disk, site_packages_path, uv_snapshot}; use uv_fs::{...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
true
astral-sh/uv
https://github.com/astral-sh/uv/blob/2318e48e819080f37a002551035c2b1880a81a70/crates/uv/tests/it/tool_uninstall.rs
crates/uv/tests/it/tool_uninstall.rs
use assert_cmd::assert::OutputAssertExt; use assert_fs::fixture::PathChild; use uv_static::EnvVars; use crate::common::{TestContext, uv_snapshot}; #[test] fn tool_uninstall() { let context = TestContext::new("3.12").with_filtered_exe_suffix(); let tool_dir = context.temp_dir.child("tools"); let bin_dir =...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false