py-rattler 0.10.0__tar.gz → 0.12.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of py-rattler might be problematic. Click here for more details.
- py_rattler-0.12.0/Cargo.toml +203 -0
- py_rattler-0.12.0/PKG-INFO +144 -0
- py_rattler-0.12.0/README.md +123 -0
- py_rattler-0.12.0/crates/file_url/CHANGELOG.md +83 -0
- py_rattler-0.12.0/crates/file_url/Cargo.toml +19 -0
- py_rattler-0.12.0/crates/rattler/CHANGELOG.md +451 -0
- py_rattler-0.12.0/crates/rattler/Cargo.toml +69 -0
- py_rattler-0.12.0/crates/rattler/README.md +123 -0
- py_rattler-0.12.0/crates/rattler/src/install/clobber_registry.rs +1366 -0
- py_rattler-0.12.0/crates/rattler/src/install/driver.rs +305 -0
- py_rattler-0.12.0/crates/rattler/src/install/entry_point.rs +235 -0
- py_rattler-0.12.0/crates/rattler/src/install/installer/error.rs +75 -0
- py_rattler-0.12.0/crates/rattler/src/install/installer/indicatif.rs +791 -0
- py_rattler-0.12.0/crates/rattler/src/install/installer/mod.rs +645 -0
- py_rattler-0.12.0/crates/rattler/src/install/link.rs +955 -0
- py_rattler-0.12.0/crates/rattler/src/install/link_script.rs +308 -0
- py_rattler-0.12.0/crates/rattler/src/install/mod.rs +1312 -0
- py_rattler-0.12.0/crates/rattler/src/install/test_utils.rs +200 -0
- py_rattler-0.12.0/crates/rattler/src/install/transaction.rs +295 -0
- py_rattler-0.12.0/crates/rattler/src/install/unlink.rs +494 -0
- py_rattler-0.12.0/crates/rattler_cache/CHANGELOG.md +291 -0
- py_rattler-0.12.0/crates/rattler_cache/Cargo.toml +49 -0
- py_rattler-0.12.0/crates/rattler_cache/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_cache/src/consts.rs +5 -0
- py_rattler-0.12.0/crates/rattler_cache/src/lib.rs +34 -0
- py_rattler-0.12.0/crates/rattler_cache/src/package_cache/cache_key.rs +110 -0
- py_rattler-0.12.0/crates/rattler_cache/src/package_cache/cache_lock.rs +311 -0
- py_rattler-0.12.0/crates/rattler_cache/src/package_cache/mod.rs +940 -0
- py_rattler-0.12.0/crates/rattler_cache/src/run_exports_cache/cache_key.rs +86 -0
- py_rattler-0.12.0/crates/rattler_cache/src/run_exports_cache/download.rs +66 -0
- py_rattler-0.12.0/crates/rattler_cache/src/run_exports_cache/mod.rs +730 -0
- py_rattler-0.12.0/crates/rattler_conda_types/CHANGELOG.md +443 -0
- py_rattler-0.12.0/crates/rattler_conda_types/Cargo.toml +86 -0
- py_rattler-0.12.0/crates/rattler_conda_types/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/channel/mod.rs +817 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/environment_yaml.rs +202 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/lib.rs +73 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/match_spec/mod.rs +981 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/match_spec/parse.rs +1507 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__matchspec_to_string.snap +8 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__tests__serialize_matchspec.snap +10 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/menuinst/mod.rs +137 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/no_arch_type.rs +156 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/package/about.rs +185 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/package/index.rs +138 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/package/paths.rs +348 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/package/run_exports.rs +86 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/prefix.rs +85 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/prefix_record.rs +411 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/repo_data/mod.rs +697 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/repo_data/patches.rs +313 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/version/bump.rs +411 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/version/mod.rs +1460 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/version/parse.rs +538 -0
- py_rattler-0.12.0/crates/rattler_conda_types/src/version_spec/version_tree.rs +464 -0
- py_rattler-0.12.0/crates/rattler_digest/CHANGELOG.md +106 -0
- py_rattler-0.12.0/crates/rattler_digest/Cargo.toml +33 -0
- py_rattler-0.12.0/crates/rattler_digest/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_digest/src/lib.rs +239 -0
- py_rattler-0.12.0/crates/rattler_digest/src/serde.rs +142 -0
- py_rattler-0.12.0/crates/rattler_index/CHANGELOG.md +378 -0
- py_rattler-0.12.0/crates/rattler_index/Cargo.toml +64 -0
- py_rattler-0.12.0/crates/rattler_index/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_index/src/lib.rs +597 -0
- py_rattler-0.12.0/crates/rattler_index/src/main.rs +149 -0
- py_rattler-0.12.0/crates/rattler_index/tests/test_index.rs +115 -0
- py_rattler-0.12.0/crates/rattler_lock/CHANGELOG.md +365 -0
- py_rattler-0.12.0/crates/rattler_lock/Cargo.toml +37 -0
- py_rattler-0.12.0/crates/rattler_lock/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_lock/src/builder.rs +473 -0
- py_rattler-0.12.0/crates/rattler_lock/src/conda.rs +371 -0
- py_rattler-0.12.0/crates/rattler_lock/src/lib.rs +725 -0
- py_rattler-0.12.0/crates/rattler_lock/src/options.rs +23 -0
- py_rattler-0.12.0/crates/rattler_lock/src/parse/deserialize.rs +358 -0
- py_rattler-0.12.0/crates/rattler_lock/src/parse/models/v6/conda_package_data.rs +312 -0
- py_rattler-0.12.0/crates/rattler_lock/src/parse/models/v6/mod.rs +6 -0
- py_rattler-0.12.0/crates/rattler_lock/src/parse/models/v6/source_data.rs +189 -0
- py_rattler-0.12.0/crates/rattler_lock/src/parse/serialize.rs +455 -0
- py_rattler-0.12.0/crates/rattler_lock/src/parse/v3.rs +280 -0
- py_rattler-0.12.0/crates/rattler_lock/src/snapshots/rattler_lock__builder__test__merge_records_and_purls.snap +21 -0
- py_rattler-0.12.0/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__options-lock.yml.snap +31 -0
- py_rattler-0.12.0/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__sources-lock.yml.snap +39 -0
- py_rattler-0.12.0/crates/rattler_lock/src/source.rs +65 -0
- py_rattler-0.12.0/crates/rattler_lock/src/url_or_path.rs +318 -0
- py_rattler-0.12.0/crates/rattler_lock/src/utils/serde/mod.rs +15 -0
- py_rattler-0.12.0/crates/rattler_macros/CHANGELOG.md +86 -0
- py_rattler-0.12.0/crates/rattler_macros/Cargo.toml +26 -0
- py_rattler-0.12.0/crates/rattler_macros/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_menuinst/CHANGELOG.md +121 -0
- py_rattler-0.12.0/crates/rattler_menuinst/Cargo.toml +50 -0
- py_rattler-0.12.0/crates/rattler_menuinst/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_menuinst/data/appkit_launcher_arm64 +0 -0
- py_rattler-0.12.0/crates/rattler_menuinst/data/appkit_launcher_x86_64 +0 -0
- py_rattler-0.12.0/crates/rattler_menuinst/data/osx_launcher_arm64 +0 -0
- py_rattler-0.12.0/crates/rattler_menuinst/data/osx_launcher_x86_64 +0 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/lib.rs +228 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/linux/mime_config.rs +298 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps-2.snap +33 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps-3.snap +13 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps-4.snap +22 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps.snap +25 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/linux.rs +816 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/macos.rs +981 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/render.rs +116 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/schema.rs +676 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation-2.snap +8 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation-3.snap +11 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation.snap +15 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__macos__tests__macos_menu_installation.snap +141 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__render__test__render_gnuradio.snap +639 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_defaults.snap +135 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_gnuradio.snap +68 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_grx.snap +135 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_mne.snap +849 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_spyder.snap +558 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/utils/mod.rs +7 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/utils/slugify.rs +61 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/utils/terminal.rs +47 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/windows/create_shortcut.rs +178 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/windows/knownfolders.rs +129 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/windows/lex.rs +75 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/windows/registry.rs +574 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/windows/terminal.rs +429 -0
- py_rattler-0.12.0/crates/rattler_menuinst/src/windows.rs +616 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/defaults/defaults.json +68 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/gnuradio/gnuradio-grc.json +21 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/gnuradio/grc.ico +0 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/gqrx/gqrx-menu.json +38 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/linux-menu/example.menu +12 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/linux-menu/mimeapps.list +6 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/mne/menu.json +168 -0
- py_rattler-0.12.0/crates/rattler_menuinst/test-data/spyder/menu.json +164 -0
- py_rattler-0.12.0/crates/rattler_networking/CHANGELOG.md +254 -0
- py_rattler-0.12.0/crates/rattler_networking/Cargo.toml +61 -0
- py_rattler-0.12.0/crates/rattler_networking/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_networking/src/authentication_middleware.rs +446 -0
- py_rattler-0.12.0/crates/rattler_networking/src/authentication_storage/backends/file.rs +207 -0
- py_rattler-0.12.0/crates/rattler_networking/src/authentication_storage/backends/memory.rs +108 -0
- py_rattler-0.12.0/crates/rattler_networking/src/authentication_storage/backends/mod.rs +6 -0
- py_rattler-0.12.0/crates/rattler_networking/src/authentication_storage/mod.rs +41 -0
- py_rattler-0.12.0/crates/rattler_networking/src/authentication_storage/storage.rs +244 -0
- py_rattler-0.12.0/crates/rattler_networking/src/gcs_middleware.rs +101 -0
- py_rattler-0.12.0/crates/rattler_networking/src/mirror_middleware.rs +313 -0
- py_rattler-0.12.0/crates/rattler_networking/src/oci_middleware.rs +343 -0
- py_rattler-0.12.0/crates/rattler_networking/src/s3_middleware.rs +410 -0
- py_rattler-0.12.0/crates/rattler_networking/tests/s3_integration_test.rs +166 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/CHANGELOG.md +367 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/Cargo.toml +57 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/src/lib.rs +100 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/src/read.rs +139 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/src/seek.rs +143 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/src/write.rs +417 -0
- py_rattler-0.12.0/crates/rattler_package_streaming/tests/write.rs +236 -0
- py_rattler-0.12.0/crates/rattler_pty/CHANGELOG.md +31 -0
- py_rattler-0.12.0/crates/rattler_pty/Cargo.toml +17 -0
- py_rattler-0.12.0/crates/rattler_pty/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_pty/src/lib.rs +2 -0
- py_rattler-0.12.0/crates/rattler_pty/src/unix/mod.rs +6 -0
- py_rattler-0.12.0/crates/rattler_pty/src/unix/pty_process.rs +245 -0
- py_rattler-0.12.0/crates/rattler_pty/src/unix/pty_session.rs +224 -0
- py_rattler-0.12.0/crates/rattler_pty/tests/integration_test.rs +40 -0
- py_rattler-0.12.0/crates/rattler_redaction/CHANGELOG.md +70 -0
- py_rattler-0.12.0/crates/rattler_redaction/Cargo.toml +21 -0
- py_rattler-0.12.0/crates/rattler_redaction/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/CHANGELOG.md +412 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/Cargo.toml +97 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/fetch/jlap/mod.rs +971 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/fetch/mod.rs +157 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/fetch/no_cache.rs +323 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/fetch/with_cache.rs +1573 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/builder.rs +170 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/direct_url_query.rs +199 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/error.rs +128 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/local_subdir.rs +97 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/mod.rs +713 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/query.rs +458 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/mod.rs +30 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/tokio.rs +68 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/wasm.rs +61 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/mod.rs +82 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/tokio/index.rs +408 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/tokio/mod.rs +267 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/wasm/index.rs +77 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/wasm/mod.rs +165 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/subdir.rs +157 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/gateway/subdir_builder.rs +167 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/lib.rs +78 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/reporter.rs +115 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/sparse/mod.rs +723 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/utils/body.rs +77 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/utils/encoding.rs +83 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/utils/flock.rs +423 -0
- py_rattler-0.12.0/crates/rattler_repodata_gateway/src/utils/mod.rs +109 -0
- py_rattler-0.12.0/crates/rattler_shell/CHANGELOG.md +320 -0
- py_rattler-0.12.0/crates/rattler_shell/Cargo.toml +31 -0
- py_rattler-0.12.0/crates/rattler_shell/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_shell/src/activation.rs +880 -0
- py_rattler-0.12.0/crates/rattler_shell/src/lib.rs +7 -0
- py_rattler-0.12.0/crates/rattler_shell/src/run/mod.rs +78 -0
- py_rattler-0.12.0/crates/rattler_shell/src/shell/mod.rs +1106 -0
- py_rattler-0.12.0/crates/rattler_solve/CHANGELOG.md +405 -0
- py_rattler-0.12.0/crates/rattler_solve/Cargo.toml +55 -0
- py_rattler-0.12.0/crates/rattler_solve/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_solve/benches/bench.rs +97 -0
- py_rattler-0.12.0/crates/rattler_solve/benches/sorting_bench.rs +79 -0
- py_rattler-0.12.0/crates/rattler_solve/src/libsolv_c/wrapper/repo.rs +172 -0
- py_rattler-0.12.0/crates/rattler_solve/src/libsolv_c/wrapper/solver.rs +152 -0
- py_rattler-0.12.0/crates/rattler_solve/src/resolvo/mod.rs +976 -0
- py_rattler-0.12.0/crates/rattler_solve/tests/backends.rs +1676 -0
- py_rattler-0.12.0/crates/rattler_solve/tests/sorting.rs +98 -0
- py_rattler-0.12.0/crates/rattler_virtual_packages/CHANGELOG.md +331 -0
- py_rattler-0.12.0/crates/rattler_virtual_packages/Cargo.toml +28 -0
- py_rattler-0.12.0/crates/rattler_virtual_packages/README.md +123 -0
- py_rattler-0.12.0/crates/rattler_virtual_packages/src/libc.rs +123 -0
- py_rattler-0.12.0/crates/simple_spawn_blocking/CHANGELOG.md +14 -0
- py_rattler-0.12.0/crates/simple_spawn_blocking/Cargo.toml +13 -0
- py_rattler-0.12.0/crates/simple_spawn_blocking/src/lib.rs +8 -0
- py_rattler-0.12.0/py-rattler/.gitignore +79 -0
- py_rattler-0.12.0/py-rattler/Cargo.lock +6609 -0
- py_rattler-0.12.0/py-rattler/Cargo.toml +78 -0
- py_rattler-0.12.0/py-rattler/README.md +123 -0
- py_rattler-0.12.0/py-rattler/docs/index.md +91 -0
- py_rattler-0.12.0/py-rattler/docs/index_.md +3 -0
- py_rattler-0.12.0/py-rattler/examples/cli.py +76 -0
- py_rattler-0.12.0/py-rattler/examples/install_to_prefix.py +65 -0
- py_rattler-0.12.0/py-rattler/mkdocs.yml +194 -0
- py_rattler-0.12.0/py-rattler/pixi.lock +5805 -0
- py_rattler-0.12.0/py-rattler/pixi.toml +86 -0
- py_rattler-0.12.0/py-rattler/rattler/__init__.py +101 -0
- py_rattler-0.12.0/py-rattler/rattler/index/__init__.py +3 -0
- py_rattler-0.12.0/py-rattler/rattler/index/index.py +87 -0
- py_rattler-0.12.0/py-rattler/rattler/install/installer.py +86 -0
- py_rattler-0.12.0/py-rattler/rattler/match_spec/match_spec.py +261 -0
- py_rattler-0.12.0/py-rattler/rattler/package/__init__.py +26 -0
- py_rattler-0.12.0/py-rattler/rattler/package/about_json.py +329 -0
- py_rattler-0.12.0/py-rattler/rattler/package/index_json.py +437 -0
- py_rattler-0.12.0/py-rattler/rattler/package/no_arch_type.py +142 -0
- py_rattler-0.12.0/py-rattler/rattler/package/paths_json.py +696 -0
- py_rattler-0.12.0/py-rattler/rattler/package/run_exports_json.py +268 -0
- py_rattler-0.12.0/py-rattler/rattler/platform/platform.py +194 -0
- py_rattler-0.12.0/py-rattler/rattler/prefix/__init__.py +4 -0
- py_rattler-0.12.0/py-rattler/rattler/prefix/prefix_record.py +210 -0
- py_rattler-0.12.0/py-rattler/rattler/repo_data/gateway.py +265 -0
- py_rattler-0.12.0/py-rattler/rattler/repo_data/package_record.py +941 -0
- py_rattler-0.12.0/py-rattler/rattler/virtual_package/virtual_package.py +201 -0
- py_rattler-0.12.0/py-rattler/src/about_json.rs +218 -0
- py_rattler-0.12.0/py-rattler/src/error.rs +215 -0
- py_rattler-0.12.0/py-rattler/src/index.rs +74 -0
- py_rattler-0.12.0/py-rattler/src/index_json.rs +254 -0
- py_rattler-0.12.0/py-rattler/src/installer.rs +93 -0
- py_rattler-0.12.0/py-rattler/src/lib.rs +233 -0
- py_rattler-0.12.0/py-rattler/src/lock/mod.rs +628 -0
- py_rattler-0.12.0/py-rattler/src/match_spec.rs +146 -0
- py_rattler-0.12.0/py-rattler/src/nameless_match_spec.rs +128 -0
- py_rattler-0.12.0/py-rattler/src/networking/mod.rs +121 -0
- py_rattler-0.12.0/py-rattler/src/package_streaming/mod.rs +82 -0
- py_rattler-0.12.0/py-rattler/src/paths_json.rs +442 -0
- py_rattler-0.12.0/py-rattler/src/prefix_paths.rs +323 -0
- py_rattler-0.12.0/py-rattler/src/record.rs +833 -0
- py_rattler-0.12.0/py-rattler/src/repo_data/gateway.rs +268 -0
- py_rattler-0.12.0/py-rattler/src/repo_data/sparse.rs +77 -0
- py_rattler-0.12.0/py-rattler/src/shell.rs +150 -0
- py_rattler-0.12.0/py-rattler/src/solver.rs +203 -0
- py_rattler-0.12.0/py-rattler/src/version/component.rs +32 -0
- py_rattler-0.12.0/py-rattler/tests/unit/test_index.py +148 -0
- py_rattler-0.12.0/py-rattler/tests/unit/test_install.py +49 -0
- py_rattler-0.12.0/py-rattler/tests/unit/test_package_record.py +49 -0
- py_rattler-0.12.0/rattler/__init__.py +101 -0
- py_rattler-0.12.0/rattler/index/__init__.py +3 -0
- py_rattler-0.12.0/rattler/index/index.py +87 -0
- py_rattler-0.12.0/rattler/install/installer.py +86 -0
- py_rattler-0.12.0/rattler/match_spec/match_spec.py +261 -0
- py_rattler-0.12.0/rattler/package/__init__.py +26 -0
- py_rattler-0.12.0/rattler/package/about_json.py +329 -0
- py_rattler-0.12.0/rattler/package/index_json.py +437 -0
- py_rattler-0.12.0/rattler/package/no_arch_type.py +142 -0
- py_rattler-0.12.0/rattler/package/paths_json.py +696 -0
- py_rattler-0.12.0/rattler/package/run_exports_json.py +268 -0
- py_rattler-0.12.0/rattler/platform/platform.py +194 -0
- py_rattler-0.12.0/rattler/prefix/__init__.py +4 -0
- py_rattler-0.12.0/rattler/prefix/prefix_record.py +210 -0
- py_rattler-0.12.0/rattler/repo_data/gateway.py +265 -0
- py_rattler-0.12.0/rattler/repo_data/package_record.py +941 -0
- py_rattler-0.12.0/rattler/virtual_package/virtual_package.py +201 -0
- py_rattler-0.10.0/Cargo.toml +0 -174
- py_rattler-0.10.0/PKG-INFO +0 -144
- py_rattler-0.10.0/README.md +0 -123
- py_rattler-0.10.0/crates/file_url/CHANGELOG.md +0 -65
- py_rattler-0.10.0/crates/file_url/Cargo.toml +0 -19
- py_rattler-0.10.0/crates/rattler/CHANGELOG.md +0 -358
- py_rattler-0.10.0/crates/rattler/Cargo.toml +0 -67
- py_rattler-0.10.0/crates/rattler/README.md +0 -123
- py_rattler-0.10.0/crates/rattler/src/install/clobber_registry.rs +0 -1357
- py_rattler-0.10.0/crates/rattler/src/install/driver.rs +0 -291
- py_rattler-0.10.0/crates/rattler/src/install/entry_point.rs +0 -230
- py_rattler-0.10.0/crates/rattler/src/install/installer/error.rs +0 -70
- py_rattler-0.10.0/crates/rattler/src/install/installer/indicatif.rs +0 -795
- py_rattler-0.10.0/crates/rattler/src/install/installer/mod.rs +0 -597
- py_rattler-0.10.0/crates/rattler/src/install/link.rs +0 -954
- py_rattler-0.10.0/crates/rattler/src/install/link_script.rs +0 -307
- py_rattler-0.10.0/crates/rattler/src/install/mod.rs +0 -1298
- py_rattler-0.10.0/crates/rattler/src/install/test_utils.rs +0 -158
- py_rattler-0.10.0/crates/rattler/src/install/transaction.rs +0 -242
- py_rattler-0.10.0/crates/rattler/src/install/unlink.rs +0 -534
- py_rattler-0.10.0/crates/rattler_cache/CHANGELOG.md +0 -210
- py_rattler-0.10.0/crates/rattler_cache/Cargo.toml +0 -46
- py_rattler-0.10.0/crates/rattler_cache/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_cache/src/consts.rs +0 -4
- py_rattler-0.10.0/crates/rattler_cache/src/lib.rs +0 -28
- py_rattler-0.10.0/crates/rattler_cache/src/package_cache/cache_key.rs +0 -63
- py_rattler-0.10.0/crates/rattler_cache/src/package_cache/cache_lock.rs +0 -311
- py_rattler-0.10.0/crates/rattler_cache/src/package_cache/mod.rs +0 -863
- py_rattler-0.10.0/crates/rattler_conda_types/CHANGELOG.md +0 -340
- py_rattler-0.10.0/crates/rattler_conda_types/Cargo.toml +0 -68
- py_rattler-0.10.0/crates/rattler_conda_types/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_conda_types/src/channel/mod.rs +0 -817
- py_rattler-0.10.0/crates/rattler_conda_types/src/environment_yaml.rs +0 -202
- py_rattler-0.10.0/crates/rattler_conda_types/src/lib.rs +0 -71
- py_rattler-0.10.0/crates/rattler_conda_types/src/match_spec/mod.rs +0 -824
- py_rattler-0.10.0/crates/rattler_conda_types/src/match_spec/parse.rs +0 -1489
- py_rattler-0.10.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__matchspec_to_string.snap +0 -8
- py_rattler-0.10.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__tests__serialize_matchspec.snap +0 -10
- py_rattler-0.10.0/crates/rattler_conda_types/src/no_arch_type.rs +0 -156
- py_rattler-0.10.0/crates/rattler_conda_types/src/package/about.rs +0 -185
- py_rattler-0.10.0/crates/rattler_conda_types/src/package/index.rs +0 -133
- py_rattler-0.10.0/crates/rattler_conda_types/src/package/paths.rs +0 -348
- py_rattler-0.10.0/crates/rattler_conda_types/src/package/run_exports.rs +0 -86
- py_rattler-0.10.0/crates/rattler_conda_types/src/prefix_record.rs +0 -377
- py_rattler-0.10.0/crates/rattler_conda_types/src/repo_data/mod.rs +0 -705
- py_rattler-0.10.0/crates/rattler_conda_types/src/repo_data/patches.rs +0 -312
- py_rattler-0.10.0/crates/rattler_conda_types/src/version/bump.rs +0 -411
- py_rattler-0.10.0/crates/rattler_conda_types/src/version/mod.rs +0 -1460
- py_rattler-0.10.0/crates/rattler_conda_types/src/version/parse.rs +0 -541
- py_rattler-0.10.0/crates/rattler_conda_types/src/version_spec/version_tree.rs +0 -464
- py_rattler-0.10.0/crates/rattler_digest/CHANGELOG.md +0 -70
- py_rattler-0.10.0/crates/rattler_digest/Cargo.toml +0 -32
- py_rattler-0.10.0/crates/rattler_digest/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_digest/src/lib.rs +0 -229
- py_rattler-0.10.0/crates/rattler_digest/src/serde.rs +0 -141
- py_rattler-0.10.0/crates/rattler_index/CHANGELOG.md +0 -279
- py_rattler-0.10.0/crates/rattler_index/Cargo.toml +0 -25
- py_rattler-0.10.0/crates/rattler_index/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_index/src/lib.rs +0 -213
- py_rattler-0.10.0/crates/rattler_index/tests/test_index.rs +0 -93
- py_rattler-0.10.0/crates/rattler_lock/CHANGELOG.md +0 -287
- py_rattler-0.10.0/crates/rattler_lock/Cargo.toml +0 -35
- py_rattler-0.10.0/crates/rattler_lock/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_lock/src/builder.rs +0 -478
- py_rattler-0.10.0/crates/rattler_lock/src/conda.rs +0 -367
- py_rattler-0.10.0/crates/rattler_lock/src/lib.rs +0 -664
- py_rattler-0.10.0/crates/rattler_lock/src/parse/deserialize.rs +0 -361
- py_rattler-0.10.0/crates/rattler_lock/src/parse/models/v6/conda_package_data.rs +0 -313
- py_rattler-0.10.0/crates/rattler_lock/src/parse/models/v6/mod.rs +0 -5
- py_rattler-0.10.0/crates/rattler_lock/src/parse/serialize.rs +0 -452
- py_rattler-0.10.0/crates/rattler_lock/src/parse/v3.rs +0 -279
- py_rattler-0.10.0/crates/rattler_lock/src/snapshots/rattler_lock__builder__test__merge_records_and_purls.snap +0 -23
- py_rattler-0.10.0/crates/rattler_lock/src/url_or_path.rs +0 -318
- py_rattler-0.10.0/crates/rattler_lock/src/utils/serde/mod.rs +0 -9
- py_rattler-0.10.0/crates/rattler_macros/CHANGELOG.md +0 -62
- py_rattler-0.10.0/crates/rattler_macros/Cargo.toml +0 -26
- py_rattler-0.10.0/crates/rattler_macros/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_networking/CHANGELOG.md +0 -176
- py_rattler-0.10.0/crates/rattler_networking/Cargo.toml +0 -63
- py_rattler-0.10.0/crates/rattler_networking/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_networking/src/authentication_middleware.rs +0 -446
- py_rattler-0.10.0/crates/rattler_networking/src/authentication_storage/backends/file.rs +0 -207
- py_rattler-0.10.0/crates/rattler_networking/src/authentication_storage/backends/mod.rs +0 -6
- py_rattler-0.10.0/crates/rattler_networking/src/authentication_storage/mod.rs +0 -38
- py_rattler-0.10.0/crates/rattler_networking/src/authentication_storage/storage.rs +0 -246
- py_rattler-0.10.0/crates/rattler_networking/src/gcs_middleware.rs +0 -103
- py_rattler-0.10.0/crates/rattler_networking/src/mirror_middleware.rs +0 -310
- py_rattler-0.10.0/crates/rattler_networking/src/oci_middleware.rs +0 -342
- py_rattler-0.10.0/crates/rattler_networking/src/s3_middleware.rs +0 -411
- py_rattler-0.10.0/crates/rattler_networking/tests/integration_test.rs +0 -165
- py_rattler-0.10.0/crates/rattler_package_streaming/CHANGELOG.md +0 -295
- py_rattler-0.10.0/crates/rattler_package_streaming/Cargo.toml +0 -50
- py_rattler-0.10.0/crates/rattler_package_streaming/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_package_streaming/src/lib.rs +0 -90
- py_rattler-0.10.0/crates/rattler_package_streaming/src/read.rs +0 -136
- py_rattler-0.10.0/crates/rattler_package_streaming/src/seek.rs +0 -120
- py_rattler-0.10.0/crates/rattler_package_streaming/src/write.rs +0 -413
- py_rattler-0.10.0/crates/rattler_package_streaming/tests/write.rs +0 -236
- py_rattler-0.10.0/crates/rattler_redaction/CHANGELOG.md +0 -46
- py_rattler-0.10.0/crates/rattler_redaction/Cargo.toml +0 -16
- py_rattler-0.10.0/crates/rattler_redaction/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_repodata_gateway/CHANGELOG.md +0 -329
- py_rattler-0.10.0/crates/rattler_repodata_gateway/Cargo.toml +0 -89
- py_rattler-0.10.0/crates/rattler_repodata_gateway/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/fetch/jlap/mod.rs +0 -974
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/fetch/mod.rs +0 -1708
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/builder.rs +0 -120
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/direct_url_query.rs +0 -193
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/error.rs +0 -117
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/local_subdir.rs +0 -75
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/mod.rs +0 -709
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/query.rs +0 -414
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir.rs +0 -80
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/index.rs +0 -388
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/mod.rs +0 -316
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/subdir.rs +0 -166
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/gateway/subdir_builder.rs +0 -159
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/lib.rs +0 -76
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/reporter.rs +0 -114
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/sparse/mod.rs +0 -704
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/utils/body.rs +0 -76
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/utils/encoding.rs +0 -83
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/utils/flock.rs +0 -425
- py_rattler-0.10.0/crates/rattler_repodata_gateway/src/utils/mod.rs +0 -106
- py_rattler-0.10.0/crates/rattler_shell/CHANGELOG.md +0 -250
- py_rattler-0.10.0/crates/rattler_shell/Cargo.toml +0 -28
- py_rattler-0.10.0/crates/rattler_shell/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_shell/src/activation.rs +0 -806
- py_rattler-0.10.0/crates/rattler_shell/src/lib.rs +0 -8
- py_rattler-0.10.0/crates/rattler_shell/src/run/mod.rs +0 -71
- py_rattler-0.10.0/crates/rattler_shell/src/shell/mod.rs +0 -959
- py_rattler-0.10.0/crates/rattler_solve/CHANGELOG.md +0 -327
- py_rattler-0.10.0/crates/rattler_solve/Cargo.toml +0 -58
- py_rattler-0.10.0/crates/rattler_solve/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_solve/benches/bench.rs +0 -97
- py_rattler-0.10.0/crates/rattler_solve/benches/sorting_bench.rs +0 -79
- py_rattler-0.10.0/crates/rattler_solve/src/libsolv_c/wrapper/repo.rs +0 -172
- py_rattler-0.10.0/crates/rattler_solve/src/libsolv_c/wrapper/solver.rs +0 -152
- py_rattler-0.10.0/crates/rattler_solve/src/resolvo/mod.rs +0 -974
- py_rattler-0.10.0/crates/rattler_solve/tests/backends.rs +0 -1676
- py_rattler-0.10.0/crates/rattler_solve/tests/sorting.rs +0 -98
- py_rattler-0.10.0/crates/rattler_virtual_packages/CHANGELOG.md +0 -265
- py_rattler-0.10.0/crates/rattler_virtual_packages/Cargo.toml +0 -28
- py_rattler-0.10.0/crates/rattler_virtual_packages/README.md +0 -123
- py_rattler-0.10.0/crates/rattler_virtual_packages/src/libc.rs +0 -113
- py_rattler-0.10.0/crates/simple_spawn_blocking/Cargo.toml +0 -13
- py_rattler-0.10.0/crates/simple_spawn_blocking/src/lib.rs +0 -8
- py_rattler-0.10.0/py-rattler/.gitignore +0 -78
- py_rattler-0.10.0/py-rattler/Cargo.lock +0 -5870
- py_rattler-0.10.0/py-rattler/Cargo.toml +0 -79
- py_rattler-0.10.0/py-rattler/README.md +0 -123
- py_rattler-0.10.0/py-rattler/docs/index.md +0 -91
- py_rattler-0.10.0/py-rattler/examples/install_to_prefix.py +0 -65
- py_rattler-0.10.0/py-rattler/mkdocs.yml +0 -190
- py_rattler-0.10.0/py-rattler/pixi.lock +0 -5640
- py_rattler-0.10.0/py-rattler/pixi.toml +0 -84
- py_rattler-0.10.0/py-rattler/rattler/__init__.py +0 -97
- py_rattler-0.10.0/py-rattler/rattler/index/__init__.py +0 -3
- py_rattler-0.10.0/py-rattler/rattler/index/index.py +0 -28
- py_rattler-0.10.0/py-rattler/rattler/install/installer.py +0 -83
- py_rattler-0.10.0/py-rattler/rattler/match_spec/match_spec.py +0 -240
- py_rattler-0.10.0/py-rattler/rattler/package/__init__.py +0 -23
- py_rattler-0.10.0/py-rattler/rattler/package/about_json.py +0 -329
- py_rattler-0.10.0/py-rattler/rattler/package/index_json.py +0 -437
- py_rattler-0.10.0/py-rattler/rattler/package/no_arch_type.py +0 -142
- py_rattler-0.10.0/py-rattler/rattler/package/paths_json.py +0 -696
- py_rattler-0.10.0/py-rattler/rattler/package/run_exports_json.py +0 -268
- py_rattler-0.10.0/py-rattler/rattler/platform/platform.py +0 -191
- py_rattler-0.10.0/py-rattler/rattler/prefix/__init__.py +0 -4
- py_rattler-0.10.0/py-rattler/rattler/prefix/prefix_record.py +0 -192
- py_rattler-0.10.0/py-rattler/rattler/repo_data/gateway.py +0 -265
- py_rattler-0.10.0/py-rattler/rattler/repo_data/package_record.py +0 -931
- py_rattler-0.10.0/py-rattler/rattler/virtual_package/virtual_package.py +0 -199
- py_rattler-0.10.0/py-rattler/src/about_json.rs +0 -189
- py_rattler-0.10.0/py-rattler/src/error.rs +0 -211
- py_rattler-0.10.0/py-rattler/src/index.rs +0 -23
- py_rattler-0.10.0/py-rattler/src/index_json.rs +0 -247
- py_rattler-0.10.0/py-rattler/src/installer.rs +0 -78
- py_rattler-0.10.0/py-rattler/src/lib.rs +0 -243
- py_rattler-0.10.0/py-rattler/src/lock/mod.rs +0 -630
- py_rattler-0.10.0/py-rattler/src/match_spec.rs +0 -137
- py_rattler-0.10.0/py-rattler/src/nameless_match_spec.rs +0 -130
- py_rattler-0.10.0/py-rattler/src/networking/mod.rs +0 -120
- py_rattler-0.10.0/py-rattler/src/package_streaming/mod.rs +0 -82
- py_rattler-0.10.0/py-rattler/src/paths_json.rs +0 -442
- py_rattler-0.10.0/py-rattler/src/prefix_paths.rs +0 -323
- py_rattler-0.10.0/py-rattler/src/record.rs +0 -822
- py_rattler-0.10.0/py-rattler/src/repo_data/gateway.rs +0 -264
- py_rattler-0.10.0/py-rattler/src/repo_data/sparse.rs +0 -77
- py_rattler-0.10.0/py-rattler/src/shell.rs +0 -146
- py_rattler-0.10.0/py-rattler/src/solver.rs +0 -201
- py_rattler-0.10.0/py-rattler/src/version/component.rs +0 -28
- py_rattler-0.10.0/py-rattler/tests/unit/test_index.py +0 -52
- py_rattler-0.10.0/py-rattler/tests/unit/test_install.py +0 -25
- py_rattler-0.10.0/rattler/__init__.py +0 -97
- py_rattler-0.10.0/rattler/index/__init__.py +0 -3
- py_rattler-0.10.0/rattler/index/index.py +0 -28
- py_rattler-0.10.0/rattler/install/installer.py +0 -83
- py_rattler-0.10.0/rattler/match_spec/match_spec.py +0 -240
- py_rattler-0.10.0/rattler/package/__init__.py +0 -23
- py_rattler-0.10.0/rattler/package/about_json.py +0 -329
- py_rattler-0.10.0/rattler/package/index_json.py +0 -437
- py_rattler-0.10.0/rattler/package/no_arch_type.py +0 -142
- py_rattler-0.10.0/rattler/package/paths_json.py +0 -696
- py_rattler-0.10.0/rattler/package/run_exports_json.py +0 -268
- py_rattler-0.10.0/rattler/platform/platform.py +0 -191
- py_rattler-0.10.0/rattler/prefix/__init__.py +0 -4
- py_rattler-0.10.0/rattler/prefix/prefix_record.py +0 -192
- py_rattler-0.10.0/rattler/repo_data/gateway.py +0 -265
- py_rattler-0.10.0/rattler/repo_data/package_record.py +0 -931
- py_rattler-0.10.0/rattler/virtual_package/virtual_package.py +0 -199
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/file_url/.gitignore +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/file_url/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/.gitignore +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/resources/launcher64.exe +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/resources/versions.txt +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/cli/auth.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/cli/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/apple_codesign.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/installer/reporter.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/python.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-2.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-3.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-4.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-5.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-6.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-7.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__entry_point__test__entry_point_script.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__entry_point__test__windows.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__link__test__replace_long_prefix_in_text_file.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__link__test__replace_python_shebang-2.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__link__test__replace_python_shebang.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/install/snapshots/rattler__install__test__prefix_paths.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler/src/range.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_cache/src/package_cache/reporter.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_cache/src/validation.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/benches/parse.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/benches/prefix_record_from_path.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/build_spec/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/build_spec/parse.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/channel/channel_url.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/channel_data.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/explicit_environment_spec.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/generic_virtual_package.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/matcher.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string_Lenient.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string_Strict.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_nameless_from_string_Lenient.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_nameless_from_string_Strict.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__tests__serialize_json_matchspec.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/archive_identifier.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/archive_type.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/entry_point.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/files.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/has_prefix.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/link.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/no_link.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/no_softlink.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/package_metadata.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__extra_field_is_recorded_when_present.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__extra_field_is_skipped.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__reconstruct_about_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__reconstruct_about_json_mamba.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__entry_point__test__entry_point.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__index__test__reconstruct_index_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__index__test__reconstruct_index_json_with_symlinks.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__link__test__link-json__jupyterlab-link.json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__link__test__link-json__setuptools-link.json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__link__test__link-json__tzdata-link.json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__paths_sorted.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__reconstruct_paths_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__reconstruct_paths_json_with_symlinks.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__roundtrip_paths_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__run_exports__test__reconstruct_run_exports_json_with_symlinks.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/package_name.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/parse_mode.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/platform.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/sharded.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__null_values.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__patch_purl.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__patching.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__removing_1.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__removing_2.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__base_url_packages.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__deserialize_no_packages_conda.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__serialize.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__serialize_packages-2.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__serialize_packages.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data/topological_sort.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/repo_data_record.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/run_export.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__deserialize_environment_yaml@asymmetric_vqgan.environment.yaml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__deserialize_environment_yaml@channel_inversion.environment.yaml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__deserialize_environment_yaml@conda_lock_dev.environment.yaml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__deserialize_environment_yaml@mamba_dev_extra.environment.yaml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__deserialize_environment_yaml@variables.environment.yaml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__pip_section.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__explicit_environment_spec__test__explicit-envs__ros-noetic_linux-64.txt.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__explicit_environment_spec__test__explicit-envs__vs2015_runtime_win-64.txt.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__explicit_environment_spec__test__explicit-envs__xtensor_linux-64.txt.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__libsqlite-3_40_0-hcfcfb64_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__menuinst-1_4_19-py311h1ea47a8_1_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__pip-23_0-pyhd8ed1ab_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__pysocks-1_7_1-pyh0701188_6_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__requests-2_28_2-pyhd8ed1ab_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__tk-8_6_12-h8ffe710_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__urllib3-1_26_14-pyhd8ed1ab_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__vc-14_3-hb6edc58_10_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__wheel-0_38_4-pyhd8ed1ab_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__xz-5_2_6-h8d14728_0_json.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/utils/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/utils/path.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/utils/serde.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/utils/url.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/utils/url_with_trailing_slash.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version/flags.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version/segment.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version/with_source.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version_spec/constraint.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version_spec/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version_spec/parse.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_conda_types/src/version_spec/snapshots/rattler_conda_types__version_spec__parse__test__exact_strict.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_digest/src/tokio.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/channel.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/file_format_version.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/hash.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/parse/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/parse/models/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/parse/models/v5/conda_package_data.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/parse/models/v5/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/parse/models/v5/pypi_package_data.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/parse/models/v6/pypi_package_data.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/pypi.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/pypi_indexes.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__packages_for_platform-2.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__packages_for_platform.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v0__numpy-conda-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v0__pypi-matplotlib-conda-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v0__python-conda-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v3__robostack-turtlesim-conda-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__absolute-path-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__numpy-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__path-based-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__pypi-matplotlib-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__python-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__turtlesim-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v5__flat-index-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v5__similar-with-and-without-purl.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__conda-path-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__derived-channel-lock.yml.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/snapshots/rattler_lock__url_or_path__test__order.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/derived_fields.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/serde/match_spec_map_or_vec.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/serde/ordered.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/serde/pep440_map_or_vec.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/serde/timestamp.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/serde/url_or_path.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__file +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__https +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-1.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-2.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-3.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-4.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-5.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-6.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-7.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/01-sorted-enum.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/02-sorted-struct.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/03-out-of-order-enum.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/03-out-of-order-enum.stderr +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/04-out-of-order-struct.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/04-out-of-order-struct.stderr +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_macros/tests/tests.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_networking/src/authentication_storage/authentication.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_networking/src/authentication_storage/backends/keyring.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_networking/src/authentication_storage/backends/netrc.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_networking/src/authentication_storage/backends/snapshots/rattler_networking__authentication_storage__backends__file__tests__file_storage.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_networking/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_networking/src/retry_policies.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/src/fs.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/src/reqwest/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/src/reqwest/tokio.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/src/tokio/async_read.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/src/tokio/fs.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/src/tokio/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/tests/extract.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_package_streaming/tests/resources/ca-certificates-2024.7.4-hbcca054_0.conda +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_redaction/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/fetch/cache/cache_headers.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/fetch/cache/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/fetch/cache/snapshots/rattler_repodata_gateway__fetch__cache__test__parse_repo_data_state.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/fetch/cache/snapshots/rattler_repodata_gateway__fetch__cache__test__parse_repo_data_state_one.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/fetch/cache/snapshots/rattler_repodata_gateway__fetch__cache__test__parse_repo_data_state_two.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/gateway/barrier_cell.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/gateway/channel_config.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/gateway/repo_data.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_repodata_gateway/src/utils/simple_channel_server.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__bash.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__fish.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__xonsh_bash.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__xonsh_xsh.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_bash.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_cmd.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_fish.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_powershell.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_xonsh.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_zsh.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__after_activation.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_append.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_prepend.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_replace.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_append.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_prepend.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_replace.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_append.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_prepend.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_replace.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/input.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/libc_byte_slice.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/output.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/flags.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/keys.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/pool.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/queue.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/repodata.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/solvable.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/solve_goal.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/solve_problem.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/libsolv_c/wrapper/transaction.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/src/resolvo/conda_sorting.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_dummy_repo_install_non_existent.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_python.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_python_numpy.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_quetz.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_tensorboard.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_tensorflow.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_with_error.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_xtensor_xsimd.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__virtual_package_constrains.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__exclude_newer_error.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__issue_717.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__panic_on_constraint.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_extra_depends_conflict_resolvo.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_extra_depends_feature_conflict.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_extra_depends_recursive_feature.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_install_non_existent.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_locked.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_python.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_python_numpy.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_quetz.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_tensorboard.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_tensorflow.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_with_error.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_xtensor_xsimd.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__virtual_package_constrains.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_abess_highest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_certifi_highest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_libgcc-ng_highest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_libuuid_highest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_python_highest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_pytorch_highest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_pytorch_lowest.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_pytorch_lowest_direct.snap +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_virtual_packages/src/cuda.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_virtual_packages/src/lib.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_virtual_packages/src/linux.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_virtual_packages/src/osx.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/rattler_virtual_packages/src/win.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/crates/simple_spawn_blocking/src/tokio.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/build.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/about_json.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/activate.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/activation_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/activation_result.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/activation_variables.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/arch.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/cache_dir_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/channel.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/channel_config.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/client.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/conda_locked_binary_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/conda_locked_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/conda_locked_source_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/detect_virtual_package_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/environment.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/environment_creation_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/fetch_repo_data.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/fetch_repo_data_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/file_mode.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/gateway.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/generic_virtual_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/index_json.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/installer.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/invalid_channel_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/invalid_match_spec_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/invalid_package_name_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/invalid_url_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/invalid_version_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/io_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/link_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/lock_file.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/locked_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/match_spec.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/nameless_match_spec.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/package_hashes.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/package_name.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/package_record.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/parse_arch_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/parse_platform_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/patch_instructions.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/path_modification_behavior.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/path_type.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/paths_entry.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/paths_json.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/platform.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/prefix_paths.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/prefix_placeholder.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/prefix_record.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/pypi_locked_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/repo_data.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/repo_data_record.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/run_exports_json.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/shell.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/solver.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/solver_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/sparse_repo_data.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/stylesheets/extra.css +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/transaction_error.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/version.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/version_with_source.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/docs/virtual_package.md +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/examples/solve_and_install.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/channel/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/channel/channel.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/channel/channel_config.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/channel/channel_priority.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/exceptions.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/explicit_environment/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/explicit_environment/environment.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/install/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/lock/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/lock/channel.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/lock/environment.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/lock/hash.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/lock/lock_file.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/lock/package.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/match_spec/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/match_spec/nameless_match_spec.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/networking/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/networking/client.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/networking/fetch_repo_data.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/networking/middleware.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/package/package_name.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/package_streaming/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/platform/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/platform/arch.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/prefix/prefix_paths.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/py.typed +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/repo_data/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/repo_data/patch_instructions.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/repo_data/record.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/repo_data/repo_data.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/repo_data/sparse.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/shell/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/shell/shell.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/solver/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/solver/solver.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/utils/rattler_version.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/version/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/version/version.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/version/with_source.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/virtual_package/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/rattler/virtual_package/generic.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/channel/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/explicit_environment_spec.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/generic_virtual_package.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/meta.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/networking/cached_repo_data.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/networking/client.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/networking/middleware.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/no_arch_type.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/package_name.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/platform.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/repo_data/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/repo_data/patch_instructions.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/run_exports_json.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/utils.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/version/mod.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/src/virtual_package.rs +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/conftest.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_explicit_environment.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_fetch_repo_data.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_gateway.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_matchspec.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_override.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_package_streaming.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_prefix_record.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_solver.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/py-rattler/tests/unit/test_version.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/pyproject.toml +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/channel/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/channel/channel.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/channel/channel_config.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/channel/channel_priority.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/exceptions.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/explicit_environment/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/explicit_environment/environment.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/install/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/lock/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/lock/channel.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/lock/environment.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/lock/hash.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/lock/lock_file.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/lock/package.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/match_spec/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/match_spec/nameless_match_spec.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/networking/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/networking/client.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/networking/fetch_repo_data.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/networking/middleware.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/package/package_name.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/package_streaming/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/platform/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/platform/arch.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/prefix/prefix_paths.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/py.typed +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/repo_data/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/repo_data/patch_instructions.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/repo_data/record.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/repo_data/repo_data.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/repo_data/sparse.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/shell/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/shell/shell.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/solver/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/solver/solver.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/utils/rattler_version.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/version/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/version/version.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/version/with_source.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/virtual_package/__init__.py +0 -0
- {py_rattler-0.10.0 → py_rattler-0.12.0}/rattler/virtual_package/generic.py +0 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
[workspace]
|
|
2
|
+
members = ["crates/*", "tools/*"]
|
|
3
|
+
resolver = "2"
|
|
4
|
+
|
|
5
|
+
# See: https://docs.rs/insta/latest/insta/#optional-faster-runs
|
|
6
|
+
[profile.dev.package.insta]
|
|
7
|
+
opt-level = 3
|
|
8
|
+
|
|
9
|
+
[workspace.package]
|
|
10
|
+
categories = ["development-tools"]
|
|
11
|
+
homepage = "https://github.com/conda/rattler"
|
|
12
|
+
repository = "https://github.com/conda/rattler"
|
|
13
|
+
license = "BSD-3-Clause"
|
|
14
|
+
edition = "2021"
|
|
15
|
+
readme = "README.md"
|
|
16
|
+
|
|
17
|
+
[workspace.metadata.release]
|
|
18
|
+
allow-branch = ["main"]
|
|
19
|
+
consolidate-commits = true
|
|
20
|
+
tag-prefix = ""
|
|
21
|
+
|
|
22
|
+
[profile.bench]
|
|
23
|
+
lto = true
|
|
24
|
+
|
|
25
|
+
[workspace.dependencies]
|
|
26
|
+
anyhow = "1.0.98"
|
|
27
|
+
archspec = "0.1.3"
|
|
28
|
+
assert_matches = "1.5.0"
|
|
29
|
+
async-compression = { version = "0.4.23", features = [
|
|
30
|
+
"gzip",
|
|
31
|
+
"tokio",
|
|
32
|
+
"bzip2",
|
|
33
|
+
"zstd",
|
|
34
|
+
] }
|
|
35
|
+
async-fd-lock = "0.2.0"
|
|
36
|
+
fs4 = "0.13.1"
|
|
37
|
+
async-trait = "0.1.88"
|
|
38
|
+
axum = { version = "0.8.4", default-features = false, features = [
|
|
39
|
+
"tokio",
|
|
40
|
+
"http1",
|
|
41
|
+
] }
|
|
42
|
+
base64 = "0.22.1"
|
|
43
|
+
bindgen = "0.71.1"
|
|
44
|
+
blake2 = "0.10.6"
|
|
45
|
+
bytes = "1.10.1"
|
|
46
|
+
bzip2 = "0.5.2"
|
|
47
|
+
cache_control = "0.2.0"
|
|
48
|
+
cfg-if = "1.0"
|
|
49
|
+
chrono = { version = "0.4.41", default-features = false, features = [
|
|
50
|
+
"std",
|
|
51
|
+
"serde",
|
|
52
|
+
"alloc",
|
|
53
|
+
] }
|
|
54
|
+
clap = { version = "4.5.38", features = ["derive"] }
|
|
55
|
+
clap-verbosity-flag = "3.0.2"
|
|
56
|
+
cmake = "0.1.54"
|
|
57
|
+
console = { version = "0.15.11", features = ["windows-console-colors"] }
|
|
58
|
+
criterion = "0.5"
|
|
59
|
+
dashmap = "6.1.0"
|
|
60
|
+
difference = "2.0.0"
|
|
61
|
+
digest = "0.10.7"
|
|
62
|
+
dirs = "6.0.0"
|
|
63
|
+
dunce = "1.0.5"
|
|
64
|
+
enum_dispatch = "0.3.13"
|
|
65
|
+
fs-err = { version = "3.1.0" }
|
|
66
|
+
fslock = "0.2.1"
|
|
67
|
+
futures = "0.3.31"
|
|
68
|
+
futures-util = "0.3.31"
|
|
69
|
+
fxhash = "0.2.1"
|
|
70
|
+
# lots of other crates are still stuck on older version which breaks `deserialize`
|
|
71
|
+
generic-array = "0.14.7"
|
|
72
|
+
getrandom = { version = "0.3.3", default-features = false }
|
|
73
|
+
glob = "0.3.2"
|
|
74
|
+
google-cloud-auth = { version = "0.20.0", default-features = false }
|
|
75
|
+
aws-config = { version = "=1.5.18", default-features = false, features = [
|
|
76
|
+
"rt-tokio",
|
|
77
|
+
"rustls",
|
|
78
|
+
"sso",
|
|
79
|
+
"credentials-process",
|
|
80
|
+
] }
|
|
81
|
+
aws-sdk-s3 = { version = "1.85.0", default-features = false, features = [
|
|
82
|
+
"rt-tokio",
|
|
83
|
+
"rustls",
|
|
84
|
+
"sigv4a",
|
|
85
|
+
] }
|
|
86
|
+
hex = "0.4.3"
|
|
87
|
+
hex-literal = "1.0.0"
|
|
88
|
+
http = "1.3"
|
|
89
|
+
http-cache-semantics = "2.1.0"
|
|
90
|
+
humansize = "2.1.3"
|
|
91
|
+
humantime = "2.2.0"
|
|
92
|
+
indexmap = "2.9.0"
|
|
93
|
+
indicatif = "0.17.11"
|
|
94
|
+
insta = { version = "1.43.1" }
|
|
95
|
+
itertools = "0.14.0"
|
|
96
|
+
json-patch = "4.0.0"
|
|
97
|
+
keyring = "3.6.2"
|
|
98
|
+
lazy-regex = "3.4.1"
|
|
99
|
+
libc = { version = "0.2" }
|
|
100
|
+
libloading = "0.8.7"
|
|
101
|
+
libz-sys = { version = "1.1.22", default-features = false }
|
|
102
|
+
md-5 = "0.10.6"
|
|
103
|
+
memchr = "2.7.4"
|
|
104
|
+
memmap2 = "0.9.5"
|
|
105
|
+
netrc-rs = "0.1.2"
|
|
106
|
+
nom = "7.1.3"
|
|
107
|
+
num_cpus = "1.16.0"
|
|
108
|
+
opendal = { version = "0.53.2", default-features = false }
|
|
109
|
+
once_cell = "1.21.3"
|
|
110
|
+
parking_lot = "0.12.3"
|
|
111
|
+
pathdiff = "0.2.3"
|
|
112
|
+
pep440_rs = { version = "0.7.3" }
|
|
113
|
+
pep508_rs = { version = "0.9.2" }
|
|
114
|
+
percent-encoding = "2.3.1"
|
|
115
|
+
pin-project-lite = "0.2.16"
|
|
116
|
+
plist = "1"
|
|
117
|
+
purl = { version = "0.1.6", features = ["serde"] }
|
|
118
|
+
quote = "1.0.40"
|
|
119
|
+
rand = "0.9.1"
|
|
120
|
+
rayon = "1.10.0"
|
|
121
|
+
reflink-copy = "0.1.26"
|
|
122
|
+
regex = "1.11.1"
|
|
123
|
+
reqwest = { version = "0.12.15", default-features = false }
|
|
124
|
+
reqwest-middleware = "0.4.2"
|
|
125
|
+
reqwest-retry = "0.7.0"
|
|
126
|
+
resolvo = { version = "0.9.1" }
|
|
127
|
+
# hold back at 0.4.0 until `reqwest-retry` is updated
|
|
128
|
+
retry-policies = { version = "0.4.0", default-features = false }
|
|
129
|
+
rmp-serde = { version = "1.3.0" }
|
|
130
|
+
rstest = { version = "0.25.0" }
|
|
131
|
+
rstest_reuse = "0.7.0"
|
|
132
|
+
simd-json = { version = "0.15.1", features = ["serde_impl"] }
|
|
133
|
+
self_cell = "1.2.0"
|
|
134
|
+
serde = { version = "1.0.219" }
|
|
135
|
+
serde_json = { version = "1.0.140" }
|
|
136
|
+
serde_repr = "0.1"
|
|
137
|
+
serde-value = "0.7.0"
|
|
138
|
+
serde_with = "3.12.0"
|
|
139
|
+
serde_yaml = "0.9.34"
|
|
140
|
+
serde-untagged = "0.1.7"
|
|
141
|
+
sha2 = "0.10.9"
|
|
142
|
+
shlex = "1.3.0"
|
|
143
|
+
similar-asserts = "1.7.0"
|
|
144
|
+
smallvec = { version = "1.15.0", features = [
|
|
145
|
+
"serde",
|
|
146
|
+
"const_new",
|
|
147
|
+
"const_generics",
|
|
148
|
+
"union",
|
|
149
|
+
] }
|
|
150
|
+
strum = { version = "0.27.1", features = ["derive"] }
|
|
151
|
+
superslice = "1.0.0"
|
|
152
|
+
syn = "2.0.101"
|
|
153
|
+
sysinfo = "0.35.1"
|
|
154
|
+
tar = "0.4.44"
|
|
155
|
+
tempdir = "0.3.7"
|
|
156
|
+
tempfile = "3.20.0"
|
|
157
|
+
temp-env = { version = "0.3.6", features = ["async_closure"] }
|
|
158
|
+
test-log = "0.2.17"
|
|
159
|
+
thiserror = "2.0"
|
|
160
|
+
tokio = { version = "1.45.0", default-features = false }
|
|
161
|
+
tokio-stream = "0.1.17"
|
|
162
|
+
tokio-util = "0.7.15"
|
|
163
|
+
tower = { version = "0.5.2", default-features = false }
|
|
164
|
+
tower-http = { version = "0.6.4", default-features = false }
|
|
165
|
+
tracing = "0.1.41"
|
|
166
|
+
tracing-subscriber = { version = "0.3.19", default-features = false }
|
|
167
|
+
tracing-test = { version = "0.2.5" }
|
|
168
|
+
trybuild = { version = "1.0.105" }
|
|
169
|
+
typed-path = { version = "0.11.0" }
|
|
170
|
+
url = { version = "2.5.4" }
|
|
171
|
+
unicode-normalization = "0.1.24"
|
|
172
|
+
uuid = { version = "1.16.0", default-features = false }
|
|
173
|
+
walkdir = "2.5.0"
|
|
174
|
+
wasmtimer = "0.4.1"
|
|
175
|
+
which = "7.0.3"
|
|
176
|
+
windows-sys = { version = "0.59.0", default-features = false }
|
|
177
|
+
winver = { version = "1.0.0" }
|
|
178
|
+
zip = { version = "3.0.0", default-features = false }
|
|
179
|
+
zstd = { version = "0.13.3", default-features = false }
|
|
180
|
+
|
|
181
|
+
# These are the all the crates defined in the workspace. We pin all of them together because they are always updated in tendem.
|
|
182
|
+
file_url = { path = "crates/file_url", version = "=0.2.5", default-features = false }
|
|
183
|
+
rattler = { path = "crates/rattler", version = "=0.33.7", default-features = false }
|
|
184
|
+
rattler_cache = { path = "crates/rattler_cache", version = "=0.3.19", default-features = false }
|
|
185
|
+
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.34.0", default-features = false }
|
|
186
|
+
rattler_digest = { path = "crates/rattler_digest", version = "=1.1.2", default-features = false }
|
|
187
|
+
rattler_index = { path = "crates/rattler_index", version = "=0.22.7", default-features = false }
|
|
188
|
+
rattler_libsolv_c = { path = "crates/rattler_libsolv_c", version = "=1.2.1", default-features = false }
|
|
189
|
+
rattler_lock = { path = "crates/rattler_lock", version = "=0.23.4", default-features = false }
|
|
190
|
+
rattler_macros = { path = "crates/rattler_macros", version = "=1.0.9", default-features = false }
|
|
191
|
+
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.9", default-features = false }
|
|
192
|
+
rattler_networking = { path = "crates/rattler_networking", version = "=0.24.0", default-features = false }
|
|
193
|
+
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.1", default-features = false }
|
|
194
|
+
rattler_redaction = { path = "crates/rattler_redaction", version = "=0.1.10", default-features = false }
|
|
195
|
+
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.22.38", default-features = false }
|
|
196
|
+
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.22.7", default-features = false }
|
|
197
|
+
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.1.8", default-features = false }
|
|
198
|
+
rattler_shell = { path = "crates/rattler_shell", version = "=0.23.1", default-features = false }
|
|
199
|
+
rattler_solve = { path = "crates/rattler_solve", version = "=2.0.0", default-features = false }
|
|
200
|
+
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=2.0.12", default-features = false }
|
|
201
|
+
|
|
202
|
+
# This is also a rattler crate, but we only pin it to minor version
|
|
203
|
+
simple_spawn_blocking = { path = "crates/simple_spawn_blocking", version = "1.1", default-features = false }
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: py-rattler
|
|
3
|
+
Version: 0.12.0
|
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
7
|
+
Classifier: Programming Language :: Rust
|
|
8
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
9
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
10
|
+
Classifier: Typing :: Typed
|
|
11
|
+
Summary: A blazing fast library to work with the conda ecosystem
|
|
12
|
+
Author-email: Bas Zalmstra <zalmstra.bas@gmail.com>, Tarun Pratap Singh <pratapsinghtarun9@gmail.com>
|
|
13
|
+
License: BSD-3-Clause
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
16
|
+
Project-URL: Homepage, https://github.com/conda/rattler
|
|
17
|
+
Project-URL: Documentation, https://conda.github.io/rattler/py-rattler/
|
|
18
|
+
Project-URL: Repository, https://github.com/conda/rattler
|
|
19
|
+
Project-URL: Issues, https://github.com/conda/rattler/labels/python-bindings
|
|
20
|
+
|
|
21
|
+
<a href="https://github.com/conda/rattler/">
|
|
22
|
+
<picture>
|
|
23
|
+
<source srcset="https://github.com/user-attachments/assets/6f3f05bc-6363-4974-9517-fe5c0fcffd1a" type="image/jpeg">
|
|
24
|
+
<source srcset="https://github.com/user-attachments/assets/dc30403d-6392-460a-b923-986c2164ef79" type="image/webp">
|
|
25
|
+
<source srcset="https://github.com/user-attachments/assets/bfd64756-061d-49f5-af4e-388743bdb855" type="image/png">
|
|
26
|
+
<img src="https://github.com/user-attachments/assets/bfd64756-061d-49f5-af4e-388743bdb855" alt="banner">
|
|
27
|
+
</picture>
|
|
28
|
+
</a>
|
|
29
|
+
|
|
30
|
+
# Rattler: Rust crates for fast handling of conda packages
|
|
31
|
+
|
|
32
|
+
![License][license-badge]
|
|
33
|
+
[![Build Status][build-badge]][build]
|
|
34
|
+
[![Project Chat][chat-badge]][chat-url]
|
|
35
|
+
[![Pixi Badge][pixi-badge]][pixi-url]
|
|
36
|
+
[![docs main][docs-main-badge]][docs-main]
|
|
37
|
+
[![python docs main][py-docs-main-badge]][py-docs-main]
|
|
38
|
+
|
|
39
|
+
[license-badge]: https://img.shields.io/badge/license-BSD--3--Clause-blue?style=flat-square
|
|
40
|
+
[build-badge]: https://img.shields.io/github/actions/workflow/status/conda/rattler/rust-compile.yml?style=flat-square&branch=main
|
|
41
|
+
[build]: https://github.com/conda/rattler/actions
|
|
42
|
+
[chat-badge]: https://img.shields.io/discord/1082332781146800168.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2&style=flat-square
|
|
43
|
+
[chat-url]: https://discord.gg/kKV8ZxyzY4
|
|
44
|
+
[docs-main-badge]: https://img.shields.io/badge/rust_docs-main-yellow.svg?style=flat-square
|
|
45
|
+
[docs-main]: https://conda.github.io/rattler
|
|
46
|
+
[py-docs-main-badge]: https://img.shields.io/badge/python_docs-main-yellow.svg?style=flat-square
|
|
47
|
+
[py-docs-main]: https://conda.github.io/rattler/py-rattler
|
|
48
|
+
[pixi-badge]:https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json&style=flat-square
|
|
49
|
+
[pixi-url]: https://pixi.sh
|
|
50
|
+
|
|
51
|
+
Rattler is a library that provides common functionality used within the conda ecosystem ([what is conda & conda-forge?](#what-is-conda--conda-forge)).
|
|
52
|
+
The goal of the library is to enable programs and other libraries to easily interact with the conda ecosystem without being dependent on Python.
|
|
53
|
+
Its primary use case is as a library that you can use to provide conda related workflows in your own tools.
|
|
54
|
+
|
|
55
|
+
Rattler is written in Rust and tries to provide a clean API to its functionalities (see: [Components](#components)).
|
|
56
|
+
With the primary goal in mind we aim to provide bindings to different languages to make it easy to integrate Rattler in non-rust projects.
|
|
57
|
+
|
|
58
|
+
Rattler is actively used by [pixi](https://github.com/prefix-dev/pixi), [rattler-build](https://github.com/prefix-dev/rattler-build), and the https://prefix.dev backend.
|
|
59
|
+
|
|
60
|
+
## Showcase
|
|
61
|
+
|
|
62
|
+
This repository also contains a binary (use `cargo run` to try) that shows some of the capabilities of the library.
|
|
63
|
+
This is an example of installing an environment containing `cowpy` and all its dependencies _from scratch_ (including Python!):
|
|
64
|
+
|
|
65
|
+

|
|
66
|
+
|
|
67
|
+
## Give it a try!
|
|
68
|
+
|
|
69
|
+
Before you begin, make sure you have the following prerequisites:
|
|
70
|
+
- A recent version of [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
71
|
+
- A recent version of [pixi](https://github.com/prefix-dev/pixi)
|
|
72
|
+
|
|
73
|
+
Follow these steps to clone, compile, and run the rattler project:
|
|
74
|
+
```shell
|
|
75
|
+
# Clone the rattler repository along with its submodules:
|
|
76
|
+
git clone --recursive https://github.com/conda/rattler.git
|
|
77
|
+
cd rattler
|
|
78
|
+
|
|
79
|
+
# Compile and execute rattler to create a JupyterLab instance:
|
|
80
|
+
pixi run rattler create jupyterlab
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
The above command will execute the `rattler` executable in release mode.
|
|
84
|
+
It will download and install an environment into the `.prefix` folder that contains [`jupyterlab`](https://jupyterlab.readthedocs.io/en/stable/getting_started/overview.html) and all the dependencies required to run it (like `python`)
|
|
85
|
+
|
|
86
|
+
Run the following command to start jupyterlab:
|
|
87
|
+
|
|
88
|
+
```shell
|
|
89
|
+
# on windows
|
|
90
|
+
.\.prefix\Scripts\jupyter-lab.exe
|
|
91
|
+
|
|
92
|
+
# on linux or macOS
|
|
93
|
+
./.prefix/bin/jupyter-lab
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Voila!
|
|
97
|
+
You have a working installation of jupyterlab installed on your system!
|
|
98
|
+
You can of course install any package you want this way.
|
|
99
|
+
Try it!
|
|
100
|
+
|
|
101
|
+
## Contributing 😍
|
|
102
|
+
|
|
103
|
+
We would love to have you contribute!
|
|
104
|
+
See the CONTRIBUTION.md for more info. For questions, requests or a casual chat, we are very active on our discord server.
|
|
105
|
+
You can [join our discord server via this link][chat-url].
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
## Components
|
|
109
|
+
|
|
110
|
+
Rattler consists of several crates that provide different functionalities.
|
|
111
|
+
|
|
112
|
+
* **rattler_conda_types**: foundational types for all datastructures used within the conda eco-system.
|
|
113
|
+
* **rattler_package_streaming**: provides functionality to download, extract and create conda package archives.
|
|
114
|
+
* **rattler_repodata_gateway**: downloads, reads and processes information about existing conda packages from an index.
|
|
115
|
+
* **rattler_shell**: code to activate an existing environment and run programs in it.
|
|
116
|
+
* **rattler_solve**: a backend agnostic library to solve the package satisfiability problem.
|
|
117
|
+
* **rattler_virtual_packages**: a crate to detect system capabilities.
|
|
118
|
+
* **rattler_index**: create local conda channels from local packages.
|
|
119
|
+
* **rattler**: functionality to create complete environments from scratch using the crates above.
|
|
120
|
+
* **rattler-lock**: a library to create and parse lockfiles for conda environments.
|
|
121
|
+
* **rattler-networking**: common functionality for networking, like authentication, mirroring and more.
|
|
122
|
+
* **rattler-bin**: an example of a package manager using all the crates above (see: [showcase](#showcase))
|
|
123
|
+
|
|
124
|
+
You can find these crates in the `crates` folder.
|
|
125
|
+
|
|
126
|
+
Additionally, we provide Python bindings for most of the functionalities provided by the above crates.
|
|
127
|
+
A python package `py-rattler` is available on [conda-forge](https://prefix.dev/channels/conda-forge/packages/py-rattler) and [PyPI](https://pypi.org/project/py-rattler/).
|
|
128
|
+
Documentation for the python bindings can be found [here](https://conda.github.io/rattler/py-rattler).
|
|
129
|
+
|
|
130
|
+
## What is conda & conda-forge?
|
|
131
|
+
|
|
132
|
+
The conda ecosystem provides **cross-platform**, **binary** packages that you can use with **any programming language**.
|
|
133
|
+
`conda` is an open-source package management system and environment management system that can install and manage multiple versions of software packages and their dependencies.
|
|
134
|
+
`conda` is written in Python.
|
|
135
|
+
The aim of Rattler is to provide all functionality required to work with the conda ecosystem from Rust.
|
|
136
|
+
Rattler is not a reimplementation of `conda`.
|
|
137
|
+
`conda` is a package management tool.
|
|
138
|
+
Rattler is a _library_ to work with the conda ecosystem from different languages and applications.
|
|
139
|
+
For example, it powers the backend of https://prefix.dev.
|
|
140
|
+
|
|
141
|
+
`conda-forge` is a community-driven effort to bring new and existing software into the conda ecosystem.
|
|
142
|
+
It provides _tens-of-thousands of up-to-date_ packages that are maintained by a community of contributors.
|
|
143
|
+
For an overview of available packages see https://prefix.dev.
|
|
144
|
+
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
<a href="https://github.com/conda/rattler/">
|
|
2
|
+
<picture>
|
|
3
|
+
<source srcset="https://github.com/user-attachments/assets/6f3f05bc-6363-4974-9517-fe5c0fcffd1a" type="image/jpeg">
|
|
4
|
+
<source srcset="https://github.com/user-attachments/assets/dc30403d-6392-460a-b923-986c2164ef79" type="image/webp">
|
|
5
|
+
<source srcset="https://github.com/user-attachments/assets/bfd64756-061d-49f5-af4e-388743bdb855" type="image/png">
|
|
6
|
+
<img src="https://github.com/user-attachments/assets/bfd64756-061d-49f5-af4e-388743bdb855" alt="banner">
|
|
7
|
+
</picture>
|
|
8
|
+
</a>
|
|
9
|
+
|
|
10
|
+
# Rattler: Rust crates for fast handling of conda packages
|
|
11
|
+
|
|
12
|
+
![License][license-badge]
|
|
13
|
+
[![Build Status][build-badge]][build]
|
|
14
|
+
[![Project Chat][chat-badge]][chat-url]
|
|
15
|
+
[![Pixi Badge][pixi-badge]][pixi-url]
|
|
16
|
+
[![docs main][docs-main-badge]][docs-main]
|
|
17
|
+
[![python docs main][py-docs-main-badge]][py-docs-main]
|
|
18
|
+
|
|
19
|
+
[license-badge]: https://img.shields.io/badge/license-BSD--3--Clause-blue?style=flat-square
|
|
20
|
+
[build-badge]: https://img.shields.io/github/actions/workflow/status/conda/rattler/rust-compile.yml?style=flat-square&branch=main
|
|
21
|
+
[build]: https://github.com/conda/rattler/actions
|
|
22
|
+
[chat-badge]: https://img.shields.io/discord/1082332781146800168.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2&style=flat-square
|
|
23
|
+
[chat-url]: https://discord.gg/kKV8ZxyzY4
|
|
24
|
+
[docs-main-badge]: https://img.shields.io/badge/rust_docs-main-yellow.svg?style=flat-square
|
|
25
|
+
[docs-main]: https://conda.github.io/rattler
|
|
26
|
+
[py-docs-main-badge]: https://img.shields.io/badge/python_docs-main-yellow.svg?style=flat-square
|
|
27
|
+
[py-docs-main]: https://conda.github.io/rattler/py-rattler
|
|
28
|
+
[pixi-badge]:https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json&style=flat-square
|
|
29
|
+
[pixi-url]: https://pixi.sh
|
|
30
|
+
|
|
31
|
+
Rattler is a library that provides common functionality used within the conda ecosystem ([what is conda & conda-forge?](#what-is-conda--conda-forge)).
|
|
32
|
+
The goal of the library is to enable programs and other libraries to easily interact with the conda ecosystem without being dependent on Python.
|
|
33
|
+
Its primary use case is as a library that you can use to provide conda related workflows in your own tools.
|
|
34
|
+
|
|
35
|
+
Rattler is written in Rust and tries to provide a clean API to its functionalities (see: [Components](#components)).
|
|
36
|
+
With the primary goal in mind we aim to provide bindings to different languages to make it easy to integrate Rattler in non-rust projects.
|
|
37
|
+
|
|
38
|
+
Rattler is actively used by [pixi](https://github.com/prefix-dev/pixi), [rattler-build](https://github.com/prefix-dev/rattler-build), and the https://prefix.dev backend.
|
|
39
|
+
|
|
40
|
+
## Showcase
|
|
41
|
+
|
|
42
|
+
This repository also contains a binary (use `cargo run` to try) that shows some of the capabilities of the library.
|
|
43
|
+
This is an example of installing an environment containing `cowpy` and all its dependencies _from scratch_ (including Python!):
|
|
44
|
+
|
|
45
|
+

|
|
46
|
+
|
|
47
|
+
## Give it a try!
|
|
48
|
+
|
|
49
|
+
Before you begin, make sure you have the following prerequisites:
|
|
50
|
+
- A recent version of [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
51
|
+
- A recent version of [pixi](https://github.com/prefix-dev/pixi)
|
|
52
|
+
|
|
53
|
+
Follow these steps to clone, compile, and run the rattler project:
|
|
54
|
+
```shell
|
|
55
|
+
# Clone the rattler repository along with its submodules:
|
|
56
|
+
git clone --recursive https://github.com/conda/rattler.git
|
|
57
|
+
cd rattler
|
|
58
|
+
|
|
59
|
+
# Compile and execute rattler to create a JupyterLab instance:
|
|
60
|
+
pixi run rattler create jupyterlab
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
The above command will execute the `rattler` executable in release mode.
|
|
64
|
+
It will download and install an environment into the `.prefix` folder that contains [`jupyterlab`](https://jupyterlab.readthedocs.io/en/stable/getting_started/overview.html) and all the dependencies required to run it (like `python`)
|
|
65
|
+
|
|
66
|
+
Run the following command to start jupyterlab:
|
|
67
|
+
|
|
68
|
+
```shell
|
|
69
|
+
# on windows
|
|
70
|
+
.\.prefix\Scripts\jupyter-lab.exe
|
|
71
|
+
|
|
72
|
+
# on linux or macOS
|
|
73
|
+
./.prefix/bin/jupyter-lab
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Voila!
|
|
77
|
+
You have a working installation of jupyterlab installed on your system!
|
|
78
|
+
You can of course install any package you want this way.
|
|
79
|
+
Try it!
|
|
80
|
+
|
|
81
|
+
## Contributing 😍
|
|
82
|
+
|
|
83
|
+
We would love to have you contribute!
|
|
84
|
+
See the CONTRIBUTION.md for more info. For questions, requests or a casual chat, we are very active on our discord server.
|
|
85
|
+
You can [join our discord server via this link][chat-url].
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## Components
|
|
89
|
+
|
|
90
|
+
Rattler consists of several crates that provide different functionalities.
|
|
91
|
+
|
|
92
|
+
* **rattler_conda_types**: foundational types for all datastructures used within the conda eco-system.
|
|
93
|
+
* **rattler_package_streaming**: provides functionality to download, extract and create conda package archives.
|
|
94
|
+
* **rattler_repodata_gateway**: downloads, reads and processes information about existing conda packages from an index.
|
|
95
|
+
* **rattler_shell**: code to activate an existing environment and run programs in it.
|
|
96
|
+
* **rattler_solve**: a backend agnostic library to solve the package satisfiability problem.
|
|
97
|
+
* **rattler_virtual_packages**: a crate to detect system capabilities.
|
|
98
|
+
* **rattler_index**: create local conda channels from local packages.
|
|
99
|
+
* **rattler**: functionality to create complete environments from scratch using the crates above.
|
|
100
|
+
* **rattler-lock**: a library to create and parse lockfiles for conda environments.
|
|
101
|
+
* **rattler-networking**: common functionality for networking, like authentication, mirroring and more.
|
|
102
|
+
* **rattler-bin**: an example of a package manager using all the crates above (see: [showcase](#showcase))
|
|
103
|
+
|
|
104
|
+
You can find these crates in the `crates` folder.
|
|
105
|
+
|
|
106
|
+
Additionally, we provide Python bindings for most of the functionalities provided by the above crates.
|
|
107
|
+
A python package `py-rattler` is available on [conda-forge](https://prefix.dev/channels/conda-forge/packages/py-rattler) and [PyPI](https://pypi.org/project/py-rattler/).
|
|
108
|
+
Documentation for the python bindings can be found [here](https://conda.github.io/rattler/py-rattler).
|
|
109
|
+
|
|
110
|
+
## What is conda & conda-forge?
|
|
111
|
+
|
|
112
|
+
The conda ecosystem provides **cross-platform**, **binary** packages that you can use with **any programming language**.
|
|
113
|
+
`conda` is an open-source package management system and environment management system that can install and manage multiple versions of software packages and their dependencies.
|
|
114
|
+
`conda` is written in Python.
|
|
115
|
+
The aim of Rattler is to provide all functionality required to work with the conda ecosystem from Rust.
|
|
116
|
+
Rattler is not a reimplementation of `conda`.
|
|
117
|
+
`conda` is a package management tool.
|
|
118
|
+
Rattler is a _library_ to work with the conda ecosystem from different languages and applications.
|
|
119
|
+
For example, it powers the backend of https://prefix.dev.
|
|
120
|
+
|
|
121
|
+
`conda-forge` is a community-driven effort to bring new and existing software into the conda ecosystem.
|
|
122
|
+
It provides _tens-of-thousands of up-to-date_ packages that are maintained by a community of contributors.
|
|
123
|
+
For an overview of available packages see https://prefix.dev.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.2.5](https://github.com/conda/rattler/compare/file_url-v0.2.4...file_url-v0.2.5) - 2025-05-16
|
|
10
|
+
|
|
11
|
+
### Other
|
|
12
|
+
|
|
13
|
+
- update dependencies ([#1126](https://github.com/conda/rattler/pull/1126))
|
|
14
|
+
|
|
15
|
+
## [0.2.4](https://github.com/conda/rattler/compare/file_url-v0.2.3...file_url-v0.2.4) - 2025-04-04
|
|
16
|
+
|
|
17
|
+
### Other
|
|
18
|
+
|
|
19
|
+
- update Cargo.toml dependencies
|
|
20
|
+
|
|
21
|
+
## [0.2.3](https://github.com/conda/rattler/compare/file_url-v0.2.2...file_url-v0.2.3) - 2025-02-18
|
|
22
|
+
|
|
23
|
+
### Other
|
|
24
|
+
|
|
25
|
+
- update dependencies (#1069)
|
|
26
|
+
|
|
27
|
+
## [0.2.2](https://github.com/conda/rattler/compare/file_url-v0.2.1...file_url-v0.2.2) - 2025-01-08
|
|
28
|
+
|
|
29
|
+
### Other
|
|
30
|
+
|
|
31
|
+
- update dependencies (#1009)
|
|
32
|
+
|
|
33
|
+
## [0.2.1](https://github.com/conda/rattler/compare/file_url-v0.2.0...file_url-v0.2.1) - 2024-12-17
|
|
34
|
+
|
|
35
|
+
### Other
|
|
36
|
+
|
|
37
|
+
- update everything (#987)
|
|
38
|
+
|
|
39
|
+
## [0.2.0](https://github.com/conda/rattler/compare/file_url-v0.1.7...file_url-v0.2.0) - 2024-11-30
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
|
|
43
|
+
- merge pixi-build branch ([#950](https://github.com/conda/rattler/pull/950))
|
|
44
|
+
|
|
45
|
+
## [0.1.7](https://github.com/conda/rattler/compare/file_url-v0.1.6...file_url-v0.1.7) - 2024-11-04
|
|
46
|
+
|
|
47
|
+
### Other
|
|
48
|
+
|
|
49
|
+
- update all versions of packages ([#886](https://github.com/conda/rattler/pull/886))
|
|
50
|
+
|
|
51
|
+
## [0.1.6](https://github.com/conda/rattler/compare/file_url-v0.1.5...file_url-v0.1.6) - 2024-10-21
|
|
52
|
+
|
|
53
|
+
### Other
|
|
54
|
+
|
|
55
|
+
- update Cargo.toml dependencies
|
|
56
|
+
|
|
57
|
+
## [0.1.5](https://github.com/conda/rattler/compare/file_url-v0.1.4...file_url-v0.1.5) - 2024-09-05
|
|
58
|
+
|
|
59
|
+
### Fixed
|
|
60
|
+
- typos ([#849](https://github.com/conda/rattler/pull/849))
|
|
61
|
+
|
|
62
|
+
## [0.1.4](https://github.com/conda/rattler/compare/file_url-v0.1.3...file_url-v0.1.4) - 2024-08-15
|
|
63
|
+
|
|
64
|
+
### Fixed
|
|
65
|
+
- use conda-incubator
|
|
66
|
+
|
|
67
|
+
### Other
|
|
68
|
+
- change links from conda-incubator to conda ([#813](https://github.com/conda/rattler/pull/813))
|
|
69
|
+
|
|
70
|
+
## [0.1.3](https://github.com/conda/rattler/compare/file_url-v0.1.2...file_url-v0.1.3) - 2024-07-15
|
|
71
|
+
|
|
72
|
+
### Other
|
|
73
|
+
- update Cargo.toml dependencies
|
|
74
|
+
|
|
75
|
+
## [0.1.2](https://github.com/baszalmstra/rattler/compare/file_url-v0.1.1...file_url-v0.1.2) - 2024-06-04
|
|
76
|
+
|
|
77
|
+
### Added
|
|
78
|
+
- parse url and path as matchspec ([#704](https://github.com/baszalmstra/rattler/pull/704))
|
|
79
|
+
|
|
80
|
+
## [0.1.1](https://github.com/conda/rattler/compare/file_url-v0.1.0...file_url-v0.1.1) - 2024-05-14
|
|
81
|
+
|
|
82
|
+
### Added
|
|
83
|
+
- exclude repodata records based on timestamp ([#654](https://github.com/conda/rattler/pull/654))
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "file_url"
|
|
3
|
+
version = "0.2.5"
|
|
4
|
+
edition.workspace = true
|
|
5
|
+
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
|
|
6
|
+
description = "Helper functions to work with file:// urls"
|
|
7
|
+
categories.workspace = true
|
|
8
|
+
repository.workspace = true
|
|
9
|
+
license.workspace = true
|
|
10
|
+
|
|
11
|
+
[dependencies]
|
|
12
|
+
url = { workspace = true }
|
|
13
|
+
percent-encoding = { workspace = true }
|
|
14
|
+
itertools = { workspace = true }
|
|
15
|
+
typed-path = { workspace = true }
|
|
16
|
+
thiserror = "2.0.12"
|
|
17
|
+
|
|
18
|
+
[dev-dependencies]
|
|
19
|
+
rstest = { workspace = true }
|