├── .cargo └── config.toml ├── .config └── nextest.toml ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 1_bug_report.yaml │ ├── 2_feature_request.yaml │ ├── 3_question.yaml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── renovate.json5 └── workflows │ ├── build-binaries.yml │ ├── build-docker.yml │ ├── ci.yml │ ├── publish-docs.yml │ ├── publish-pypi.yml │ ├── release.yml │ ├── setup-dev-drive.ps1 │ └── sync-python-releases.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .python-versions ├── BENCHMARKS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── PIP_COMPATIBILITY.md ├── README.md ├── SECURITY.md ├── STYLE.md ├── _typos.toml ├── assets ├── badge │ └── v0.json ├── png │ ├── Astral.png │ ├── install-cold.png │ ├── install-warm.png │ ├── resolve-cold.png │ └── resolve-warm.png └── svg │ ├── Astral.svg │ ├── Benchmark-Dark.svg │ └── Benchmark-Light.svg ├── changelogs ├── 0.1.x.md ├── 0.2.x.md ├── 0.3.x.md ├── 0.4.x.md └── 0.5.x.md ├── clippy.toml ├── cn_docs ├── .gitignore ├── .overrides │ ├── main.html │ └── partials │ │ └── integrations │ │ └── analytics │ │ └── fathom.html ├── assets │ ├── favicon.ico │ ├── logo-letter.svg │ ├── uv_gui_script_hello_world.png │ └── uv_gui_script_hello_world_pyqt.png ├── concepts │ ├── cache.md │ ├── index.md │ ├── projects │ │ ├── build.md │ │ ├── config.md │ │ ├── dependencies.md │ │ ├── index.md │ │ ├── init.md │ │ ├── layout.md │ │ ├── run.md │ │ ├── sync.md │ │ └── workspaces.md │ ├── python-versions.md │ ├── resolution.md │ └── tools.md ├── configuration │ ├── authentication.md │ ├── environment.md │ ├── files.md │ ├── index.md │ ├── indexes.md │ └── installer.md ├── getting-started │ ├── features.md │ ├── first-steps.md │ ├── help.md │ ├── index.md │ └── installation.md ├── guides │ ├── index.md │ ├── install-python.md │ ├── integration │ │ ├── alternative-indexes.md │ │ ├── dependency-bots.md │ │ ├── docker.md │ │ ├── fastapi.md │ │ ├── github.md │ │ ├── gitlab.md │ │ ├── index.md │ │ ├── jupyter.md │ │ ├── pre-commit.md │ │ └── pytorch.md │ ├── projects.md │ ├── publish.md │ ├── scripts.md │ └── tools.md ├── index.md ├── js │ └── extra.js ├── pip │ ├── compatibility.md │ ├── compile.md │ ├── dependencies.md │ ├── environments.md │ ├── index.md │ ├── inspection.md │ └── packages.md ├── reference │ ├── benchmarks.md │ ├── build_failures.md │ ├── cli.md │ ├── index.md │ ├── platforms.md │ ├── resolver-internals.md │ ├── settings.md │ └── versioning.md ├── requirements-insiders.in ├── requirements-insiders.txt ├── requirements.in ├── requirements.txt └── stylesheets │ └── extra.css ├── cn_mkdocs.yml ├── crates ├── README.md ├── uv-auth │ ├── Cargo.toml │ └── src │ │ ├── cache.rs │ │ ├── credentials.rs │ │ ├── keyring.rs │ │ ├── lib.rs │ │ ├── middleware.rs │ │ └── realm.rs ├── uv-bench │ ├── Cargo.toml │ ├── benches │ │ ├── distribution_filename.rs │ │ └── uv.rs │ ├── inputs │ │ └── platform_tags.rs │ └── src │ │ └── lib.rs ├── uv-build-backend │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── metadata.rs │ │ ├── source_dist.rs │ │ └── wheel.rs ├── uv-build-frontend │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ └── lib.rs ├── uv-cache-info │ ├── Cargo.toml │ └── src │ │ ├── cache_info.rs │ │ ├── git_info.rs │ │ ├── lib.rs │ │ └── timestamp.rs ├── uv-cache-key │ ├── Cargo.toml │ └── src │ │ ├── cache_key.rs │ │ ├── canonical_url.rs │ │ ├── digest.rs │ │ └── lib.rs ├── uv-cache │ ├── Cargo.toml │ └── src │ │ ├── archive.rs │ │ ├── by_timestamp.rs │ │ ├── cli.rs │ │ ├── lib.rs │ │ ├── removal.rs │ │ └── wheel.rs ├── uv-cli │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── comma.rs │ │ ├── compat.rs │ │ ├── lib.rs │ │ ├── options.rs │ │ └── version.rs ├── uv-client │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── base_client.rs │ │ ├── cached_client.rs │ │ ├── error.rs │ │ ├── flat_index.rs │ │ ├── html.rs │ │ ├── httpcache │ │ │ ├── control.rs │ │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── linehaul.rs │ │ ├── middleware.rs │ │ ├── registry_client.rs │ │ ├── remote_metadata.rs │ │ ├── rkyvutil.rs │ │ └── tls.rs │ └── tests │ │ └── it │ │ ├── main.rs │ │ ├── remote_metadata.rs │ │ └── user_agent_version.rs ├── uv-configuration │ ├── Cargo.toml │ └── src │ │ ├── authentication.rs │ │ ├── build_options.rs │ │ ├── concurrency.rs │ │ ├── config_settings.rs │ │ ├── constraints.rs │ │ ├── dev.rs │ │ ├── dry_run.rs │ │ ├── editable.rs │ │ ├── export_format.rs │ │ ├── extras.rs │ │ ├── hash.rs │ │ ├── install_options.rs │ │ ├── lib.rs │ │ ├── name_specifiers.rs │ │ ├── overrides.rs │ │ ├── package_options.rs │ │ ├── preview.rs │ │ ├── project_build_backend.rs │ │ ├── rayon.rs │ │ ├── required_version.rs │ │ ├── sources.rs │ │ ├── target_triple.rs │ │ ├── trusted_host.rs │ │ ├── trusted_publishing.rs │ │ └── vcs.rs ├── uv-console │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-dev │ ├── .gitignore │ ├── Cargo.toml │ ├── builder.dockerfile │ ├── src │ │ ├── clear_compile.rs │ │ ├── compile.rs │ │ ├── generate_all.rs │ │ ├── generate_cli_reference.rs │ │ ├── generate_env_vars_reference.rs │ │ ├── generate_json_schema.rs │ │ ├── generate_options_reference.rs │ │ ├── main.rs │ │ ├── render_benchmarks.rs │ │ └── wheel_metadata.rs │ └── test_sdist_building.sh ├── uv-dirs │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-dispatch │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-distribution-filename │ ├── Cargo.toml │ └── src │ │ ├── build_tag.rs │ │ ├── egg.rs │ │ ├── extension.rs │ │ ├── lib.rs │ │ ├── snapshots │ │ ├── uv_distribution_filename__wheel__tests__ok_build_tag.snap │ │ ├── uv_distribution_filename__wheel__tests__ok_multiple_tags.snap │ │ └── uv_distribution_filename__wheel__tests__ok_single_tags.snap │ │ ├── source_dist.rs │ │ ├── splitter.rs │ │ ├── wheel.rs │ │ └── wheel_tag.rs ├── uv-distribution-types │ ├── Cargo.toml │ └── src │ │ ├── annotation.rs │ │ ├── any.rs │ │ ├── buildable.rs │ │ ├── cached.rs │ │ ├── dependency_metadata.rs │ │ ├── diagnostic.rs │ │ ├── dist_error.rs │ │ ├── error.rs │ │ ├── file.rs │ │ ├── hash.rs │ │ ├── id.rs │ │ ├── index.rs │ │ ├── index_name.rs │ │ ├── index_url.rs │ │ ├── installed.rs │ │ ├── known_platform.rs │ │ ├── lib.rs │ │ ├── origin.rs │ │ ├── pip_index.rs │ │ ├── prioritized_distribution.rs │ │ ├── requested.rs │ │ ├── resolution.rs │ │ ├── resolved.rs │ │ ├── specified_requirement.rs │ │ └── traits.rs ├── uv-distribution │ ├── Cargo.toml │ └── src │ │ ├── archive.rs │ │ ├── distribution_database.rs │ │ ├── download.rs │ │ ├── error.rs │ │ ├── index │ │ ├── built_wheel_index.rs │ │ ├── cached_wheel.rs │ │ ├── mod.rs │ │ └── registry_wheel_index.rs │ │ ├── lib.rs │ │ ├── locks.rs │ │ ├── metadata │ │ ├── build_requires.rs │ │ ├── lowering.rs │ │ ├── mod.rs │ │ └── requires_dist.rs │ │ ├── reporter.rs │ │ └── source │ │ ├── built_wheel_metadata.rs │ │ ├── mod.rs │ │ └── revision.rs ├── uv-extract │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ ├── hash.rs │ │ ├── lib.rs │ │ ├── stream.rs │ │ ├── sync.rs │ │ └── vendor │ │ ├── LICENSE │ │ ├── cloneable_seekable_reader.rs │ │ └── mod.rs ├── uv-fs │ ├── Cargo.toml │ └── src │ │ ├── cachedir.rs │ │ ├── lib.rs │ │ ├── path.rs │ │ └── which.rs ├── uv-git-types │ ├── Cargo.toml │ └── src │ │ ├── github.rs │ │ ├── lib.rs │ │ ├── oid.rs │ │ └── reference.rs ├── uv-git │ ├── Cargo.toml │ └── src │ │ ├── credentials.rs │ │ ├── git.rs │ │ ├── lib.rs │ │ ├── resolver.rs │ │ └── source.rs ├── uv-globfilter │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── glob_dir_filter.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ └── portable_glob.rs ├── uv-install-wheel │ ├── Cargo.toml │ └── src │ │ ├── install.rs │ │ ├── lib.rs │ │ ├── linker.rs │ │ ├── record.rs │ │ ├── script.rs │ │ ├── uninstall.rs │ │ └── wheel.rs ├── uv-installer │ ├── Cargo.toml │ └── src │ │ ├── compile.rs │ │ ├── installer.rs │ │ ├── lib.rs │ │ ├── pip_compileall.py │ │ ├── plan.rs │ │ ├── preparer.rs │ │ ├── satisfies.rs │ │ ├── site_packages.rs │ │ └── uninstall.rs ├── uv-macros │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── options_metadata.rs ├── uv-metadata │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-normalize │ ├── Cargo.toml │ └── src │ │ ├── dist_info_name.rs │ │ ├── extra_name.rs │ │ ├── group_name.rs │ │ ├── lib.rs │ │ └── package_name.rs ├── uv-once-map │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-options-metadata │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-pep440 │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── License-Apache │ ├── License-BSD │ ├── Readme.md │ └── src │ │ ├── lib.rs │ │ ├── version.rs │ │ ├── version_ranges.rs │ │ └── version_specifier.rs ├── uv-pep508 │ ├── Cargo.toml │ ├── Changelog.md │ ├── License-Apache │ ├── License-BSD │ ├── Readme.md │ └── src │ │ ├── cursor.rs │ │ ├── lib.rs │ │ ├── marker │ │ ├── algebra.rs │ │ ├── environment.rs │ │ ├── lowering.rs │ │ ├── mod.rs │ │ ├── parse.rs │ │ ├── simplify.rs │ │ └── tree.rs │ │ ├── origin.rs │ │ ├── unnamed.rs │ │ └── verbatim_url.rs ├── uv-performance-flate2-backend │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-performance-memory-allocator │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-platform-tags │ ├── Cargo.toml │ └── src │ │ ├── abi_tag.rs │ │ ├── language_tag.rs │ │ ├── lib.rs │ │ ├── platform.rs │ │ ├── platform_tag.rs │ │ └── tags.rs ├── uv-publish │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── trusted_publishing.rs ├── uv-pypi-types │ ├── Cargo.toml │ └── src │ │ ├── base_url.rs │ │ ├── conflicts.rs │ │ ├── direct_url.rs │ │ ├── lenient_requirement.rs │ │ ├── lib.rs │ │ ├── marker_environment.rs │ │ ├── metadata │ │ ├── build_requires.rs │ │ ├── metadata10.rs │ │ ├── metadata23.rs │ │ ├── metadata_resolver.rs │ │ ├── mod.rs │ │ ├── pyproject_toml.rs │ │ ├── requires_dist.rs │ │ └── requires_txt.rs │ │ ├── parsed_url.rs │ │ ├── requirement.rs │ │ ├── scheme.rs │ │ ├── simple_json.rs │ │ └── supported_environments.rs ├── uv-python │ ├── Cargo.toml │ ├── download-metadata.json │ ├── fetch-download-metadata.py │ ├── python │ │ ├── __init__.py │ │ ├── get_interpreter_info.py │ │ └── packaging │ │ │ ├── LICENSE.APACHE │ │ │ ├── LICENSE.BSD │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ └── _musllinux.py │ ├── src │ │ ├── cpuinfo.rs │ │ ├── discovery.rs │ │ ├── downloads.inc │ │ ├── downloads.inc.mustache │ │ ├── downloads.rs │ │ ├── environment.rs │ │ ├── implementation.rs │ │ ├── installation.rs │ │ ├── interpreter.rs │ │ ├── lib.rs │ │ ├── libc.rs │ │ ├── macos_dylib.rs │ │ ├── managed.rs │ │ ├── microsoft_store.rs │ │ ├── platform.rs │ │ ├── pointer_size.rs │ │ ├── prefix.rs │ │ ├── python_version.rs │ │ ├── sysconfig │ │ │ ├── cursor.rs │ │ │ ├── mod.rs │ │ │ └── parser.rs │ │ ├── target.rs │ │ ├── version_files.rs │ │ ├── virtualenv.rs │ │ └── windows_registry.rs │ └── template-download-metadata.py ├── uv-requirements-txt │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── requirement.rs │ │ └── snapshots │ │ │ ├── uv_requirements_txt__test__line-endings-basic.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-constraints-a.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-constraints-b.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-empty.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-for-poetry.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-include-a.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-include-b.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-poetry-with-hashes.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-small.txt.snap │ │ │ ├── uv_requirements_txt__test__line-endings-whitespace.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-basic.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-constraints-a.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-constraints-b.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-empty.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-for-poetry.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-include-a.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-include-b.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-poetry-with-hashes.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-small.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-unix-bare-url.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-unix-editable.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-unix-hash.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-unix-semicolon.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-whitespace.txt.snap │ │ │ ├── uv_requirements_txt__test__parse-windows-bare-url.txt.snap │ │ │ └── uv_requirements_txt__test__parse-windows-editable.txt.snap │ └── test-data │ │ └── requirements-txt │ │ ├── bare-url.txt │ │ ├── basic.txt │ │ ├── constraints-a.txt │ │ ├── constraints-b.txt │ │ ├── editable.txt │ │ ├── empty.txt │ │ ├── for-poetry.txt │ │ ├── hash.txt │ │ ├── include-a.txt │ │ ├── include-b.txt │ │ ├── poetry-with-hashes.txt │ │ ├── semicolon.txt │ │ ├── small.txt │ │ └── whitespace.txt ├── uv-requirements │ ├── Cargo.toml │ └── src │ │ ├── extras.rs │ │ ├── lib.rs │ │ ├── lookahead.rs │ │ ├── source_tree.rs │ │ ├── sources.rs │ │ ├── specification.rs │ │ ├── unnamed.rs │ │ └── upgrade.rs ├── uv-resolver │ ├── Cargo.toml │ └── src │ │ ├── candidate_selector.rs │ │ ├── dependency_mode.rs │ │ ├── dependency_provider.rs │ │ ├── error.rs │ │ ├── exclude_newer.rs │ │ ├── exclusions.rs │ │ ├── flat_index.rs │ │ ├── fork_indexes.rs │ │ ├── fork_strategy.rs │ │ ├── fork_urls.rs │ │ ├── graph_ops.rs │ │ ├── lib.rs │ │ ├── lock │ │ ├── installable.rs │ │ ├── map.rs │ │ ├── mod.rs │ │ ├── requirements_txt.rs │ │ ├── snapshots │ │ │ ├── uv_resolver__lock__tests__hash_optional_missing.snap │ │ │ ├── uv_resolver__lock__tests__hash_optional_present.snap │ │ │ ├── uv_resolver__lock__tests__hash_required_present.snap │ │ │ ├── uv_resolver__lock__tests__missing_dependency_source_unambiguous.snap │ │ │ ├── uv_resolver__lock__tests__missing_dependency_source_version_unambiguous.snap │ │ │ ├── uv_resolver__lock__tests__missing_dependency_version_dynamic.snap │ │ │ ├── uv_resolver__lock__tests__missing_dependency_version_unambiguous.snap │ │ │ ├── uv_resolver__lock__tests__source_direct_has_subdir.snap │ │ │ ├── uv_resolver__lock__tests__source_direct_no_subdir.snap │ │ │ ├── uv_resolver__lock__tests__source_directory.snap │ │ │ └── uv_resolver__lock__tests__source_editable.snap │ │ └── tree.rs │ │ ├── manifest.rs │ │ ├── marker.rs │ │ ├── options.rs │ │ ├── pins.rs │ │ ├── preferences.rs │ │ ├── prerelease.rs │ │ ├── pubgrub │ │ ├── dependencies.rs │ │ ├── distribution.rs │ │ ├── mod.rs │ │ ├── package.rs │ │ ├── priority.rs │ │ └── report.rs │ │ ├── python_requirement.rs │ │ ├── redirect.rs │ │ ├── requires_python.rs │ │ ├── resolution │ │ ├── display.rs │ │ ├── mod.rs │ │ ├── output.rs │ │ └── requirements_txt.rs │ │ ├── resolution_mode.rs │ │ ├── resolver │ │ ├── availability.rs │ │ ├── batch_prefetch.rs │ │ ├── derivation.rs │ │ ├── environment.rs │ │ ├── fork_map.rs │ │ ├── index.rs │ │ ├── indexes.rs │ │ ├── mod.rs │ │ ├── provider.rs │ │ ├── reporter.rs │ │ └── urls.rs │ │ ├── universal_marker.rs │ │ ├── version_map.rs │ │ └── yanks.rs ├── uv-scripts │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-settings │ ├── Cargo.toml │ └── src │ │ ├── combine.rs │ │ ├── lib.rs │ │ └── settings.rs ├── uv-shell │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── shlex.rs │ │ └── windows.rs ├── uv-small-str │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-state │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-static │ ├── Cargo.toml │ └── src │ │ ├── env_vars.rs │ │ └── lib.rs ├── uv-tool │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── receipt.rs │ │ └── tool.rs ├── uv-trampoline-builder │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-trampoline │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── rust-toolchain.toml │ ├── src │ │ ├── bin │ │ │ ├── uv-trampoline-console.rs │ │ │ └── uv-trampoline-gui.rs │ │ ├── bounce.rs │ │ ├── diagnostics.rs │ │ └── lib.rs │ └── trampolines │ │ ├── uv-trampoline-aarch64-console.exe │ │ ├── uv-trampoline-aarch64-gui.exe │ │ ├── uv-trampoline-i686-console.exe │ │ ├── uv-trampoline-i686-gui.exe │ │ ├── uv-trampoline-x86_64-console.exe │ │ └── uv-trampoline-x86_64-gui.exe ├── uv-types │ ├── Cargo.toml │ └── src │ │ ├── builds.rs │ │ ├── downloads.rs │ │ ├── hash.rs │ │ ├── lib.rs │ │ ├── requirements.rs │ │ └── traits.rs ├── uv-version │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-virtualenv │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── _virtualenv.py │ │ ├── activator │ │ ├── .gitattributes │ │ ├── activate │ │ ├── activate.bat │ │ ├── activate.csh │ │ ├── activate.fish │ │ ├── activate.nu │ │ ├── activate.ps1 │ │ ├── activate_this.py │ │ ├── deactivate.bat │ │ └── pydoc.bat │ │ ├── lib.rs │ │ └── virtualenv.rs ├── uv-warnings │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── uv-workspace │ ├── Cargo.toml │ └── src │ │ ├── dependency_groups.rs │ │ ├── lib.rs │ │ ├── pyproject.rs │ │ ├── pyproject_mut.rs │ │ └── workspace.rs └── uv │ ├── Cargo.toml │ ├── src │ ├── bin │ │ ├── uv.rs │ │ └── uvx.rs │ ├── commands │ │ ├── build_backend.rs │ │ ├── build_frontend.rs │ │ ├── cache_clean.rs │ │ ├── cache_dir.rs │ │ ├── cache_prune.rs │ │ ├── diagnostics.rs │ │ ├── help.rs │ │ ├── mod.rs │ │ ├── pip │ │ │ ├── check.rs │ │ │ ├── compile.rs │ │ │ ├── freeze.rs │ │ │ ├── install.rs │ │ │ ├── latest.rs │ │ │ ├── list.rs │ │ │ ├── loggers.rs │ │ │ ├── mod.rs │ │ │ ├── operations.rs │ │ │ ├── show.rs │ │ │ ├── sync.rs │ │ │ ├── tree.rs │ │ │ └── uninstall.rs │ │ ├── project │ │ │ ├── add.rs │ │ │ ├── environment.rs │ │ │ ├── export.rs │ │ │ ├── init.rs │ │ │ ├── install_target.rs │ │ │ ├── lock.rs │ │ │ ├── lock_target.rs │ │ │ ├── mod.rs │ │ │ ├── remove.rs │ │ │ ├── run.rs │ │ │ ├── sync.rs │ │ │ └── tree.rs │ │ ├── publish.rs │ │ ├── python │ │ │ ├── dir.rs │ │ │ ├── find.rs │ │ │ ├── install.rs │ │ │ ├── list.rs │ │ │ ├── mod.rs │ │ │ ├── pin.rs │ │ │ └── uninstall.rs │ │ ├── reporters.rs │ │ ├── run.rs │ │ ├── self_update.rs │ │ ├── suggestions.json │ │ ├── tool │ │ │ ├── common.rs │ │ │ ├── dir.rs │ │ │ ├── install.rs │ │ │ ├── list.rs │ │ │ ├── mod.rs │ │ │ ├── run.rs │ │ │ ├── uninstall.rs │ │ │ ├── update_shell.rs │ │ │ └── upgrade.rs │ │ ├── venv.rs │ │ └── version.rs │ ├── lib.rs │ ├── logging.rs │ ├── printer.rs │ └── settings.rs │ └── tests │ └── it │ ├── branching_urls.rs │ ├── build.rs │ ├── build_backend.rs │ ├── cache_clean.rs │ ├── cache_prune.rs │ ├── common │ └── mod.rs │ ├── ecosystem.rs │ ├── edit.rs │ ├── export.rs │ ├── help.rs │ ├── init.rs │ ├── lock.rs │ ├── lock_conflict.rs │ ├── lock_scenarios.rs │ ├── main.rs │ ├── pip_check.rs │ ├── pip_compile.rs │ ├── pip_compile_scenarios.rs │ ├── pip_freeze.rs │ ├── pip_install.rs │ ├── pip_install_scenarios.rs │ ├── pip_list.rs │ ├── pip_show.rs │ ├── pip_sync.rs │ ├── pip_tree.rs │ ├── pip_uninstall.rs │ ├── publish.rs │ ├── python_dir.rs │ ├── python_find.rs │ ├── python_install.rs │ ├── python_pin.rs │ ├── run.rs │ ├── self_update.rs │ ├── show_settings.rs │ ├── snapshots │ ├── it__ecosystem__black-lock-file.snap │ ├── it__ecosystem__black-uv-lock-output.snap │ ├── it__ecosystem__github-wikidata-bot-lock-file.snap │ ├── it__ecosystem__github-wikidata-bot-uv-lock-output.snap │ ├── it__ecosystem__home-assistant-core-lock-file.snap │ ├── it__ecosystem__home-assistant-core-uv-lock-output.snap │ ├── it__ecosystem__packse-lock-file.snap │ ├── it__ecosystem__packse-uv-lock-output.snap │ ├── it__ecosystem__saleor-lock-file.snap │ ├── it__ecosystem__saleor-uv-lock-output.snap │ ├── it__ecosystem__transformers-lock-file.snap │ ├── it__ecosystem__transformers-uv-lock-output.snap │ ├── it__ecosystem__warehouse-lock-file.snap │ ├── it__ecosystem__warehouse-uv-lock-output.snap │ ├── it__workflow__jax_instability-2.snap │ ├── it__workflow__packse_add_remove_existing_package_noop-2.snap │ ├── it__workflow__packse_add_remove_one_package-2.snap │ └── it__workflow__packse_promote_transitive_to_direct_then_remove-2.snap │ ├── sync.rs │ ├── tool_dir.rs │ ├── tool_install.rs │ ├── tool_list.rs │ ├── tool_run.rs │ ├── tool_uninstall.rs │ ├── tool_upgrade.rs │ ├── tree.rs │ ├── venv.rs │ ├── workflow.rs │ └── workspace.rs ├── docs ├── .gitignore ├── .overrides │ ├── main.html │ └── partials │ │ └── integrations │ │ └── analytics │ │ └── fathom.html ├── assets │ ├── favicon.ico │ ├── logo-letter.svg │ ├── uv_gui_script_hello_world.png │ └── uv_gui_script_hello_world_pyqt.png ├── concepts │ ├── cache.md │ ├── index.md │ ├── projects │ │ ├── build.md │ │ ├── config.md │ │ ├── dependencies.md │ │ ├── index.md │ │ ├── init.md │ │ ├── layout.md │ │ ├── run.md │ │ ├── sync.md │ │ └── workspaces.md │ ├── python-versions.md │ ├── resolution.md │ └── tools.md ├── configuration │ ├── authentication.md │ ├── environment.md │ ├── files.md │ ├── index.md │ ├── indexes.md │ └── installer.md ├── getting-started │ ├── features.md │ ├── first-steps.md │ ├── help.md │ ├── index.md │ └── installation.md ├── guides │ ├── index.md │ ├── install-python.md │ ├── integration │ │ ├── alternative-indexes.md │ │ ├── aws-lambda.md │ │ ├── dependency-bots.md │ │ ├── docker.md │ │ ├── fastapi.md │ │ ├── github.md │ │ ├── gitlab.md │ │ ├── index.md │ │ ├── jupyter.md │ │ ├── pre-commit.md │ │ └── pytorch.md │ ├── package.md │ ├── projects.md │ ├── scripts.md │ └── tools.md ├── index.md ├── js │ └── extra.js ├── pip │ ├── compatibility.md │ ├── compile.md │ ├── dependencies.md │ ├── environments.md │ ├── index.md │ ├── inspection.md │ └── packages.md ├── reference │ ├── benchmarks.md │ ├── cli.md │ ├── index.md │ ├── policies │ │ ├── index.md │ │ ├── license.md │ │ ├── platforms.md │ │ └── versioning.md │ ├── resolver-internals.md │ ├── settings.md │ └── troubleshooting │ │ ├── build-failures.md │ │ ├── index.md │ │ └── reproducible-examples.md ├── requirements-insiders.in ├── requirements-insiders.txt ├── requirements.in ├── requirements.txt └── stylesheets │ └── extra.css ├── ecosystem ├── .gitignore ├── airflow │ ├── LICENSE │ ├── NOTICE │ └── pyproject.toml ├── black │ ├── LICENSE │ ├── PKG-INFO │ └── pyproject.toml ├── github-wikidata-bot │ ├── License │ └── pyproject.toml ├── home-assistant-core │ ├── LICENSE.md │ └── pyproject.toml ├── packse │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── pyproject.toml ├── saleor │ ├── LICENSE │ └── pyproject.toml ├── transformers │ ├── LICENSE │ └── pyproject.toml └── warehouse │ ├── LICENSE │ └── pyproject.toml ├── mkdocs.insiders.yml ├── mkdocs.public.yml ├── mkdocs.template.yml ├── pyproject.toml ├── python └── uv │ ├── __init__.py │ ├── __main__.py │ ├── _build_backend.py │ ├── _find_uv.py │ └── py.typed ├── ruff.toml ├── rust-toolchain.toml ├── scripts ├── benchmark │ ├── .python-version │ ├── README.md │ ├── pyproject.toml │ ├── src │ │ └── benchmark │ │ │ ├── __init__.py │ │ │ ├── resolver.py │ │ │ └── tools.py │ └── uv.lock ├── check_cache_compat.py ├── check_embedded_python.py ├── check_registry.py ├── check_system_python.py ├── create-python-mirror.py ├── links │ ├── build_tag-1.0.0-1-py2.py3-none-any.whl │ ├── build_tag-1.0.0-3-py2.py3-none-any.whl │ ├── build_tag-1.0.0-5-py2.py3-none-any.whl │ ├── bz2-1.0.0.tar.bz2 │ ├── extras-0.0.1.tar.gz │ ├── extras-0.0.2.tar.gz │ ├── maturin-1.4.0-py3-none-any.whl │ ├── maturin-2.0.0-py3-none-linux_x86_64.whl │ ├── ok-1.0.0-py3-none-any.whl │ ├── ok-2.0.0-py3-none-any.whl │ ├── simple_launcher-0.1.0-py3-none-any.whl │ ├── tqdm-1000.0.0-py3-none-any.whl │ ├── tqdm-4.66.1-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl │ ├── tqdm-999.0.0.tar.gz │ ├── validation-1.0.0-py3-none-any.whl │ ├── validation-2.0.0-py3-none-any.whl │ └── validation-3.0.0-py3-none-any.whl ├── packages │ ├── README.md │ ├── anyio_local │ │ ├── .gitignore │ │ ├── .python-version │ │ ├── anyio │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── black_editable │ │ ├── .gitignore │ │ ├── black │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── built-by-uv │ │ ├── .gitignore │ │ ├── .python-version │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── assets │ │ │ └── data.csv │ │ ├── data-dir │ │ │ ├── build-script.py │ │ │ └── dont-include-me.txt │ │ ├── header │ │ │ └── built_by_uv.h │ │ ├── pyproject.toml │ │ ├── scripts │ │ │ └── whoami.sh │ │ ├── src │ │ │ └── built_by_uv │ │ │ │ ├── __init__.py │ │ │ │ ├── arithmetic │ │ │ │ ├── __init__.py │ │ │ │ ├── circle.py │ │ │ │ └── pi.txt │ │ │ │ ├── build-only.h │ │ │ │ ├── cli.py │ │ │ │ └── not-packaged.txt │ │ ├── test.sh │ │ ├── tests │ │ │ └── test_package.py │ │ ├── third-party-licenses │ │ │ └── PEP-401.txt │ │ └── uv.lock │ ├── dependent_locals │ │ ├── first_local │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── first_local │ │ │ │ └── __init__.py │ │ │ └── pyproject.toml │ │ └── second_local │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ └── second_local │ │ │ └── __init__.py │ ├── deptry_reproducer │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── deptry_reproducer-0.1.0.tar.gz │ │ ├── pyproject.toml │ │ ├── python │ │ │ └── deptry_reproducer │ │ │ │ ├── __init__.py │ │ │ │ └── foo.py │ │ └── src │ │ │ └── lib.rs │ ├── hatchling_dynamic │ │ ├── hatch_build.py │ │ ├── hatchling_dynamic │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── hatchling_editable │ │ ├── README.md │ │ ├── hatchling_editable │ │ │ └── __init__.py │ │ ├── logging │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── keyring_test_plugin │ │ ├── keyrings │ │ │ ├── __init__.py │ │ │ └── test_keyring.py │ │ └── pyproject.toml │ ├── poetry_editable │ │ ├── poetry_editable │ │ │ └── __init__.py │ │ └── pyproject.toml │ ├── root_editable │ │ ├── README.md │ │ ├── pyproject.toml │ │ └── root_editable │ │ │ └── __init__.py │ ├── setup_cfg_editable │ │ ├── .gitignore │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── setup_cfg_editable │ │ │ └── __init__.py │ ├── setup_py_editable │ │ ├── .gitignore │ │ ├── setup.py │ │ └── setup_py_editable │ │ │ └── __init__.py │ └── setuptools_editable │ │ ├── .gitignore │ │ ├── pyproject.toml │ │ └── setuptools_editable │ │ └── __init__.py ├── popular_packages │ ├── .gitignore │ ├── download.sh │ └── pypi_10k_most_dependents.ipynb ├── publish │ ├── .gitignore │ ├── test_publish.py │ └── test_publish.py.lock ├── release.sh ├── requirements │ ├── .gitignore │ ├── airflow.in │ ├── airflow2-constraints.txt │ ├── airflow2-req.in │ ├── all-kinds.in │ ├── backtracking │ │ ├── apache-beam-dill.in │ │ ├── numpy-numba.in │ │ ├── numpy-sparse.in │ │ ├── sentry.in │ │ └── starlette-fastapi.in │ ├── bio_embeddings.in │ ├── black.in │ ├── boto3.in │ ├── compiled │ │ ├── all-kinds.txt │ │ ├── black.txt │ │ ├── boto3.txt │ │ ├── dtlssocket.txt │ │ ├── flyte.txt │ │ ├── jupyter.txt │ │ ├── pdm_2193.txt │ │ ├── scispacy.txt │ │ └── trio.txt │ ├── dtlssocket.in │ ├── flyte.in │ ├── home-assistant.in │ ├── jupyter.in │ ├── meine_stadt_transparent.in │ ├── pdm_2193.in │ ├── pydantic.in │ ├── scispacy.in │ ├── slow.in │ ├── transformers-extras.in │ ├── transformers │ │ └── pyproject.toml │ └── trio.in ├── scenarios │ ├── .gitignore │ ├── generate.py │ ├── requirements.in │ ├── requirements.txt │ └── templates │ │ ├── compile.mustache │ │ ├── install.mustache │ │ └── lock.mustache ├── sync_scenarios.sh ├── transform_readme.py ├── update_schemastore.py ├── uv-run-remote-script-test.py └── workspaces │ ├── .gitignore │ ├── albatross-in-example │ ├── check_installed_albatross.py │ ├── examples │ │ └── bird-feeder │ │ │ ├── check_installed_bird_feeder.py │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── bird_feeder │ │ │ └── __init__.py │ ├── pyproject.toml │ └── src │ │ └── albatross │ │ └── __init__.py │ ├── albatross-just-project │ ├── check_installed_albatross.py │ ├── pyproject.toml │ └── src │ │ └── albatross │ │ └── __init__.py │ ├── albatross-project-in-excluded │ ├── excluded │ │ └── bird-feeder │ │ │ ├── check_installed_bird_feeder.py │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── bird_feeder │ │ │ └── __init__.py │ ├── packages │ │ └── seeds │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── seeds │ │ │ └── __init__.py │ ├── pyproject.toml │ └── src │ │ └── albatross │ │ └── __init__.py │ ├── albatross-root-workspace │ ├── check_installed_albatross.py │ ├── packages │ │ ├── .gitignore │ │ ├── bird-feeder │ │ │ ├── check_installed_bird_feeder.py │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ │ └── bird_feeder │ │ │ │ └── __init__.py │ │ └── seeds │ │ │ ├── pyproject.toml │ │ │ └── src │ │ │ └── seeds │ │ │ └── __init__.py │ ├── pyproject.toml │ └── src │ │ └── albatross │ │ └── __init__.py │ └── albatross-virtual-workspace │ ├── packages │ ├── albatross │ │ ├── check_installed_albatross.py │ │ ├── pyproject.toml │ │ └── src │ │ │ └── albatross │ │ │ └── __init__.py │ ├── bird-feeder │ │ ├── check_installed_bird_feeder.py │ │ ├── pyproject.toml │ │ └── src │ │ │ └── bird_feeder │ │ │ └── __init__.py │ └── seeds │ │ ├── pyproject.toml │ │ └── src │ │ └── seeds │ │ └── __init__.py │ └── pyproject.toml └── uv.schema.json /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/ISSUE_TEMPLATE/2_feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3_question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/ISSUE_TEMPLATE/3_question.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/build-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/build-binaries.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/setup-dev-drive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/setup-dev-drive.ps1 -------------------------------------------------------------------------------- /.github/workflows/sync-python-releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.github/workflows/sync-python-releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.prettierignore -------------------------------------------------------------------------------- /.python-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/.python-versions -------------------------------------------------------------------------------- /BENCHMARKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/BENCHMARKS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /PIP_COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/PIP_COMPATIBILITY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/SECURITY.md -------------------------------------------------------------------------------- /STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/STYLE.md -------------------------------------------------------------------------------- /_typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/_typos.toml -------------------------------------------------------------------------------- /assets/badge/v0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/badge/v0.json -------------------------------------------------------------------------------- /assets/png/Astral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/png/Astral.png -------------------------------------------------------------------------------- /assets/png/install-cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/png/install-cold.png -------------------------------------------------------------------------------- /assets/png/install-warm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/png/install-warm.png -------------------------------------------------------------------------------- /assets/png/resolve-cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/png/resolve-cold.png -------------------------------------------------------------------------------- /assets/png/resolve-warm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/png/resolve-warm.png -------------------------------------------------------------------------------- /assets/svg/Astral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/svg/Astral.svg -------------------------------------------------------------------------------- /assets/svg/Benchmark-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/svg/Benchmark-Dark.svg -------------------------------------------------------------------------------- /assets/svg/Benchmark-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/assets/svg/Benchmark-Light.svg -------------------------------------------------------------------------------- /changelogs/0.1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/changelogs/0.1.x.md -------------------------------------------------------------------------------- /changelogs/0.2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/changelogs/0.2.x.md -------------------------------------------------------------------------------- /changelogs/0.3.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/changelogs/0.3.x.md -------------------------------------------------------------------------------- /changelogs/0.4.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/changelogs/0.4.x.md -------------------------------------------------------------------------------- /changelogs/0.5.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/changelogs/0.5.x.md -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/clippy.toml -------------------------------------------------------------------------------- /cn_docs/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /cn_docs/.overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/.overrides/main.html -------------------------------------------------------------------------------- /cn_docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/assets/favicon.ico -------------------------------------------------------------------------------- /cn_docs/assets/logo-letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/assets/logo-letter.svg -------------------------------------------------------------------------------- /cn_docs/assets/uv_gui_script_hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/assets/uv_gui_script_hello_world.png -------------------------------------------------------------------------------- /cn_docs/concepts/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/cache.md -------------------------------------------------------------------------------- /cn_docs/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/index.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/build.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/config.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/dependencies.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/index.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/init.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/layout.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/run.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/sync.md -------------------------------------------------------------------------------- /cn_docs/concepts/projects/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/projects/workspaces.md -------------------------------------------------------------------------------- /cn_docs/concepts/python-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/python-versions.md -------------------------------------------------------------------------------- /cn_docs/concepts/resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/resolution.md -------------------------------------------------------------------------------- /cn_docs/concepts/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/concepts/tools.md -------------------------------------------------------------------------------- /cn_docs/configuration/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/configuration/authentication.md -------------------------------------------------------------------------------- /cn_docs/configuration/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/configuration/environment.md -------------------------------------------------------------------------------- /cn_docs/configuration/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/configuration/files.md -------------------------------------------------------------------------------- /cn_docs/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/configuration/index.md -------------------------------------------------------------------------------- /cn_docs/configuration/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/configuration/indexes.md -------------------------------------------------------------------------------- /cn_docs/configuration/installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/configuration/installer.md -------------------------------------------------------------------------------- /cn_docs/getting-started/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/getting-started/features.md -------------------------------------------------------------------------------- /cn_docs/getting-started/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/getting-started/first-steps.md -------------------------------------------------------------------------------- /cn_docs/getting-started/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/getting-started/help.md -------------------------------------------------------------------------------- /cn_docs/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/getting-started/index.md -------------------------------------------------------------------------------- /cn_docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/getting-started/installation.md -------------------------------------------------------------------------------- /cn_docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/index.md -------------------------------------------------------------------------------- /cn_docs/guides/install-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/install-python.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/dependency-bots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/dependency-bots.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/docker.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/fastapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/fastapi.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/github.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/gitlab.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/index.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/jupyter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/jupyter.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/pre-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/pre-commit.md -------------------------------------------------------------------------------- /cn_docs/guides/integration/pytorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/integration/pytorch.md -------------------------------------------------------------------------------- /cn_docs/guides/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/projects.md -------------------------------------------------------------------------------- /cn_docs/guides/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/publish.md -------------------------------------------------------------------------------- /cn_docs/guides/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/scripts.md -------------------------------------------------------------------------------- /cn_docs/guides/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/guides/tools.md -------------------------------------------------------------------------------- /cn_docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/index.md -------------------------------------------------------------------------------- /cn_docs/js/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/js/extra.js -------------------------------------------------------------------------------- /cn_docs/pip/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/compatibility.md -------------------------------------------------------------------------------- /cn_docs/pip/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/compile.md -------------------------------------------------------------------------------- /cn_docs/pip/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/dependencies.md -------------------------------------------------------------------------------- /cn_docs/pip/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/environments.md -------------------------------------------------------------------------------- /cn_docs/pip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/index.md -------------------------------------------------------------------------------- /cn_docs/pip/inspection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/inspection.md -------------------------------------------------------------------------------- /cn_docs/pip/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/pip/packages.md -------------------------------------------------------------------------------- /cn_docs/reference/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/benchmarks.md -------------------------------------------------------------------------------- /cn_docs/reference/build_failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/build_failures.md -------------------------------------------------------------------------------- /cn_docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/cli.md -------------------------------------------------------------------------------- /cn_docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/index.md -------------------------------------------------------------------------------- /cn_docs/reference/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/platforms.md -------------------------------------------------------------------------------- /cn_docs/reference/resolver-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/resolver-internals.md -------------------------------------------------------------------------------- /cn_docs/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/settings.md -------------------------------------------------------------------------------- /cn_docs/reference/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/reference/versioning.md -------------------------------------------------------------------------------- /cn_docs/requirements-insiders.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/requirements-insiders.in -------------------------------------------------------------------------------- /cn_docs/requirements-insiders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/requirements-insiders.txt -------------------------------------------------------------------------------- /cn_docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/requirements.in -------------------------------------------------------------------------------- /cn_docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/requirements.txt -------------------------------------------------------------------------------- /cn_docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_docs/stylesheets/extra.css -------------------------------------------------------------------------------- /cn_mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/cn_mkdocs.yml -------------------------------------------------------------------------------- /crates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/README.md -------------------------------------------------------------------------------- /crates/uv-auth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-auth/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/src/cache.rs -------------------------------------------------------------------------------- /crates/uv-auth/src/credentials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/src/credentials.rs -------------------------------------------------------------------------------- /crates/uv-auth/src/keyring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/src/keyring.rs -------------------------------------------------------------------------------- /crates/uv-auth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-auth/src/middleware.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/src/middleware.rs -------------------------------------------------------------------------------- /crates/uv-auth/src/realm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-auth/src/realm.rs -------------------------------------------------------------------------------- /crates/uv-bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-bench/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-bench/benches/uv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-bench/benches/uv.rs -------------------------------------------------------------------------------- /crates/uv-bench/inputs/platform_tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-bench/inputs/platform_tags.rs -------------------------------------------------------------------------------- /crates/uv-bench/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-bench/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-build-backend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-backend/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-build-backend/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-backend/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-build-backend/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-backend/src/metadata.rs -------------------------------------------------------------------------------- /crates/uv-build-backend/src/source_dist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-backend/src/source_dist.rs -------------------------------------------------------------------------------- /crates/uv-build-backend/src/wheel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-backend/src/wheel.rs -------------------------------------------------------------------------------- /crates/uv-build-frontend/.gitignore: -------------------------------------------------------------------------------- 1 | downloads 2 | wheels 3 | -------------------------------------------------------------------------------- /crates/uv-build-frontend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-frontend/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-build-frontend/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-frontend/src/error.rs -------------------------------------------------------------------------------- /crates/uv-build-frontend/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-build-frontend/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-cache-info/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-info/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-cache-info/src/cache_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-info/src/cache_info.rs -------------------------------------------------------------------------------- /crates/uv-cache-info/src/git_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-info/src/git_info.rs -------------------------------------------------------------------------------- /crates/uv-cache-info/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-info/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-cache-info/src/timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-info/src/timestamp.rs -------------------------------------------------------------------------------- /crates/uv-cache-key/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-key/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-cache-key/src/cache_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-key/src/cache_key.rs -------------------------------------------------------------------------------- /crates/uv-cache-key/src/canonical_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-key/src/canonical_url.rs -------------------------------------------------------------------------------- /crates/uv-cache-key/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-key/src/digest.rs -------------------------------------------------------------------------------- /crates/uv-cache-key/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache-key/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-cache/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-cache/src/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/src/archive.rs -------------------------------------------------------------------------------- /crates/uv-cache/src/by_timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/src/by_timestamp.rs -------------------------------------------------------------------------------- /crates/uv-cache/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/src/cli.rs -------------------------------------------------------------------------------- /crates/uv-cache/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-cache/src/removal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/src/removal.rs -------------------------------------------------------------------------------- /crates/uv-cache/src/wheel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cache/src/wheel.rs -------------------------------------------------------------------------------- /crates/uv-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/build.rs -------------------------------------------------------------------------------- /crates/uv-cli/src/comma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/src/comma.rs -------------------------------------------------------------------------------- /crates/uv-cli/src/compat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/src/compat.rs -------------------------------------------------------------------------------- /crates/uv-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-cli/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/src/options.rs -------------------------------------------------------------------------------- /crates/uv-cli/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-cli/src/version.rs -------------------------------------------------------------------------------- /crates/uv-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/README.md -------------------------------------------------------------------------------- /crates/uv-client/src/base_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/base_client.rs -------------------------------------------------------------------------------- /crates/uv-client/src/cached_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/cached_client.rs -------------------------------------------------------------------------------- /crates/uv-client/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/error.rs -------------------------------------------------------------------------------- /crates/uv-client/src/flat_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/flat_index.rs -------------------------------------------------------------------------------- /crates/uv-client/src/html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/html.rs -------------------------------------------------------------------------------- /crates/uv-client/src/httpcache/control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/httpcache/control.rs -------------------------------------------------------------------------------- /crates/uv-client/src/httpcache/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/httpcache/mod.rs -------------------------------------------------------------------------------- /crates/uv-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-client/src/linehaul.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/linehaul.rs -------------------------------------------------------------------------------- /crates/uv-client/src/middleware.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/middleware.rs -------------------------------------------------------------------------------- /crates/uv-client/src/registry_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/registry_client.rs -------------------------------------------------------------------------------- /crates/uv-client/src/remote_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/remote_metadata.rs -------------------------------------------------------------------------------- /crates/uv-client/src/rkyvutil.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/rkyvutil.rs -------------------------------------------------------------------------------- /crates/uv-client/src/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/src/tls.rs -------------------------------------------------------------------------------- /crates/uv-client/tests/it/main.rs: -------------------------------------------------------------------------------- 1 | mod remote_metadata; 2 | mod user_agent_version; 3 | -------------------------------------------------------------------------------- /crates/uv-client/tests/it/remote_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/tests/it/remote_metadata.rs -------------------------------------------------------------------------------- /crates/uv-client/tests/it/user_agent_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-client/tests/it/user_agent_version.rs -------------------------------------------------------------------------------- /crates/uv-configuration/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-configuration/src/authentication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/authentication.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/build_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/build_options.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/concurrency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/concurrency.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/config_settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/config_settings.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/constraints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/constraints.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/dev.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/dry_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/dry_run.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/editable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/editable.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/export_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/export_format.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/extras.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/extras.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/hash.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/install_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/install_options.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/name_specifiers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/name_specifiers.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/overrides.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/overrides.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/package_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/package_options.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/preview.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/rayon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/rayon.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/required_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/required_version.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/sources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/sources.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/target_triple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/target_triple.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/trusted_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/trusted_host.rs -------------------------------------------------------------------------------- /crates/uv-configuration/src/vcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-configuration/src/vcs.rs -------------------------------------------------------------------------------- /crates/uv-console/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-console/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-console/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-console/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-dev/.gitignore: -------------------------------------------------------------------------------- 1 | sdist_building_test_data 2 | -------------------------------------------------------------------------------- /crates/uv-dev/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-dev/builder.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/builder.dockerfile -------------------------------------------------------------------------------- /crates/uv-dev/src/clear_compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/clear_compile.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/compile.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/generate_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/generate_all.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/generate_cli_reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/generate_cli_reference.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/generate_json_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/generate_json_schema.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/generate_options_reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/generate_options_reference.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/main.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/render_benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/render_benchmarks.rs -------------------------------------------------------------------------------- /crates/uv-dev/src/wheel_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/src/wheel_metadata.rs -------------------------------------------------------------------------------- /crates/uv-dev/test_sdist_building.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dev/test_sdist_building.sh -------------------------------------------------------------------------------- /crates/uv-dirs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dirs/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-dirs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dirs/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-dispatch/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dispatch/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-dispatch/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-dispatch/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-distribution-filename/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-filename/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-distribution-filename/src/egg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-filename/src/egg.rs -------------------------------------------------------------------------------- /crates/uv-distribution-filename/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-filename/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-distribution-filename/src/splitter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-filename/src/splitter.rs -------------------------------------------------------------------------------- /crates/uv-distribution-filename/src/wheel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-filename/src/wheel.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/annotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/annotation.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/any.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/any.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/buildable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/buildable.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/cached.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/cached.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/diagnostic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/diagnostic.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/dist_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/dist_error.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/error.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/file.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/hash.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/id.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/index.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/index_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/index_name.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/index_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/index_url.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/installed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/installed.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/origin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/origin.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/pip_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/pip_index.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/requested.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/requested.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/resolution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/resolution.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/resolved.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/resolved.rs -------------------------------------------------------------------------------- /crates/uv-distribution-types/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution-types/src/traits.rs -------------------------------------------------------------------------------- /crates/uv-distribution/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-distribution/src/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/archive.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/download.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/error.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/index/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/index/mod.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/locks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/locks.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/metadata/lowering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/metadata/lowering.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/metadata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/metadata/mod.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/reporter.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/source/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/source/mod.rs -------------------------------------------------------------------------------- /crates/uv-distribution/src/source/revision.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-distribution/src/source/revision.rs -------------------------------------------------------------------------------- /crates/uv-extract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-extract/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/error.rs -------------------------------------------------------------------------------- /crates/uv-extract/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/hash.rs -------------------------------------------------------------------------------- /crates/uv-extract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-extract/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/stream.rs -------------------------------------------------------------------------------- /crates/uv-extract/src/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/sync.rs -------------------------------------------------------------------------------- /crates/uv-extract/src/vendor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/vendor/LICENSE -------------------------------------------------------------------------------- /crates/uv-extract/src/vendor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-extract/src/vendor/mod.rs -------------------------------------------------------------------------------- /crates/uv-fs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-fs/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-fs/src/cachedir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-fs/src/cachedir.rs -------------------------------------------------------------------------------- /crates/uv-fs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-fs/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-fs/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-fs/src/path.rs -------------------------------------------------------------------------------- /crates/uv-fs/src/which.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-fs/src/which.rs -------------------------------------------------------------------------------- /crates/uv-git-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git-types/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-git-types/src/github.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git-types/src/github.rs -------------------------------------------------------------------------------- /crates/uv-git-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git-types/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-git-types/src/oid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git-types/src/oid.rs -------------------------------------------------------------------------------- /crates/uv-git-types/src/reference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git-types/src/reference.rs -------------------------------------------------------------------------------- /crates/uv-git/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-git/src/credentials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git/src/credentials.rs -------------------------------------------------------------------------------- /crates/uv-git/src/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git/src/git.rs -------------------------------------------------------------------------------- /crates/uv-git/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-git/src/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git/src/resolver.rs -------------------------------------------------------------------------------- /crates/uv-git/src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-git/src/source.rs -------------------------------------------------------------------------------- /crates/uv-globfilter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-globfilter/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-globfilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-globfilter/README.md -------------------------------------------------------------------------------- /crates/uv-globfilter/src/glob_dir_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-globfilter/src/glob_dir_filter.rs -------------------------------------------------------------------------------- /crates/uv-globfilter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-globfilter/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-globfilter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-globfilter/src/main.rs -------------------------------------------------------------------------------- /crates/uv-globfilter/src/portable_glob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-globfilter/src/portable_glob.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/install.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/linker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/linker.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/record.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/script.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/uninstall.rs -------------------------------------------------------------------------------- /crates/uv-install-wheel/src/wheel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-install-wheel/src/wheel.rs -------------------------------------------------------------------------------- /crates/uv-installer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-installer/src/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/compile.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/installer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/installer.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/pip_compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/pip_compileall.py -------------------------------------------------------------------------------- /crates/uv-installer/src/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/plan.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/preparer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/preparer.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/satisfies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/satisfies.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/site_packages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/site_packages.rs -------------------------------------------------------------------------------- /crates/uv-installer/src/uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-installer/src/uninstall.rs -------------------------------------------------------------------------------- /crates/uv-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-macros/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-macros/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-macros/src/options_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-macros/src/options_metadata.rs -------------------------------------------------------------------------------- /crates/uv-metadata/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-metadata/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-metadata/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-metadata/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-normalize/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-normalize/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-normalize/src/dist_info_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-normalize/src/dist_info_name.rs -------------------------------------------------------------------------------- /crates/uv-normalize/src/extra_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-normalize/src/extra_name.rs -------------------------------------------------------------------------------- /crates/uv-normalize/src/group_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-normalize/src/group_name.rs -------------------------------------------------------------------------------- /crates/uv-normalize/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-normalize/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-normalize/src/package_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-normalize/src/package_name.rs -------------------------------------------------------------------------------- /crates/uv-once-map/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-once-map/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-once-map/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-once-map/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-options-metadata/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-options-metadata/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-options-metadata/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-options-metadata/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-pep440/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/CHANGELOG.md -------------------------------------------------------------------------------- /crates/uv-pep440/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-pep440/License-Apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/License-Apache -------------------------------------------------------------------------------- /crates/uv-pep440/License-BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/License-BSD -------------------------------------------------------------------------------- /crates/uv-pep440/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/Readme.md -------------------------------------------------------------------------------- /crates/uv-pep440/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-pep440/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/src/version.rs -------------------------------------------------------------------------------- /crates/uv-pep440/src/version_ranges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/src/version_ranges.rs -------------------------------------------------------------------------------- /crates/uv-pep440/src/version_specifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep440/src/version_specifier.rs -------------------------------------------------------------------------------- /crates/uv-pep508/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-pep508/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/Changelog.md -------------------------------------------------------------------------------- /crates/uv-pep508/License-Apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/License-Apache -------------------------------------------------------------------------------- /crates/uv-pep508/License-BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/License-BSD -------------------------------------------------------------------------------- /crates/uv-pep508/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/Readme.md -------------------------------------------------------------------------------- /crates/uv-pep508/src/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/cursor.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/algebra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/algebra.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/environment.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/lowering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/lowering.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/mod.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/parse.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/simplify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/simplify.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/marker/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/marker/tree.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/origin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/origin.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/unnamed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/unnamed.rs -------------------------------------------------------------------------------- /crates/uv-pep508/src/verbatim_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pep508/src/verbatim_url.rs -------------------------------------------------------------------------------- /crates/uv-performance-flate2-backend/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-performance-flate2-backend/Cargo.lock -------------------------------------------------------------------------------- /crates/uv-performance-flate2-backend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-performance-flate2-backend/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-performance-flate2-backend/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-performance-flate2-backend/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-platform-tags/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-platform-tags/src/abi_tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/src/abi_tag.rs -------------------------------------------------------------------------------- /crates/uv-platform-tags/src/language_tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/src/language_tag.rs -------------------------------------------------------------------------------- /crates/uv-platform-tags/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-platform-tags/src/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/src/platform.rs -------------------------------------------------------------------------------- /crates/uv-platform-tags/src/platform_tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/src/platform_tag.rs -------------------------------------------------------------------------------- /crates/uv-platform-tags/src/tags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-platform-tags/src/tags.rs -------------------------------------------------------------------------------- /crates/uv-publish/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-publish/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-publish/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-publish/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-publish/src/trusted_publishing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-publish/src/trusted_publishing.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/base_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/base_url.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/conflicts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/conflicts.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/direct_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/direct_url.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/lenient_requirement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/lenient_requirement.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/marker_environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/marker_environment.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/metadata/metadata10.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/metadata/metadata10.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/metadata/metadata23.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/metadata/metadata23.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/metadata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/metadata/mod.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/parsed_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/parsed_url.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/requirement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/requirement.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/scheme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/scheme.rs -------------------------------------------------------------------------------- /crates/uv-pypi-types/src/simple_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-pypi-types/src/simple_json.rs -------------------------------------------------------------------------------- /crates/uv-python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-python/download-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/download-metadata.json -------------------------------------------------------------------------------- /crates/uv-python/fetch-download-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/fetch-download-metadata.py -------------------------------------------------------------------------------- /crates/uv-python/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/uv-python/python/packaging/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/python/packaging/LICENSE.BSD -------------------------------------------------------------------------------- /crates/uv-python/python/packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/python/packaging/README.md -------------------------------------------------------------------------------- /crates/uv-python/python/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/python/packaging/__init__.py -------------------------------------------------------------------------------- /crates/uv-python/python/packaging/_elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/python/packaging/_elffile.py -------------------------------------------------------------------------------- /crates/uv-python/src/cpuinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/cpuinfo.rs -------------------------------------------------------------------------------- /crates/uv-python/src/discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/discovery.rs -------------------------------------------------------------------------------- /crates/uv-python/src/downloads.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/downloads.inc -------------------------------------------------------------------------------- /crates/uv-python/src/downloads.inc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/downloads.inc.mustache -------------------------------------------------------------------------------- /crates/uv-python/src/downloads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/downloads.rs -------------------------------------------------------------------------------- /crates/uv-python/src/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/environment.rs -------------------------------------------------------------------------------- /crates/uv-python/src/implementation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/implementation.rs -------------------------------------------------------------------------------- /crates/uv-python/src/installation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/installation.rs -------------------------------------------------------------------------------- /crates/uv-python/src/interpreter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/interpreter.rs -------------------------------------------------------------------------------- /crates/uv-python/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-python/src/libc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/libc.rs -------------------------------------------------------------------------------- /crates/uv-python/src/macos_dylib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/macos_dylib.rs -------------------------------------------------------------------------------- /crates/uv-python/src/managed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/managed.rs -------------------------------------------------------------------------------- /crates/uv-python/src/microsoft_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/microsoft_store.rs -------------------------------------------------------------------------------- /crates/uv-python/src/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/platform.rs -------------------------------------------------------------------------------- /crates/uv-python/src/pointer_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/pointer_size.rs -------------------------------------------------------------------------------- /crates/uv-python/src/prefix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/prefix.rs -------------------------------------------------------------------------------- /crates/uv-python/src/python_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/python_version.rs -------------------------------------------------------------------------------- /crates/uv-python/src/sysconfig/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/sysconfig/cursor.rs -------------------------------------------------------------------------------- /crates/uv-python/src/sysconfig/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/sysconfig/mod.rs -------------------------------------------------------------------------------- /crates/uv-python/src/sysconfig/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/sysconfig/parser.rs -------------------------------------------------------------------------------- /crates/uv-python/src/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/target.rs -------------------------------------------------------------------------------- /crates/uv-python/src/version_files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/version_files.rs -------------------------------------------------------------------------------- /crates/uv-python/src/virtualenv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/virtualenv.rs -------------------------------------------------------------------------------- /crates/uv-python/src/windows_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-python/src/windows_registry.rs -------------------------------------------------------------------------------- /crates/uv-requirements-txt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements-txt/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-requirements-txt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements-txt/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-requirements-txt/src/requirement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements-txt/src/requirement.rs -------------------------------------------------------------------------------- /crates/uv-requirements-txt/test-data/requirements-txt/constraints-a.txt: -------------------------------------------------------------------------------- 1 | -c constraints-b.txt 2 | django-debug-toolbar<2.2 -------------------------------------------------------------------------------- /crates/uv-requirements-txt/test-data/requirements-txt/constraints-b.txt: -------------------------------------------------------------------------------- 1 | django==2.1.15 2 | pytz==2023.3 -------------------------------------------------------------------------------- /crates/uv-requirements-txt/test-data/requirements-txt/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/uv-requirements-txt/test-data/requirements-txt/include-a.txt: -------------------------------------------------------------------------------- 1 | --requirement include-b.txt 2 | 3 | numpy==1.24.2 4 | -------------------------------------------------------------------------------- /crates/uv-requirements-txt/test-data/requirements-txt/include-b.txt: -------------------------------------------------------------------------------- 1 | tomli -------------------------------------------------------------------------------- /crates/uv-requirements-txt/test-data/requirements-txt/small.txt: -------------------------------------------------------------------------------- 1 | # These are small and fast to install 2 | 3 | tqdm==4.65.0 4 | tomli-w==1.0.0 -------------------------------------------------------------------------------- /crates/uv-requirements/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-requirements/src/extras.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/extras.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/lookahead.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/lookahead.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/source_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/source_tree.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/sources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/sources.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/specification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/specification.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/unnamed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/unnamed.rs -------------------------------------------------------------------------------- /crates/uv-requirements/src/upgrade.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-requirements/src/upgrade.rs -------------------------------------------------------------------------------- /crates/uv-resolver/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-resolver/src/candidate_selector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/candidate_selector.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/dependency_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/dependency_mode.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/dependency_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/dependency_provider.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/error.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/exclude_newer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/exclude_newer.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/exclusions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/exclusions.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/flat_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/flat_index.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/fork_indexes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/fork_indexes.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/fork_strategy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/fork_strategy.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/fork_urls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/fork_urls.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/graph_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/graph_ops.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/lock/installable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/lock/installable.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/lock/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/lock/map.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/lock/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/lock/mod.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/lock/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/lock/tree.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/manifest.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/marker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/marker.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/options.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/pins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/pins.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/preferences.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/preferences.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/prerelease.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/prerelease.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/pubgrub/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/pubgrub/mod.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/pubgrub/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/pubgrub/package.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/pubgrub/priority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/pubgrub/priority.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/pubgrub/report.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/pubgrub/report.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/python_requirement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/python_requirement.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/redirect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/redirect.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/requires_python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/requires_python.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolution/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolution/display.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolution/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolution/mod.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolution/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolution/output.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolution_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolution_mode.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/derivation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/derivation.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/fork_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/fork_map.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/index.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/indexes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/indexes.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/mod.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/provider.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/reporter.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/resolver/urls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/resolver/urls.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/universal_marker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/universal_marker.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/version_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/version_map.rs -------------------------------------------------------------------------------- /crates/uv-resolver/src/yanks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-resolver/src/yanks.rs -------------------------------------------------------------------------------- /crates/uv-scripts/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-scripts/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-scripts/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-scripts/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-settings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-settings/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-settings/src/combine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-settings/src/combine.rs -------------------------------------------------------------------------------- /crates/uv-settings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-settings/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-settings/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-settings/src/settings.rs -------------------------------------------------------------------------------- /crates/uv-shell/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-shell/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-shell/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-shell/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-shell/src/shlex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-shell/src/shlex.rs -------------------------------------------------------------------------------- /crates/uv-shell/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-shell/src/windows.rs -------------------------------------------------------------------------------- /crates/uv-small-str/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-small-str/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-small-str/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-small-str/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-state/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-state/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-state/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-state/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-static/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-static/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-static/src/env_vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-static/src/env_vars.rs -------------------------------------------------------------------------------- /crates/uv-static/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-static/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-tool/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-tool/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-tool/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-tool/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-tool/src/receipt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-tool/src/receipt.rs -------------------------------------------------------------------------------- /crates/uv-tool/src/tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-tool/src/tool.rs -------------------------------------------------------------------------------- /crates/uv-trampoline-builder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline-builder/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-trampoline-builder/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline-builder/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-trampoline/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/.cargo/config.toml -------------------------------------------------------------------------------- /crates/uv-trampoline/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/Cargo.lock -------------------------------------------------------------------------------- /crates/uv-trampoline/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-trampoline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/README.md -------------------------------------------------------------------------------- /crates/uv-trampoline/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/build.rs -------------------------------------------------------------------------------- /crates/uv-trampoline/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly-2025-01-03" 3 | -------------------------------------------------------------------------------- /crates/uv-trampoline/src/bounce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/src/bounce.rs -------------------------------------------------------------------------------- /crates/uv-trampoline/src/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/src/diagnostics.rs -------------------------------------------------------------------------------- /crates/uv-trampoline/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-trampoline/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-types/src/builds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/src/builds.rs -------------------------------------------------------------------------------- /crates/uv-types/src/downloads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/src/downloads.rs -------------------------------------------------------------------------------- /crates/uv-types/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/src/hash.rs -------------------------------------------------------------------------------- /crates/uv-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-types/src/requirements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/src/requirements.rs -------------------------------------------------------------------------------- /crates/uv-types/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-types/src/traits.rs -------------------------------------------------------------------------------- /crates/uv-version/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-version/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-version/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-version/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-virtualenv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-virtualenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/README.md -------------------------------------------------------------------------------- /crates/uv-virtualenv/src/_virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/src/_virtualenv.py -------------------------------------------------------------------------------- /crates/uv-virtualenv/src/activator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat text eol=crlf 2 | -------------------------------------------------------------------------------- /crates/uv-virtualenv/src/activator/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/src/activator/activate -------------------------------------------------------------------------------- /crates/uv-virtualenv/src/activator/pydoc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/src/activator/pydoc.bat -------------------------------------------------------------------------------- /crates/uv-virtualenv/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-virtualenv/src/virtualenv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-virtualenv/src/virtualenv.rs -------------------------------------------------------------------------------- /crates/uv-warnings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-warnings/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-warnings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-warnings/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-workspace/Cargo.toml -------------------------------------------------------------------------------- /crates/uv-workspace/src/dependency_groups.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-workspace/src/dependency_groups.rs -------------------------------------------------------------------------------- /crates/uv-workspace/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-workspace/src/lib.rs -------------------------------------------------------------------------------- /crates/uv-workspace/src/pyproject.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-workspace/src/pyproject.rs -------------------------------------------------------------------------------- /crates/uv-workspace/src/pyproject_mut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-workspace/src/pyproject_mut.rs -------------------------------------------------------------------------------- /crates/uv-workspace/src/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv-workspace/src/workspace.rs -------------------------------------------------------------------------------- /crates/uv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/Cargo.toml -------------------------------------------------------------------------------- /crates/uv/src/bin/uv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/bin/uv.rs -------------------------------------------------------------------------------- /crates/uv/src/bin/uvx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/bin/uvx.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/build_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/build_backend.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/build_frontend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/build_frontend.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/cache_clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/cache_clean.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/cache_dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/cache_dir.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/cache_prune.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/cache_prune.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/diagnostics.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/help.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/mod.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/check.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/compile.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/freeze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/freeze.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/install.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/latest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/latest.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/list.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/loggers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/loggers.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/mod.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/operations.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/show.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/show.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/sync.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/tree.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/pip/uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/pip/uninstall.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/add.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/environment.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/export.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/init.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/lock.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/lock_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/lock_target.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/mod.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/remove.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/run.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/sync.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/project/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/project/tree.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/publish.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/dir.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/find.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/find.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/install.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/list.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/mod.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/pin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/pin.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/python/uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/python/uninstall.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/reporters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/reporters.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/run.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/self_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/self_update.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/suggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/suggestions.json -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/common.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/dir.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/install.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/list.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/mod.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/run.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/uninstall.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/update_shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/update_shell.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/tool/upgrade.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/tool/upgrade.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/venv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/venv.rs -------------------------------------------------------------------------------- /crates/uv/src/commands/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/commands/version.rs -------------------------------------------------------------------------------- /crates/uv/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/lib.rs -------------------------------------------------------------------------------- /crates/uv/src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/logging.rs -------------------------------------------------------------------------------- /crates/uv/src/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/printer.rs -------------------------------------------------------------------------------- /crates/uv/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/src/settings.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/branching_urls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/branching_urls.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/build.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/build_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/build_backend.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/cache_clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/cache_clean.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/cache_prune.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/cache_prune.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/common/mod.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/ecosystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/ecosystem.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/edit.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/export.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/help.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/init.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/lock.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/lock_conflict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/lock_conflict.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/lock_scenarios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/lock_scenarios.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/main.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_check.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_compile.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_compile_scenarios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_compile_scenarios.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_freeze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_freeze.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_install.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_install_scenarios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_install_scenarios.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_list.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_show.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_show.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_sync.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_tree.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/pip_uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/pip_uninstall.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/publish.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/python_dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/python_dir.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/python_find.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/python_find.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/python_install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/python_install.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/python_pin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/python_pin.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/run.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/self_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/self_update.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/show_settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/show_settings.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/sync.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tool_dir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tool_dir.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tool_install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tool_install.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tool_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tool_list.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tool_run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tool_run.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tool_uninstall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tool_uninstall.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tool_upgrade.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tool_upgrade.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/tree.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/venv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/venv.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/workflow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/workflow.rs -------------------------------------------------------------------------------- /crates/uv/tests/it/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/crates/uv/tests/it/workspace.rs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /docs/.overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/.overrides/main.html -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/logo-letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/assets/logo-letter.svg -------------------------------------------------------------------------------- /docs/assets/uv_gui_script_hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/assets/uv_gui_script_hello_world.png -------------------------------------------------------------------------------- /docs/concepts/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/cache.md -------------------------------------------------------------------------------- /docs/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/index.md -------------------------------------------------------------------------------- /docs/concepts/projects/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/build.md -------------------------------------------------------------------------------- /docs/concepts/projects/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/config.md -------------------------------------------------------------------------------- /docs/concepts/projects/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/dependencies.md -------------------------------------------------------------------------------- /docs/concepts/projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/index.md -------------------------------------------------------------------------------- /docs/concepts/projects/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/init.md -------------------------------------------------------------------------------- /docs/concepts/projects/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/layout.md -------------------------------------------------------------------------------- /docs/concepts/projects/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/run.md -------------------------------------------------------------------------------- /docs/concepts/projects/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/sync.md -------------------------------------------------------------------------------- /docs/concepts/projects/workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/projects/workspaces.md -------------------------------------------------------------------------------- /docs/concepts/python-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/python-versions.md -------------------------------------------------------------------------------- /docs/concepts/resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/resolution.md -------------------------------------------------------------------------------- /docs/concepts/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/concepts/tools.md -------------------------------------------------------------------------------- /docs/configuration/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/configuration/authentication.md -------------------------------------------------------------------------------- /docs/configuration/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/configuration/environment.md -------------------------------------------------------------------------------- /docs/configuration/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/configuration/files.md -------------------------------------------------------------------------------- /docs/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/configuration/index.md -------------------------------------------------------------------------------- /docs/configuration/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/configuration/indexes.md -------------------------------------------------------------------------------- /docs/configuration/installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/configuration/installer.md -------------------------------------------------------------------------------- /docs/getting-started/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/getting-started/features.md -------------------------------------------------------------------------------- /docs/getting-started/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/getting-started/first-steps.md -------------------------------------------------------------------------------- /docs/getting-started/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/getting-started/help.md -------------------------------------------------------------------------------- /docs/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/getting-started/index.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/index.md -------------------------------------------------------------------------------- /docs/guides/install-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/install-python.md -------------------------------------------------------------------------------- /docs/guides/integration/aws-lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/aws-lambda.md -------------------------------------------------------------------------------- /docs/guides/integration/dependency-bots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/dependency-bots.md -------------------------------------------------------------------------------- /docs/guides/integration/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/docker.md -------------------------------------------------------------------------------- /docs/guides/integration/fastapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/fastapi.md -------------------------------------------------------------------------------- /docs/guides/integration/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/github.md -------------------------------------------------------------------------------- /docs/guides/integration/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/gitlab.md -------------------------------------------------------------------------------- /docs/guides/integration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/index.md -------------------------------------------------------------------------------- /docs/guides/integration/jupyter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/jupyter.md -------------------------------------------------------------------------------- /docs/guides/integration/pre-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/pre-commit.md -------------------------------------------------------------------------------- /docs/guides/integration/pytorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/integration/pytorch.md -------------------------------------------------------------------------------- /docs/guides/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/package.md -------------------------------------------------------------------------------- /docs/guides/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/projects.md -------------------------------------------------------------------------------- /docs/guides/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/scripts.md -------------------------------------------------------------------------------- /docs/guides/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/guides/tools.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/js/extra.js -------------------------------------------------------------------------------- /docs/pip/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/compatibility.md -------------------------------------------------------------------------------- /docs/pip/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/compile.md -------------------------------------------------------------------------------- /docs/pip/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/dependencies.md -------------------------------------------------------------------------------- /docs/pip/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/environments.md -------------------------------------------------------------------------------- /docs/pip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/index.md -------------------------------------------------------------------------------- /docs/pip/inspection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/inspection.md -------------------------------------------------------------------------------- /docs/pip/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/pip/packages.md -------------------------------------------------------------------------------- /docs/reference/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/benchmarks.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/policies/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/policies/index.md -------------------------------------------------------------------------------- /docs/reference/policies/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/policies/license.md -------------------------------------------------------------------------------- /docs/reference/policies/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/policies/platforms.md -------------------------------------------------------------------------------- /docs/reference/policies/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/policies/versioning.md -------------------------------------------------------------------------------- /docs/reference/resolver-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/resolver-internals.md -------------------------------------------------------------------------------- /docs/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/settings.md -------------------------------------------------------------------------------- /docs/reference/troubleshooting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/reference/troubleshooting/index.md -------------------------------------------------------------------------------- /docs/requirements-insiders.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/requirements-insiders.in -------------------------------------------------------------------------------- /docs/requirements-insiders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/requirements-insiders.txt -------------------------------------------------------------------------------- /docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/requirements.in -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /ecosystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/.gitignore -------------------------------------------------------------------------------- /ecosystem/airflow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/airflow/LICENSE -------------------------------------------------------------------------------- /ecosystem/airflow/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/airflow/NOTICE -------------------------------------------------------------------------------- /ecosystem/airflow/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/airflow/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/black/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/black/LICENSE -------------------------------------------------------------------------------- /ecosystem/black/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/black/PKG-INFO -------------------------------------------------------------------------------- /ecosystem/black/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/black/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/github-wikidata-bot/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/github-wikidata-bot/License -------------------------------------------------------------------------------- /ecosystem/github-wikidata-bot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/github-wikidata-bot/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/home-assistant-core/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/home-assistant-core/LICENSE.md -------------------------------------------------------------------------------- /ecosystem/home-assistant-core/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/home-assistant-core/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/packse/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/packse/LICENSE-APACHE -------------------------------------------------------------------------------- /ecosystem/packse/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/packse/LICENSE-MIT -------------------------------------------------------------------------------- /ecosystem/packse/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/packse/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/saleor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/saleor/LICENSE -------------------------------------------------------------------------------- /ecosystem/saleor/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/saleor/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/transformers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/transformers/LICENSE -------------------------------------------------------------------------------- /ecosystem/transformers/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/transformers/pyproject.toml -------------------------------------------------------------------------------- /ecosystem/warehouse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/warehouse/LICENSE -------------------------------------------------------------------------------- /ecosystem/warehouse/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ecosystem/warehouse/pyproject.toml -------------------------------------------------------------------------------- /mkdocs.insiders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/mkdocs.insiders.yml -------------------------------------------------------------------------------- /mkdocs.public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/mkdocs.public.yml -------------------------------------------------------------------------------- /mkdocs.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/mkdocs.template.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/uv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/python/uv/__init__.py -------------------------------------------------------------------------------- /python/uv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/python/uv/__main__.py -------------------------------------------------------------------------------- /python/uv/_build_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/python/uv/_build_backend.py -------------------------------------------------------------------------------- /python/uv/_find_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/python/uv/_find_uv.py -------------------------------------------------------------------------------- /python/uv/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/ruff.toml -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.84" 3 | -------------------------------------------------------------------------------- /scripts/benchmark/.python-version: -------------------------------------------------------------------------------- 1 | 3.12.3 2 | -------------------------------------------------------------------------------- /scripts/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/benchmark/README.md -------------------------------------------------------------------------------- /scripts/benchmark/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/benchmark/pyproject.toml -------------------------------------------------------------------------------- /scripts/benchmark/src/benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/benchmark/src/benchmark/__init__.py -------------------------------------------------------------------------------- /scripts/benchmark/src/benchmark/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/benchmark/src/benchmark/resolver.py -------------------------------------------------------------------------------- /scripts/benchmark/src/benchmark/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/benchmark/src/benchmark/tools.py -------------------------------------------------------------------------------- /scripts/benchmark/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/benchmark/uv.lock -------------------------------------------------------------------------------- /scripts/check_cache_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/check_cache_compat.py -------------------------------------------------------------------------------- /scripts/check_embedded_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/check_embedded_python.py -------------------------------------------------------------------------------- /scripts/check_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/check_registry.py -------------------------------------------------------------------------------- /scripts/check_system_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/check_system_python.py -------------------------------------------------------------------------------- /scripts/create-python-mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/create-python-mirror.py -------------------------------------------------------------------------------- /scripts/links/bz2-1.0.0.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/bz2-1.0.0.tar.bz2 -------------------------------------------------------------------------------- /scripts/links/extras-0.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/extras-0.0.1.tar.gz -------------------------------------------------------------------------------- /scripts/links/extras-0.0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/extras-0.0.2.tar.gz -------------------------------------------------------------------------------- /scripts/links/maturin-1.4.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/maturin-1.4.0-py3-none-any.whl -------------------------------------------------------------------------------- /scripts/links/ok-1.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/ok-1.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /scripts/links/ok-2.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/ok-2.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /scripts/links/tqdm-1000.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/tqdm-1000.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /scripts/links/tqdm-999.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/links/tqdm-999.0.0.tar.gz -------------------------------------------------------------------------------- /scripts/packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/README.md -------------------------------------------------------------------------------- /scripts/packages/anyio_local/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/anyio_local/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /scripts/packages/anyio_local/anyio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/anyio_local/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/anyio_local/pyproject.toml -------------------------------------------------------------------------------- /scripts/packages/black_editable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/black_editable/.gitignore -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /build-root/ 3 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/LICENSE-APACHE -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/LICENSE-MIT -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/README.md -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/assets/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/assets/data.csv -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/data-dir/build-script.py: -------------------------------------------------------------------------------- 1 | print("Build script (currently unused)") 2 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/pyproject.toml -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/scripts/whoami.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | whoami 4 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/src/built_by_uv/__init__.py: -------------------------------------------------------------------------------- 1 | def greet() -> str: 2 | return "Hello 👋" 3 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/src/built_by_uv/arithmetic/pi.txt: -------------------------------------------------------------------------------- 1 | 3.14159 2 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/src/built_by_uv/cli.py: -------------------------------------------------------------------------------- 1 | def hello(): 2 | print("Hi from a script!") 3 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/src/built_by_uv/not-packaged.txt: -------------------------------------------------------------------------------- 1 | This file should only exist locally. 2 | -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/test.sh -------------------------------------------------------------------------------- /scripts/packages/built-by-uv/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/built-by-uv/uv.lock -------------------------------------------------------------------------------- /scripts/packages/dependent_locals/first_local/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /scripts/packages/dependent_locals/first_local/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/dependent_locals/first_local/first_local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/dependent_locals/second_local/.gitignore: -------------------------------------------------------------------------------- 1 | # Artifacts from the build process. 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /scripts/packages/dependent_locals/second_local/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/dependent_locals/second_local/second_local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/deptry_reproducer/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /scripts/packages/deptry_reproducer/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/deptry_reproducer/Cargo.lock -------------------------------------------------------------------------------- /scripts/packages/deptry_reproducer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/deptry_reproducer/Cargo.toml -------------------------------------------------------------------------------- /scripts/packages/deptry_reproducer/python/deptry_reproducer/foo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/deptry_reproducer/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/packages/hatchling_dynamic/hatchling_dynamic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/hatchling_editable/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/hatchling_editable/hatchling_editable/__init__.py: -------------------------------------------------------------------------------- 1 | def func(): 2 | pass 3 | -------------------------------------------------------------------------------- /scripts/packages/hatchling_editable/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/keyring_test_plugin/keyrings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/poetry_editable/poetry_editable/__init__.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return "a" 3 | -------------------------------------------------------------------------------- /scripts/packages/root_editable/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/root_editable/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/root_editable/pyproject.toml -------------------------------------------------------------------------------- /scripts/packages/root_editable/root_editable/__init__.py: -------------------------------------------------------------------------------- 1 | def func(): 2 | pass 3 | -------------------------------------------------------------------------------- /scripts/packages/setup_cfg_editable/.gitignore: -------------------------------------------------------------------------------- 1 | # Artifacts from the build process. 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /scripts/packages/setup_cfg_editable/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = setup-cfg-editable 3 | version = 0.0.1 4 | -------------------------------------------------------------------------------- /scripts/packages/setup_cfg_editable/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/setup_cfg_editable/setup.py -------------------------------------------------------------------------------- /scripts/packages/setup_cfg_editable/setup_cfg_editable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/setup_py_editable/.gitignore: -------------------------------------------------------------------------------- 1 | # Artifacts from the build process. 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /scripts/packages/setup_py_editable/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/packages/setup_py_editable/setup.py -------------------------------------------------------------------------------- /scripts/packages/setup_py_editable/setup_py_editable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/packages/setuptools_editable/.gitignore: -------------------------------------------------------------------------------- 1 | # Artifacts from the build process. 2 | *.egg-info/ 3 | -------------------------------------------------------------------------------- /scripts/packages/setuptools_editable/setuptools_editable/__init__.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | pass 3 | -------------------------------------------------------------------------------- /scripts/popular_packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/popular_packages/.gitignore -------------------------------------------------------------------------------- /scripts/popular_packages/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/popular_packages/download.sh -------------------------------------------------------------------------------- /scripts/publish/.gitignore: -------------------------------------------------------------------------------- 1 | astral-test-* 2 | -------------------------------------------------------------------------------- /scripts/publish/test_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/publish/test_publish.py -------------------------------------------------------------------------------- /scripts/publish/test_publish.py.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/publish/test_publish.py.lock -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/requirements/.gitignore: -------------------------------------------------------------------------------- 1 | uv.lock 2 | -------------------------------------------------------------------------------- /scripts/requirements/airflow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/airflow.in -------------------------------------------------------------------------------- /scripts/requirements/airflow2-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/airflow2-constraints.txt -------------------------------------------------------------------------------- /scripts/requirements/airflow2-req.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/airflow2-req.in -------------------------------------------------------------------------------- /scripts/requirements/all-kinds.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/all-kinds.in -------------------------------------------------------------------------------- /scripts/requirements/backtracking/sentry.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/backtracking/sentry.in -------------------------------------------------------------------------------- /scripts/requirements/bio_embeddings.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/bio_embeddings.in -------------------------------------------------------------------------------- /scripts/requirements/black.in: -------------------------------------------------------------------------------- 1 | black 2 | -------------------------------------------------------------------------------- /scripts/requirements/boto3.in: -------------------------------------------------------------------------------- 1 | # Works with Python 3.8 to 3.12 2 | urllib3<1.25.4 3 | boto3 4 | -------------------------------------------------------------------------------- /scripts/requirements/compiled/all-kinds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/all-kinds.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/black.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/black.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/boto3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/boto3.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/dtlssocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/dtlssocket.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/flyte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/flyte.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/jupyter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/jupyter.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/pdm_2193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/pdm_2193.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/scispacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/scispacy.txt -------------------------------------------------------------------------------- /scripts/requirements/compiled/trio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/compiled/trio.txt -------------------------------------------------------------------------------- /scripts/requirements/dtlssocket.in: -------------------------------------------------------------------------------- 1 | DTLSSocket==0.1.16 2 | -------------------------------------------------------------------------------- /scripts/requirements/flyte.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/flyte.in -------------------------------------------------------------------------------- /scripts/requirements/home-assistant.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/home-assistant.in -------------------------------------------------------------------------------- /scripts/requirements/jupyter.in: -------------------------------------------------------------------------------- 1 | jupyter 2 | -------------------------------------------------------------------------------- /scripts/requirements/meine_stadt_transparent.in: -------------------------------------------------------------------------------- 1 | meine_stadt_transparent 2 | -------------------------------------------------------------------------------- /scripts/requirements/pdm_2193.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/pdm_2193.in -------------------------------------------------------------------------------- /scripts/requirements/pydantic.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/pydantic.in -------------------------------------------------------------------------------- /scripts/requirements/scispacy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/scispacy.in -------------------------------------------------------------------------------- /scripts/requirements/slow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/slow.in -------------------------------------------------------------------------------- /scripts/requirements/transformers-extras.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/transformers-extras.in -------------------------------------------------------------------------------- /scripts/requirements/trio.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/requirements/trio.in -------------------------------------------------------------------------------- /scripts/scenarios/.gitignore: -------------------------------------------------------------------------------- 1 | .downloads 2 | -------------------------------------------------------------------------------- /scripts/scenarios/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/scenarios/generate.py -------------------------------------------------------------------------------- /scripts/scenarios/requirements.in: -------------------------------------------------------------------------------- 1 | chevron-blue 2 | packse>=0.3.39 3 | -------------------------------------------------------------------------------- /scripts/scenarios/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/scenarios/requirements.txt -------------------------------------------------------------------------------- /scripts/scenarios/templates/compile.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/scenarios/templates/compile.mustache -------------------------------------------------------------------------------- /scripts/scenarios/templates/install.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/scenarios/templates/install.mustache -------------------------------------------------------------------------------- /scripts/scenarios/templates/lock.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/scenarios/templates/lock.mustache -------------------------------------------------------------------------------- /scripts/sync_scenarios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/sync_scenarios.sh -------------------------------------------------------------------------------- /scripts/transform_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/transform_readme.py -------------------------------------------------------------------------------- /scripts/update_schemastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/update_schemastore.py -------------------------------------------------------------------------------- /scripts/uv-run-remote-script-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/scripts/uv-run-remote-script-test.py -------------------------------------------------------------------------------- /scripts/workspaces/.gitignore: -------------------------------------------------------------------------------- 1 | uv.lock 2 | -------------------------------------------------------------------------------- /scripts/workspaces/albatross-just-project/check_installed_albatross.py: -------------------------------------------------------------------------------- 1 | from albatross import fly 2 | 3 | fly() 4 | print("Success") 5 | -------------------------------------------------------------------------------- /scripts/workspaces/albatross-just-project/src/albatross/__init__.py: -------------------------------------------------------------------------------- 1 | def fly(): 2 | pass 3 | -------------------------------------------------------------------------------- /scripts/workspaces/albatross-root-workspace/check_installed_albatross.py: -------------------------------------------------------------------------------- 1 | from albatross import fly 2 | 3 | fly() 4 | print("Success") 5 | -------------------------------------------------------------------------------- /scripts/workspaces/albatross-root-workspace/packages/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/workspaces/albatross-virtual-workspace/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.uv.workspace] 2 | members = ["packages/*"] 3 | -------------------------------------------------------------------------------- /uv.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellowac/uv-zh-cn/HEAD/uv.schema.json --------------------------------------------------------------------------------