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-cache/src/by_timestamp.rs
crates/uv-cache/src/by_timestamp.rs
use serde::{Deserialize, Serialize}; use uv_cache_info::Timestamp; #[derive(Deserialize, Serialize)] pub struct CachedByTimestamp<Data> { pub timestamp: Timestamp, pub data: Data, }
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-cache/src/archive.rs
crates/uv-cache/src/archive.rs
use std::path::Path; use std::str::FromStr; /// A unique identifier for an archive (unzipped wheel) in the cache. #[derive(Debug, Clone, Eq, PartialEq, Hash, serde::Serialize, serde::Deserialize)] pub struct ArchiveId(String); impl Default for ArchiveId { fn default() -> Self { Self::new() } } impl 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-cache/src/cli.rs
crates/uv-cache/src/cli.rs
use std::io; use std::path::{Path, PathBuf}; use uv_static::EnvVars; use crate::Cache; use clap::{Parser, ValueHint}; use tracing::{debug, warn}; #[derive(Parser, Debug, Clone)] #[command(next_help_heading = "Cache options")] pub struct CacheArgs { /// Avoid reading from or writing to the cache, instead using a 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-cache/src/wheel.rs
crates/uv-cache/src/wheel.rs
use std::path::{Path, PathBuf}; use uv_cache_key::{CanonicalUrl, cache_digest}; use uv_distribution_types::IndexUrl; use uv_redacted::DisplaySafeUrl; /// Cache wheels and their metadata, both from remote wheels and built from source distributions. #[derive(Debug, Clone)] pub enum WheelCache<'a> { /// Either PyPI ...
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-cache/src/removal.rs
crates/uv-cache/src/removal.rs
//! Derived from Cargo's `clean` implementation. //! Cargo is dual-licensed under either Apache 2.0 or MIT, at the user's choice. //! Source: <https://github.com/rust-lang/cargo/blob/e1ebce1035f9b53bb46a55bd4b0ecf51e24c6458/src/cargo/ops/cargo_clean.rs#L324> use std::io; use std::path::Path; use crate::CleanReporter;...
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-dirs/src/lib.rs
crates/uv-dirs/src/lib.rs
use std::{ env, ffi::OsString, path::{Path, PathBuf}, }; use etcetera::BaseStrategy; use uv_static::EnvVars; /// Returns an appropriate user-level directory for storing executables. /// /// This follows, in order: /// /// - `$OVERRIDE_VARIABLE` (if provided) /// - `$XDG_BIN_HOME` /// - `$XDG_DATA_HOME/.....
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-macros/src/lib.rs
crates/uv-macros/src/lib.rs
mod options_metadata; use proc_macro::TokenStream; use quote::{quote, quote_spanned}; use syn::spanned::Spanned; use syn::{Attribute, DeriveInput, ImplItem, ItemImpl, LitStr, parse_macro_input}; #[proc_macro_derive(OptionsMetadata, attributes(option, doc, option_group))] pub fn derive_options_metadata(input: TokenStr...
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-macros/src/options_metadata.rs
crates/uv-macros/src/options_metadata.rs
//! Taken directly from Ruff. //! //! See: <https://github.com/astral-sh/ruff/blob/dc8db1afb08704ad6a788c497068b01edf8b460d/crates/ruff_macros/src/config.rs> use proc_macro2::{TokenStream, TokenTree}; use quote::{quote, quote_spanned}; use syn::meta::ParseNestedMeta; use syn::spanned::Spanned; use syn::{ AngleBrac...
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-state/src/lib.rs
crates/uv-state/src/lib.rs
use std::{ io::{self, Write}, path::{Path, PathBuf}, sync::Arc, }; use fs_err as fs; use tempfile::{TempDir, tempdir}; /// The main state storage abstraction. /// /// This is appropriate for storing persistent data that is not user-facing, such as managed Python /// installations or tool environments. #[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-configuration/src/dry_run.rs
crates/uv-configuration/src/dry_run.rs
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)] pub enum DryRun { /// The operation should execute in dry run mode. Enabled, /// The operation should execute in dry run mode and check if the current environment is /// synced. Check, /// The operation should execute in normal mode. #[de...
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-configuration/src/target_triple.rs
crates/uv-configuration/src/target_triple.rs
use tracing::debug; use uv_pep508::MarkerEnvironment; use uv_platform_tags::{Arch, Os, Platform}; use uv_static::EnvVars; /// The supported target triples. Each triple consists of an architecture, vendor, and operating /// system. /// /// See: <https://doc.rust-lang.org/nightly/rustc/platform-support.html> #[derive(D...
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-configuration/src/package_options.rs
crates/uv-configuration/src/package_options.rs
use std::path::Path; use either::Either; use rustc_hash::FxHashMap; use uv_cache::Refresh; use uv_cache_info::Timestamp; use uv_distribution_types::Requirement; use uv_normalize::PackageName; /// Whether to reinstall packages. #[derive(Debug, Default, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all ...
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-configuration/src/threading.rs
crates/uv-configuration/src/threading.rs
//! Configure rayon and determine thread stack sizes. use std::sync::LazyLock; use std::sync::atomic::{AtomicUsize, Ordering}; use uv_static::EnvVars; /// The default minimum stack size for uv threads. pub const UV_DEFAULT_STACK_SIZE: usize = 4 * 1024 * 1024; /// We don't allow setting a smaller stack size than 1MB. ...
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-configuration/src/env_file.rs
crates/uv-configuration/src/env_file.rs
use std::path::PathBuf; /// A collection of `.env` file paths. #[derive(Default, Debug, Clone, PartialEq, Eq)] pub struct EnvFile(Vec<PathBuf>); impl EnvFile { /// Parse the env file paths from command-line arguments. pub fn from_args(env_file: Vec<String>, no_env_file: bool) -> Self { if no_env_file ...
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-configuration/src/trusted_publishing.rs
crates/uv-configuration/src/trusted_publishing.rs
use serde::{Deserialize, Serialize}; #[derive(Clone, Copy, Debug, Default, Deserialize, PartialEq, Eq, Serialize)] #[serde(rename_all = "kebab-case")] #[cfg_attr(feature = "clap", derive(clap::ValueEnum))] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] pub enum TrustedPublishing { /// Attempt trus...
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-configuration/src/lib.rs
crates/uv-configuration/src/lib.rs
pub use authentication::*; pub use build_options::*; pub use concurrency::*; pub use constraints::*; pub use dependency_groups::*; pub use dry_run::*; pub use editable::*; pub use env_file::*; pub use excludes::*; pub use export_format::*; pub use extras::*; pub use hash::*; pub use install_options::*; pub use name_spe...
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-configuration/src/trusted_host.rs
crates/uv-configuration/src/trusted_host.rs
use serde::{Deserialize, Deserializer}; #[cfg(feature = "schemars")] use std::borrow::Cow; use std::str::FromStr; use url::Url; /// A host specification (wildcard, or host, with optional scheme and/or port) for which /// certificates are not verified when making HTTPS requests. #[derive(Debug, Clone, PartialEq, Eq)] 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-configuration/src/install_options.rs
crates/uv-configuration/src/install_options.rs
use std::collections::BTreeSet; use tracing::debug; use uv_normalize::PackageName; /// Minimal view of a package used to apply install filters. #[derive(Debug, Clone, Copy)] pub struct InstallTarget<'a> { /// The package name. pub name: &'a PackageName, /// Whether the package refers to a local source (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-configuration/src/name_specifiers.rs
crates/uv-configuration/src/name_specifiers.rs
#[cfg(feature = "schemars")] use std::borrow::Cow; use std::str::FromStr; use uv_normalize::PackageName; /// A specifier used for (e.g.) pip's `--no-binary` flag. /// /// This is a superset of the package name format, allowing for special values `:all:` and `:none:`. #[derive(Debug, Clone)] pub enum PackageNameSpecif...
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-configuration/src/extras.rs
crates/uv-configuration/src/extras.rs
use std::{borrow::Cow, sync::Arc}; use uv_normalize::{DefaultExtras, ExtraName}; /// Manager of all extra decisions and settings history. /// /// This is an Arc mostly just to avoid size bloat on things that contain these. #[derive(Debug, Default, Clone)] pub struct ExtrasSpecification(Arc<ExtrasSpecificationInner>);...
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-configuration/src/build_options.rs
crates/uv-configuration/src/build_options.rs
use std::fmt::{Display, Formatter}; use uv_normalize::PackageName; use crate::{PackageNameSpecifier, PackageNameSpecifiers}; #[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash)] pub enum BuildKind { /// A PEP 517 wheel build. #[default] Wheel, /// A PEP 517 source distribution build. Sdist...
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-configuration/src/overrides.rs
crates/uv-configuration/src/overrides.rs
use std::borrow::Cow; use either::Either; use rustc_hash::{FxBuildHasher, FxHashMap}; use uv_distribution_types::Requirement; use uv_normalize::PackageName; use uv_pep508::MarkerTree; /// A set of overrides for a set of requirements. #[derive(Debug, Default, Clone)] pub struct Overrides(FxHashMap<PackageName, Vec<Re...
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-configuration/src/vcs.rs
crates/uv-configuration/src/vcs.rs
use std::io::Write; use std::path::{Path, PathBuf}; use std::process::{Command, Stdio}; use serde::Deserialize; use uv_git::GIT; #[derive(Debug, thiserror::Error)] pub enum VersionControlError { #[error("Attempted to initialize a Git repository, but `git` was not found in PATH")] GitNotInstalled, #[error(...
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-configuration/src/export_format.rs
crates/uv-configuration/src/export_format.rs
/// The format to use when exporting a `uv.lock` file. #[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)] #[serde(deny_unknown_fields, rename_all = "kebab-case")] #[cfg_attr(feature = "clap", derive(clap::ValueEnum))] pub enum ExportFormat { /// Export in `requirements.txt` ...
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-configuration/src/concurrency.rs
crates/uv-configuration/src/concurrency.rs
use std::num::NonZeroUsize; /// Concurrency limit settings. #[derive(Copy, Clone, Debug)] pub struct Concurrency { /// The maximum number of concurrent downloads. /// /// Note this value must be non-zero. pub downloads: usize, /// The maximum number of concurrent builds. /// /// Note this v...
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-configuration/src/hash.rs
crates/uv-configuration/src/hash.rs
#[derive(Debug, Copy, Clone)] pub enum HashCheckingMode { /// Hashes should be validated against a pre-defined list of hashes. Every requirement must /// itself be hashable (e.g., Git dependencies are forbidden) _and_ have a hash in the lockfile. Require, /// Hashes should be validated, if present, but ...
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-configuration/src/authentication.rs
crates/uv-configuration/src/authentication.rs
use uv_auth::{self, KeyringProvider}; /// Keyring provider type to use for credential lookup. #[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)] #[serde(deny_unknown_fields, rename_all = "kebab-case")] #[cfg_attr(feature = "clap", derive(clap::ValueEnum))] #[cfg_attr(feature = ...
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-configuration/src/dependency_groups.rs
crates/uv-configuration/src/dependency_groups.rs
use std::{borrow::Cow, sync::Arc}; use uv_normalize::{DEV_DEPENDENCIES, DefaultGroups, GroupName}; /// Manager of all dependency-group decisions and settings history. /// /// This is an Arc mostly just to avoid size bloat on things that contain these. #[derive(Debug, Default, Clone)] pub struct DependencyGroups(Arc<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-configuration/src/constraints.rs
crates/uv-configuration/src/constraints.rs
use std::borrow::Cow; use either::Either; use rustc_hash::FxHashMap; use uv_distribution_types::{Requirement, RequirementSource}; use uv_normalize::PackageName; use uv_pep508::MarkerTree; /// A set of constraints for a set of requirements. #[derive(Debug, Default, Clone)] pub struct Constraints(FxHashMap<PackageName...
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-configuration/src/excludes.rs
crates/uv-configuration/src/excludes.rs
use rustc_hash::FxHashSet; use uv_normalize::PackageName; /// A set of packages to exclude from resolution. #[derive(Debug, Default, Clone)] pub struct Excludes(FxHashSet<PackageName>); impl Excludes { /// Return an iterator over all package names in the exclusion set. pub fn iter(&self) -> impl Iterator<Ite...
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-configuration/src/project_build_backend.rs
crates/uv-configuration/src/project_build_backend.rs
/// Available project build backends for use in `pyproject.toml`. #[derive(Clone, Copy, Debug, PartialEq, serde::Deserialize)] #[serde(deny_unknown_fields, rename_all = "kebab-case")] #[cfg_attr(feature = "clap", derive(clap::ValueEnum))] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] pub enum ProjectB...
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-configuration/src/editable.rs
crates/uv-configuration/src/editable.rs
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)] pub enum EditableMode { #[default] Editable, NonEditable, } impl From<bool> for EditableMode { fn from(value: bool) -> Self { if value { Self::Editable } else { Self::NonEditable } } }
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-configuration/src/required_version.rs
crates/uv-configuration/src/required_version.rs
#[cfg(feature = "schemars")] use std::borrow::Cow; use std::{fmt::Formatter, str::FromStr}; use uv_pep440::{Version, VersionSpecifier, VersionSpecifiers, VersionSpecifiersParseError}; /// A required version of uv, represented as a version specifier (e.g. `>=0.5.0`). #[derive(Clone, Debug, PartialEq, Eq)] pub struct R...
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-configuration/src/sources.rs
crates/uv-configuration/src/sources.rs
#[derive( Debug, Default, Clone, Copy, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize, )] #[serde(rename_all = "kebab-case", deny_unknown_fields)] pub enum SourceStrategy { /// Use `tool.uv.sources` when resolving dependencies. #[default] Enabled, /// Ignore `tool.uv.sources` when resolvi...
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-globfilter/src/lib.rs
crates/uv-globfilter/src/lib.rs
//! Implementation of PEP 639 cross-language restricted globs and a related directory traversal //! prefilter. //! //! The goal is globs that are portable between languages and operating systems. mod glob_dir_filter; mod portable_glob; pub use glob_dir_filter::GlobDirFilter; pub use portable_glob::{PortableGlobError,...
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-globfilter/src/glob_dir_filter.rs
crates/uv-globfilter/src/glob_dir_filter.rs
use globset::{Glob, GlobSet, GlobSetBuilder}; use regex_automata::dfa; use regex_automata::dfa::Automaton; use std::path::{MAIN_SEPARATOR, MAIN_SEPARATOR_STR, Path}; use tracing::warn; /// Chosen at a whim -Konsti const DFA_SIZE_LIMIT: usize = 1_000_000; /// Filter a directory tree traversal (walkdir) by whether any ...
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-globfilter/src/main.rs
crates/uv-globfilter/src/main.rs
#![allow(clippy::print_stdout)] use globset::GlobSetBuilder; use std::env::args; use tracing::trace; use uv_globfilter::{GlobDirFilter, PortableGlobParser}; use walkdir::WalkDir; fn main() { let includes = ["src/**", "pyproject.toml"]; let excludes = ["__pycache__", "*.pyc", "*.pyo"]; let mut include_glo...
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-globfilter/src/portable_glob.rs
crates/uv-globfilter/src/portable_glob.rs
//! Cross-language glob syntax from //! [PEP 639](https://packaging.python.org/en/latest/specifications/glob-patterns/). use globset::{Glob, GlobBuilder}; use owo_colors::OwoColorize; use thiserror::Error; #[derive(Debug, Error)] pub enum PortableGlobError { /// Shows the failing glob in the error message. #[...
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-cache-key/src/lib.rs
crates/uv-cache-key/src/lib.rs
pub use cache_key::{CacheKey, CacheKeyHasher}; pub use canonical_url::{CanonicalUrl, RepositoryUrl}; pub use digest::{cache_digest, hash_digest}; mod cache_key; mod canonical_url; mod digest;
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-cache-key/src/digest.rs
crates/uv-cache-key/src/digest.rs
use std::hash::{Hash, Hasher}; use seahash::SeaHasher; use crate::cache_key::{CacheKey, CacheKeyHasher}; /// Compute a hex string hash of a `CacheKey` object. /// /// The value returned by [`cache_digest`] should be stable across releases and platforms. pub fn cache_digest<H: CacheKey>(hashable: &H) -> String { ...
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-cache-key/src/cache_key.rs
crates/uv-cache-key/src/cache_key.rs
use std::borrow::Cow; use std::collections::{BTreeMap, BTreeSet}; use std::hash::{Hash, Hasher}; use std::num::{ NonZeroI8, NonZeroI16, NonZeroI32, NonZeroI64, NonZeroI128, NonZeroU8, NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU128, }; use std::path::{Path, PathBuf}; use seahash::SeaHasher; use url::Url; /// ...
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-cache-key/src/canonical_url.rs
crates/uv-cache-key/src/canonical_url.rs
use std::borrow::Cow; use std::fmt::{Debug, Formatter}; use std::hash::{Hash, Hasher}; use std::ops::Deref; use url::Url; use uv_redacted::{DisplaySafeUrl, DisplaySafeUrlError}; use crate::cache_key::{CacheKey, CacheKeyHasher}; /// A wrapper around `Url` which represents a "canonical" version of an original URL. ///...
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-virtualenv/src/lib.rs
crates/uv-virtualenv/src/lib.rs
use std::io; use std::path::Path; use thiserror::Error; use uv_preview::Preview; use uv_python::{Interpreter, PythonEnvironment}; pub use virtualenv::{OnExisting, RemovalReason, remove_virtualenv}; mod virtualenv; #[derive(Debug, Error)] pub enum Error { #[error(transparent)] Io(#[from] io::Error), #[e...
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-virtualenv/src/virtualenv.rs
crates/uv-virtualenv/src/virtualenv.rs
//! Create a virtual environment. use std::env::consts::EXE_SUFFIX; use std::io; use std::io::{BufWriter, Write}; use std::path::Path; use console::Term; use fs_err::File; use itertools::Itertools; use owo_colors::OwoColorize; use tracing::{debug, trace}; use uv_fs::{CWD, Simplified, cachedir}; use uv_preview::Previ...
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-logging/src/lib.rs
crates/uv-logging/src/lib.rs
use std::fmt; use jiff::Timestamp; use owo_colors::OwoColorize; use tracing::{Event, Subscriber}; use tracing_subscriber::fmt::format::Writer; use tracing_subscriber::fmt::{FmtContext, FormatEvent, FormatFields}; use tracing_subscriber::registry::LookupSpan; /// The style of a uv logging line. pub struct UvFormat { ...
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-resolver/src/universal_marker.rs
crates/uv-resolver/src/universal_marker.rs
use std::borrow::Borrow; use std::collections::BTreeSet; use std::str::FromStr; use itertools::Itertools; use rustc_hash::FxHashMap; use uv_normalize::{ExtraName, GroupName, PackageName}; use uv_pep508::{ExtraOperator, MarkerEnvironment, MarkerExpression, MarkerOperator, MarkerTree}; use uv_pypi_types::{ConflictItem,...
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-resolver/src/prerelease.rs
crates/uv-resolver/src/prerelease.rs
use uv_distribution_types::RequirementSource; use uv_normalize::PackageName; use uv_pep440::Operator; use crate::resolver::ForkSet; use crate::{DependencyMode, Manifest, ResolverEnvironment}; #[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)] #[serde(deny_unknown_fields, renam...
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-resolver/src/lib.rs
crates/uv-resolver/src/lib.rs
pub use dependency_mode::DependencyMode; pub use error::{ErrorTree, NoSolutionError, NoSolutionHeader, ResolveError, SentinelRange}; pub use exclude_newer::{ ExcludeNewer, ExcludeNewerChange, ExcludeNewerPackage, ExcludeNewerPackageChange, ExcludeNewerPackageEntry, ExcludeNewerValue, ExcludeNewerValueChange, };...
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-resolver/src/preferences.rs
crates/uv-resolver/src/preferences.rs
use std::path::Path; use std::str::FromStr; use rustc_hash::FxHashMap; use tracing::trace; use uv_distribution_types::{IndexUrl, InstalledDist, InstalledDistKind}; use uv_normalize::PackageName; use uv_pep440::{Operator, Version}; use uv_pep508::{MarkerTree, VerbatimUrl, VersionOrUrl}; use uv_pypi_types::{HashDigest,...
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-resolver/src/version_map.rs
crates/uv-resolver/src/version_map.rs
use std::collections::Bound; use std::collections::btree_map::{BTreeMap, Entry}; use std::ops::RangeBounds; use std::sync::OnceLock; use pubgrub::Ranges; use rustc_hash::FxHashMap; use tracing::instrument; use uv_client::{FlatIndexEntry, OwnedArchive, SimpleDetailMetadata, VersionFiles}; use uv_configuration::BuildOp...
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-resolver/src/manifest.rs
crates/uv-resolver/src/manifest.rs
use std::borrow::Cow; use std::collections::BTreeSet; use either::Either; use uv_configuration::{Constraints, Excludes, Overrides}; use uv_distribution_types::Requirement; use uv_normalize::PackageName; use uv_types::RequestedRequirements; use crate::preferences::Preferences; use crate::{DependencyMode, Exclusions, ...
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-resolver/src/redirect.rs
crates/uv-resolver/src/redirect.rs
use uv_git::GitResolver; use uv_pep508::VerbatimUrl; use uv_pypi_types::{ParsedGitUrl, ParsedUrl, VerbatimParsedUrl}; use uv_redacted::DisplaySafeUrl; /// Map a URL to a precise URL, if possible. pub(crate) fn url_to_precise(url: VerbatimParsedUrl, git: &GitResolver) -> VerbatimParsedUrl { let ParsedUrl::Git(Parse...
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-resolver/src/resolution_mode.rs
crates/uv-resolver/src/resolution_mode.rs
use crate::resolver::{ForkMap, ForkSet}; use crate::{DependencyMode, Manifest, ResolverEnvironment}; #[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Deserialize, serde::Serialize)] #[serde(deny_unknown_fields, rename_all = "kebab-case")] #[cfg_attr(feature = "clap", derive(clap::ValueEnum))] #[cfg_attr(fea...
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-resolver/src/exclusions.rs
crates/uv-resolver/src/exclusions.rs
use uv_configuration::{Reinstall, Upgrade}; use uv_normalize::PackageName; /// Tracks locally installed packages that should not be selected during resolution. #[derive(Debug, Default, Clone)] pub struct Exclusions { reinstall: Reinstall, upgrade: Upgrade, } impl Exclusions { pub fn new(reinstall: Reinsta...
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-resolver/src/fork_urls.rs
crates/uv-resolver/src/fork_urls.rs
use std::collections::hash_map::Entry; use rustc_hash::FxHashMap; use uv_normalize::PackageName; use uv_pypi_types::VerbatimParsedUrl; use crate::ResolveError; use crate::resolver::ResolverEnvironment; /// See [`crate::resolver::ForkState`]. #[derive(Default, Debug, Clone)] pub(crate) struct ForkUrls(FxHashMap<Pack...
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-resolver/src/python_requirement.rs
crates/uv-resolver/src/python_requirement.rs
use std::collections::Bound; use uv_distribution_types::{RequiresPython, RequiresPythonRange}; use uv_pep440::Version; use uv_pep508::{MarkerEnvironment, MarkerTree}; use uv_python::{Interpreter, PythonVersion}; #[derive(Debug, Clone, Eq, PartialEq)] pub struct PythonRequirement { source: PythonRequirementSource,...
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-resolver/src/error.rs
crates/uv-resolver/src/error.rs
use std::collections::{BTreeMap, BTreeSet, Bound}; use std::fmt::Formatter; use std::sync::Arc; use indexmap::IndexSet; use itertools::Itertools; use owo_colors::OwoColorize; use pubgrub::{ DefaultStringReporter, DerivationTree, Derived, External, Range, Ranges, Reporter, Term, }; use rustc_hash::FxHashMap; use 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-resolver/src/flat_index.rs
crates/uv-resolver/src/flat_index.rs
use std::collections::BTreeMap; use std::collections::btree_map::Entry; use rustc_hash::FxHashMap; use tracing::instrument; use uv_client::{FlatIndexEntries, FlatIndexEntry}; use uv_configuration::BuildOptions; use uv_distribution_filename::{DistFilename, SourceDistFilename, WheelFilename}; use uv_distribution_types:...
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-resolver/src/candidate_selector.rs
crates/uv-resolver/src/candidate_selector.rs
use std::fmt::{Display, Formatter}; use either::Either; use itertools::Itertools; use pubgrub::Range; use smallvec::SmallVec; use tracing::{debug, trace}; use uv_configuration::IndexStrategy; use uv_distribution_types::{CompatibleDist, IncompatibleDist, IncompatibleSource, IndexUrl}; use uv_distribution_types::{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-resolver/src/options.rs
crates/uv-resolver/src/options.rs
use uv_configuration::{BuildOptions, IndexStrategy}; use uv_pypi_types::SupportedEnvironments; use uv_torch::TorchStrategy; use crate::fork_strategy::ForkStrategy; use crate::{DependencyMode, ExcludeNewer, PrereleaseMode, ResolutionMode}; /// Options for resolving a manifest. #[derive(Debug, Default, Clone, PartialEq...
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-resolver/src/pins.rs
crates/uv-resolver/src/pins.rs
use rustc_hash::FxHashMap; use uv_distribution_types::{CompatibleDist, ResolvedDist}; use uv_normalize::PackageName; use crate::candidate_selector::Candidate; /// A set of package versions pinned to specific files. /// /// For example, given `Flask==3.0.0`, the [`FilePins`] would contain a mapping from `Flask` 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-resolver/src/dependency_provider.rs
crates/uv-resolver/src/dependency_provider.rs
use std::convert::Infallible; use pubgrub::{Dependencies, DependencyProvider, PackageResolutionStatistics, Range}; use uv_pep440::Version; use crate::pubgrub::{PubGrubPackage, PubGrubPriority, PubGrubTiebreaker}; use crate::resolver::UnavailableReason; /// We don't use a dependency provider, we interact with state ...
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-resolver/src/dependency_mode.rs
crates/uv-resolver/src/dependency_mode.rs
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Deserialize)] pub enum DependencyMode { /// Include all dependencies, whether direct or transitive. #[default] Transitive, /// Exclude transitive dependencies, only resolving the root package's immediate dependencies. Direct, } impl Depend...
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-resolver/src/graph_ops.rs
crates/uv-resolver/src/graph_ops.rs
use std::collections::BTreeSet; use std::collections::hash_map::Entry; use petgraph::graph::{EdgeIndex, NodeIndex}; use petgraph::visit::EdgeRef; use petgraph::{Direction, Graph}; use rustc_hash::{FxBuildHasher, FxHashMap, FxHashSet}; use uv_pep508::MarkerTree; use uv_pypi_types::{ConflictItem, Conflicts, Inference};...
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-resolver/src/yanks.rs
crates/uv-resolver/src/yanks.rs
use std::sync::Arc; use rustc_hash::{FxHashMap, FxHashSet}; use uv_distribution_types::RequirementSource; use uv_normalize::PackageName; use uv_pep440::Version; use crate::{DependencyMode, Manifest, ResolverEnvironment}; /// A set of package versions that are permitted, even if they're marked as yanked by the /// r...
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-resolver/src/exclude_newer.rs
crates/uv-resolver/src/exclude_newer.rs
#[cfg(feature = "schemars")] use std::borrow::Cow; use std::{ ops::{Deref, DerefMut}, str::FromStr, }; use jiff::{Span, Timestamp, ToSpan, Unit, tz::TimeZone}; use rustc_hash::FxHashMap; use uv_normalize::PackageName; #[derive(Debug, Clone, PartialEq, Eq)] pub enum ExcludeNewerValueChange { /// A relative...
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-resolver/src/marker.rs
crates/uv-resolver/src/marker.rs
use pubgrub::Ranges; use smallvec::SmallVec; use std::ops::Bound; use uv_pep440::{LowerBound, UpperBound, Version}; use uv_pep508::{CanonicalMarkerValueVersion, MarkerTree, MarkerTreeKind}; use uv_distribution_types::RequiresPythonRange; /// Returns the bounding Python versions that can satisfy the [`MarkerTree`], 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-resolver/src/fork_strategy.rs
crates/uv-resolver/src/fork_strategy.rs
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Deserialize, serde::Serialize)] #[serde(deny_unknown_fields, rename_all = "kebab-case")] #[cfg_attr(feature = "clap", derive(clap::ValueEnum))] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] pub enum ForkStrategy { /// Optimize for selecti...
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-resolver/src/fork_indexes.rs
crates/uv-resolver/src/fork_indexes.rs
use rustc_hash::FxHashMap; use uv_distribution_types::IndexMetadata; use uv_normalize::PackageName; use crate::ResolveError; use crate::resolver::ResolverEnvironment; /// See [`crate::resolver::ForkState`]. #[derive(Default, Debug, Clone)] pub(crate) struct ForkIndexes(FxHashMap<PackageName, IndexMetadata>); impl Fo...
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-resolver/src/pubgrub/report.rs
crates/uv-resolver/src/pubgrub/report.rs
use std::cmp::Ordering; use std::collections::{BTreeMap, BTreeSet}; use std::ops::Bound; use indexmap::IndexSet; use itertools::Itertools; use owo_colors::OwoColorize; use pubgrub::{DerivationTree, Derived, External, Map, Range, ReportFormatter, Term}; use rustc_hash::FxHashMap; use uv_configuration::{IndexStrategy, ...
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-resolver/src/pubgrub/distribution.rs
crates/uv-resolver/src/pubgrub/distribution.rs
use uv_distribution_types::{DistributionMetadata, Name, VersionOrUrlRef}; use uv_normalize::PackageName; use uv_pep440::Version; use uv_pypi_types::VerbatimParsedUrl; #[derive(Debug)] pub(crate) enum PubGrubDistribution<'a> { Registry(&'a PackageName, &'a Version), Url(&'a PackageName, &'a VerbatimParsedUrl), ...
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-resolver/src/pubgrub/mod.rs
crates/uv-resolver/src/pubgrub/mod.rs
pub(crate) use crate::pubgrub::dependencies::PubGrubDependency; pub(crate) use crate::pubgrub::distribution::PubGrubDistribution; pub use crate::pubgrub::package::{PubGrubPackage, PubGrubPackageInner, PubGrubPython}; pub(crate) use crate::pubgrub::priority::{PubGrubPriorities, PubGrubPriority, PubGrubTiebreaker}; pub(c...
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-resolver/src/pubgrub/priority.rs
crates/uv-resolver/src/pubgrub/priority.rs
use std::cmp::Reverse; use hashbrown::hash_map::{EntryRef, OccupiedEntry}; use pubgrub::{DependencyProvider, Range}; use rustc_hash::FxBuildHasher; use uv_normalize::PackageName; use uv_pep440::Version; use crate::dependency_provider::UvDependencyProvider; use crate::fork_urls::ForkUrls; use crate::pubgrub::{PubGrub...
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-resolver/src/pubgrub/package.rs
crates/uv-resolver/src/pubgrub/package.rs
use std::ops::Deref; use std::sync::Arc; use uv_normalize::{ExtraName, GroupName, PackageName}; use uv_pep508::MarkerTree; use uv_pypi_types::ConflictItemRef; use crate::python_requirement::PythonRequirement; /// [`Arc`] wrapper around [`PubGrubPackageInner`] to make cloning (inside PubGrub) cheap. #[derive(Debug, C...
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-resolver/src/pubgrub/dependencies.rs
crates/uv-resolver/src/pubgrub/dependencies.rs
use std::borrow::Cow; use std::iter; use either::Either; use pubgrub::Ranges; use uv_distribution_types::{Requirement, RequirementSource}; use uv_normalize::{ExtraName, GroupName, PackageName}; use uv_pep440::{Version, VersionSpecifiers}; use uv_pypi_types::{ ConflictItemRef, Conflicts, ParsedArchiveUrl, ParsedDi...
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-resolver/src/resolver/index.rs
crates/uv-resolver/src/resolver/index.rs
use std::hash::BuildHasherDefault; use std::sync::Arc; use rustc_hash::FxHasher; use uv_distribution_types::{IndexUrl, VersionId}; use uv_normalize::PackageName; use uv_once_map::OnceMap; use crate::resolver::provider::{MetadataResponse, VersionsResponse}; /// In-memory index of package metadata. #[derive(Default, C...
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-resolver/src/resolver/environment.rs
crates/uv-resolver/src/resolver/environment.rs
use std::collections::BTreeSet; use std::sync::Arc; use itertools::Itertools; use tracing::trace; use uv_distribution_types::{RequiresPython, RequiresPythonRange}; use uv_pep440::VersionSpecifiers; use uv_pep508::{MarkerEnvironment, MarkerTree}; use uv_pypi_types::{ConflictItem, ConflictItemRef, ConflictKind, Resolve...
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-resolver/src/resolver/indexes.rs
crates/uv-resolver/src/resolver/indexes.rs
use uv_distribution_types::{IndexMetadata, RequirementSource}; use uv_normalize::PackageName; use uv_pypi_types::ConflictItem; use crate::resolver::ForkMap; use crate::{DependencyMode, Manifest, ResolverEnvironment}; /// A map of package names to their explicit index. /// /// For example, given: /// ```toml /// [[too...
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-resolver/src/resolver/batch_prefetch.rs
crates/uv-resolver/src/resolver/batch_prefetch.rs
use std::cmp::min; use std::sync::Arc; use itertools::Itertools; use pubgrub::{Range, Ranges, Term}; use rustc_hash::{FxHashMap, FxHashSet}; use tokio::sync::mpsc::Sender; use tracing::{debug, trace}; use crate::candidate_selector::CandidateSelector; use crate::pubgrub::{PubGrubPackage, PubGrubPackageInner}; use crat...
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-resolver/src/resolver/availability.rs
crates/uv-resolver/src/resolver/availability.rs
use std::fmt::{Display, Formatter}; use std::iter; use std::sync::Arc; use uv_distribution_types::IncompatibleDist; use uv_pep440::{Version, VersionSpecifiers}; use uv_platform_tags::{AbiTag, Tags}; use crate::resolver::{MetadataUnavailable, VersionFork}; /// The reason why a package or a version cannot be used. #[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-resolver/src/resolver/system.rs
crates/uv-resolver/src/resolver/system.rs
use std::str::FromStr; use pubgrub::Ranges; use uv_normalize::PackageName; use uv_pep440::Version; use uv_redacted::DisplaySafeUrl; use uv_torch::TorchBackend; use crate::pubgrub::{PubGrubDependency, PubGrubPackage, PubGrubPackageInner}; #[derive(Debug, Clone, PartialEq, Eq)] pub(super) struct SystemDependency { ...
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-resolver/src/resolver/mod.rs
crates/uv-resolver/src/resolver/mod.rs
//! Given a set of requirements, find a set of compatible packages. use std::borrow::Cow; use std::cmp::Ordering; use std::collections::{BTreeMap, BTreeSet, VecDeque}; use std::fmt::{Display, Formatter, Write}; use std::ops::Bound; use std::sync::Arc; use std::time::Instant; use std::{iter, slice, thread}; use dashma...
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-resolver/src/resolver/reporter.rs
crates/uv-resolver/src/resolver/reporter.rs
use std::sync::Arc; use uv_distribution_types::{BuildableSource, VersionOrUrlRef}; use uv_normalize::PackageName; use uv_redacted::DisplaySafeUrl; pub type BuildId = usize; pub trait Reporter: Send + Sync { /// Callback to invoke when a dependency is resolved. fn on_progress(&self, name: &PackageName, versio...
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-resolver/src/resolver/derivation.rs
crates/uv-resolver/src/resolver/derivation.rs
use pubgrub::{Id, Kind, State}; use rustc_hash::FxHashMap; use uv_distribution_types::{DerivationChain, DerivationStep}; use uv_pep440::Version; use crate::dependency_provider::UvDependencyProvider; use crate::pubgrub::PubGrubPackage; /// Build a [`DerivationChain`] from the pubgrub state, which is available in `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-resolver/src/resolver/fork_map.rs
crates/uv-resolver/src/resolver/fork_map.rs
use rustc_hash::FxHashMap; use uv_distribution_types::Requirement; use uv_normalize::PackageName; use uv_pep508::MarkerTree; use crate::ResolverEnvironment; /// A set of package names associated with a given fork. pub(crate) type ForkSet = ForkMap<()>; /// A map from package names to their values for a given fork. ...
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-resolver/src/resolver/urls.rs
crates/uv-resolver/src/resolver/urls.rs
use either::Either; use rustc_hash::FxHashMap; use same_file::is_same_file; use tracing::debug; use uv_cache_key::CanonicalUrl; use uv_git::GitResolver; use uv_normalize::PackageName; use uv_pep508::{MarkerTree, VerbatimUrl}; use uv_pypi_types::{ParsedDirectoryUrl, ParsedUrl, VerbatimParsedUrl}; use crate::{Dependenc...
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-resolver/src/resolver/provider.rs
crates/uv-resolver/src/resolver/provider.rs
use std::future::Future; use std::sync::Arc; use uv_client::MetadataFormat; use uv_configuration::BuildOptions; use uv_distribution::{ArchiveMetadata, DistributionDatabase, Reporter}; use uv_distribution_types::{ Dist, IndexCapabilities, IndexMetadata, IndexMetadataRef, InstalledDist, RequestedDist, RequiresPyt...
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-resolver/src/lock/installable.rs
crates/uv-resolver/src/lock/installable.rs
use std::collections::BTreeSet; use std::collections::VecDeque; use std::collections::hash_map::Entry; use std::path::Path; use std::sync::Arc; use either::Either; use itertools::Itertools; use petgraph::Graph; use rustc_hash::{FxBuildHasher, FxHashMap, FxHashSet}; use uv_configuration::ExtrasSpecificationWithDefault...
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-resolver/src/lock/tree.rs
crates/uv-resolver/src/lock/tree.rs
use std::collections::{BTreeSet, VecDeque}; use std::fmt::Write; use either::Either; use itertools::Itertools; use owo_colors::OwoColorize; use petgraph::graph::{EdgeIndex, NodeIndex}; use petgraph::prelude::EdgeRef; use petgraph::{Direction, Graph}; use rustc_hash::{FxBuildHasher, FxHashMap, FxHashSet}; use uv_confi...
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-resolver/src/lock/map.rs
crates/uv-resolver/src/lock/map.rs
use rustc_hash::FxHashMap; use crate::lock::{Package, PackageId}; /// A map from package to values, indexed by [`PackageId`]. #[derive(Debug, Clone)] pub struct PackageMap<T>(FxHashMap<PackageId, T>); impl<T> Default for PackageMap<T> { fn default() -> Self { Self(FxHashMap::default()) } } impl<T> 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-resolver/src/lock/mod.rs
crates/uv-resolver/src/lock/mod.rs
use std::borrow::Cow; use std::collections::{BTreeMap, BTreeSet, VecDeque}; use std::error::Error; use std::fmt::{Debug, Display, Formatter}; use std::io; use std::path::{Path, PathBuf}; use std::str::FromStr; use std::sync::{Arc, LazyLock}; use itertools::Itertools; use jiff::Timestamp; use owo_colors::OwoColorize; 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-resolver/src/lock/export/pylock_toml.rs
crates/uv-resolver/src/lock/export/pylock_toml.rs
use std::borrow::Cow; use std::ffi::OsStr; use std::path::Path; use std::str::FromStr; use std::sync::Arc; use jiff::Timestamp; use jiff::civil::{Date, DateTime, Time}; use jiff::tz::{Offset, TimeZone}; use serde::Deserialize; use toml_edit::{Array, ArrayOfTables, Item, Table, value}; use url::Url; use uv_cache_key::...
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-resolver/src/lock/export/cyclonedx_json.rs
crates/uv-resolver/src/lock/export/cyclonedx_json.rs
use std::collections::HashMap; use std::path::Path; use cyclonedx_bom::models::component::Classification; use cyclonedx_bom::models::dependency::{Dependencies, Dependency}; use cyclonedx_bom::models::metadata::Metadata; use cyclonedx_bom::models::property::{Properties, Property}; use cyclonedx_bom::models::tool::{Tool...
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-resolver/src/lock/export/mod.rs
crates/uv-resolver/src/lock/export/mod.rs
use std::collections::VecDeque; use std::collections::hash_map::Entry; use either::Either; use petgraph::graph::NodeIndex; use petgraph::prelude::EdgeRef; use petgraph::visit::IntoNodeReferences; use petgraph::{Direction, Graph}; use rustc_hash::{FxBuildHasher, FxHashMap, FxHashSet}; use uv_configuration::{ Depen...
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-resolver/src/lock/export/requirements_txt.rs
crates/uv-resolver/src/lock/export/requirements_txt.rs
use std::borrow::Cow; use std::fmt::Formatter; use std::path::{Component, Path, PathBuf}; use owo_colors::OwoColorize; use url::Url; use uv_configuration::{ DependencyGroupsWithDefaults, EditableMode, ExtrasSpecificationWithDefaults, InstallOptions, }; use uv_distribution_filename::{DistExtension, SourceDistExten...
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-resolver/src/resolution/display.rs
crates/uv-resolver/src/resolution/display.rs
use std::collections::BTreeSet; use owo_colors::OwoColorize; use petgraph::visit::EdgeRef; use petgraph::{Directed, Direction, Graph}; use rustc_hash::{FxBuildHasher, FxHashMap}; use uv_distribution_types::{DistributionMetadata, Name, SourceAnnotation, SourceAnnotations}; use uv_normalize::PackageName; use uv_pep508:...
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-resolver/src/resolution/mod.rs
crates/uv-resolver/src/resolution/mod.rs
use std::fmt::Display; use uv_distribution::Metadata; use uv_distribution_types::{ BuiltDist, Dist, DistributionMetadata, IndexUrl, Name, ResolvedDist, SourceDist, VersionOrUrlRef, }; use uv_normalize::{ExtraName, GroupName, PackageName}; use uv_pep440::Version; use uv_pypi_types::HashDigests; pub 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-resolver/src/resolution/output.rs
crates/uv-resolver/src/resolution/output.rs
use std::collections::BTreeMap; use std::fmt::{Display, Formatter}; use std::sync::Arc; use indexmap::IndexSet; use petgraph::{ Directed, Direction, graph::{Graph, NodeIndex}, }; use rustc_hash::{FxBuildHasher, FxHashMap, FxHashSet}; use uv_configuration::{Constraints, Overrides}; use uv_distribution::Metadat...
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-resolver/src/resolution/requirements_txt.rs
crates/uv-resolver/src/resolution/requirements_txt.rs
use std::borrow::Cow; use std::fmt::Display; use std::path::Path; use itertools::Itertools; use uv_distribution_types::{ DistributionMetadata, Name, RequiresPython, ResolvedDist, SimplifiedMarkerTree, Verbatim, VersionOrUrlRef, }; use uv_normalize::{ExtraName, PackageName}; use uv_pep440::Version; use uv_pep5...
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/lib.rs
crates/uv-requirements/src/lib.rs
pub use crate::extras::*; pub use crate::lookahead::*; pub use crate::source_tree::*; pub use crate::sources::*; pub use crate::specification::*; pub use crate::unnamed::*; use uv_distribution_types::{ Dist, DistErrorKind, GitSourceDist, Requirement, RequirementSource, SourceDist, }; mod extras; mod lookahead; mo...
rust
Apache-2.0
2318e48e819080f37a002551035c2b1880a81a70
2026-01-04T15:31:58.679374Z
false