py-rattler 0.14.0__tar.gz → 0.16.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.16.0/Cargo.toml +205 -0
- py_rattler-0.16.0/PKG-INFO +213 -0
- py_rattler-0.16.0/README.md +192 -0
- py_rattler-0.16.0/crates/coalesced_map/CHANGELOG.md +26 -0
- py_rattler-0.16.0/crates/coalesced_map/Cargo.toml +18 -0
- py_rattler-0.16.0/crates/coalesced_map/README.md +10 -0
- py_rattler-0.16.0/crates/coalesced_map/src/lib.rs +750 -0
- py_rattler-0.16.0/crates/file_url/CHANGELOG.md +89 -0
- py_rattler-0.16.0/crates/file_url/Cargo.toml +19 -0
- py_rattler-0.16.0/crates/file_url/src/lib.rs +244 -0
- py_rattler-0.16.0/crates/path_resolver/CHANGELOG.md +38 -0
- py_rattler-0.16.0/crates/path_resolver/Cargo.toml +26 -0
- py_rattler-0.16.0/crates/path_resolver/README.md +192 -0
- py_rattler-0.16.0/crates/path_resolver/benches/path_resolver_bench.rs +149 -0
- py_rattler-0.16.0/crates/path_resolver/src/lib.rs +1186 -0
- py_rattler-0.16.0/crates/rattler/CHANGELOG.md +617 -0
- py_rattler-0.16.0/crates/rattler/Cargo.toml +74 -0
- py_rattler-0.16.0/crates/rattler/README.md +192 -0
- py_rattler-0.16.0/crates/rattler/src/cli/auth.rs +525 -0
- py_rattler-0.16.0/crates/rattler/src/install/clobber_registry.rs +1491 -0
- py_rattler-0.16.0/crates/rattler/src/install/driver.rs +310 -0
- py_rattler-0.16.0/crates/rattler/src/install/installer/mod.rs +1358 -0
- py_rattler-0.16.0/crates/rattler/src/install/installer/result_record.rs +371 -0
- py_rattler-0.16.0/crates/rattler/src/install/link.rs +956 -0
- py_rattler-0.16.0/crates/rattler/src/install/link_script.rs +310 -0
- py_rattler-0.16.0/crates/rattler/src/install/mod.rs +1349 -0
- py_rattler-0.16.0/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-3.snap +6 -0
- py_rattler-0.16.0/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-4.snap +18 -0
- py_rattler-0.16.0/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-7.snap +18 -0
- py_rattler-0.16.0/crates/rattler/src/install/test_utils.rs +194 -0
- py_rattler-0.16.0/crates/rattler/src/install/transaction.rs +538 -0
- py_rattler-0.16.0/crates/rattler/src/install/unlink.rs +507 -0
- py_rattler-0.16.0/crates/rattler_cache/CHANGELOG.md +407 -0
- py_rattler-0.16.0/crates/rattler_cache/Cargo.toml +55 -0
- py_rattler-0.16.0/crates/rattler_cache/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_cache/src/package_cache/mod.rs +953 -0
- py_rattler-0.16.0/crates/rattler_cache/src/run_exports_cache/mod.rs +730 -0
- py_rattler-0.16.0/crates/rattler_conda_types/CHANGELOG.md +572 -0
- py_rattler-0.16.0/crates/rattler_conda_types/Cargo.toml +88 -0
- py_rattler-0.16.0/crates/rattler_conda_types/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_conda_types/benches/parse.rs +27 -0
- py_rattler-0.16.0/crates/rattler_conda_types/benches/prefix_record_from_path.rs +210 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/channel/mod.rs +820 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/compression_level.rs +56 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/lib.rs +80 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/match_spec/parse.rs +1544 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string_Lenient.snap +142 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string_Strict.snap +109 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/minimal_prefix_record.rs +869 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/no_arch_type.rs +177 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/package/has_prefix.rs +204 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/package/index.rs +147 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/platform.rs +580 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/prefix_record.rs +459 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/record_traits.rs +72 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/repo_data/mod.rs +773 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/repo_data/patches.rs +373 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__null_values.snap +10 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__patch_tracked_features.snap +25 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__deserialize_no_noarch_empty_str.snap +35 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/repo_data_record.rs +81 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__libsqlite-3_40_0-hcfcfb64_0_json.snap +58 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__menuinst-1_4_19-py311h1ea47a8_1_json.snap +230 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__pip-23_0-pyhd8ed1ab_0_json.snap +4555 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__pysocks-1_7_1-pyh0701188_6_json.snap +99 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__requests-2_28_2-pyhd8ed1ab_0_json.snap +246 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__tk-8_6_12-h8ffe710_0_json.snap +6634 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__urllib3-1_26_14-pyhd8ed1ab_0_json.snap +423 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__vc-14_3-hb6edc58_10_json.snap +34 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__wheel-0_38_4-pyhd8ed1ab_0_json.snap +233 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__xz-5_2_6-h8d14728_0_json.snap +159 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/utils/mod.rs +8 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/utils/serde.rs +203 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/utils/url_with_trailing_slash.rs +83 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/version/parse.rs +540 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/version_spec/parse.rs +561 -0
- py_rattler-0.16.0/crates/rattler_conda_types/src/version_spec/version_tree.rs +473 -0
- py_rattler-0.16.0/crates/rattler_config/CHANGELOG.md +128 -0
- py_rattler-0.16.0/crates/rattler_config/Cargo.toml +31 -0
- py_rattler-0.16.0/crates/rattler_config/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/build.rs +133 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/channel_config.rs +7 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/concurrency.rs +133 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/proxy.rs +174 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/repodata_config.rs +178 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/run_post_link_scripts.rs +20 -0
- py_rattler-0.16.0/crates/rattler_config/src/config/s3.rs +123 -0
- py_rattler-0.16.0/crates/rattler_config/src/config.rs +328 -0
- py_rattler-0.16.0/crates/rattler_config/src/edit.rs +174 -0
- py_rattler-0.16.0/crates/rattler_config/src/lib.rs +838 -0
- py_rattler-0.16.0/crates/rattler_config/src/snapshots/rattler_config__tests__basic_config_edit.snap +24 -0
- py_rattler-0.16.0/crates/rattler_config/src/snapshots/rattler_config__tests__comprehensive_config_edit.snap +44 -0
- py_rattler-0.16.0/crates/rattler_config/src/snapshots/rattler_config__tests__config_save_roundtrip.snap +22 -0
- py_rattler-0.16.0/crates/rattler_config/src/snapshots/rattler_config__tests__proxy_config_edit.snap +17 -0
- py_rattler-0.16.0/crates/rattler_config/src/snapshots/rattler_config__tests__repodata_config_edit.snap +14 -0
- py_rattler-0.16.0/crates/rattler_config/src/snapshots/rattler_config__tests__s3_config_edit.snap +18 -0
- py_rattler-0.16.0/crates/rattler_config/test-data/config.toml +61 -0
- py_rattler-0.16.0/crates/rattler_digest/CHANGELOG.md +125 -0
- py_rattler-0.16.0/crates/rattler_digest/Cargo.toml +33 -0
- py_rattler-0.16.0/crates/rattler_digest/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_digest/src/lib.rs +250 -0
- py_rattler-0.16.0/crates/rattler_digest/src/tokio.rs +74 -0
- py_rattler-0.16.0/crates/rattler_index/CHANGELOG.md +517 -0
- py_rattler-0.16.0/crates/rattler_index/Cargo.toml +74 -0
- py_rattler-0.16.0/crates/rattler_index/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_index/pixi.lock +8 -0
- py_rattler-0.16.0/crates/rattler_index/pixi.toml +10 -0
- py_rattler-0.16.0/crates/rattler_index/src/lib.rs +793 -0
- py_rattler-0.16.0/crates/rattler_index/src/main.rs +172 -0
- py_rattler-0.16.0/crates/rattler_lock/CHANGELOG.md +470 -0
- py_rattler-0.16.0/crates/rattler_lock/Cargo.toml +37 -0
- py_rattler-0.16.0/crates/rattler_lock/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_lock/src/conda.rs +459 -0
- py_rattler-0.16.0/crates/rattler_lock/src/lib.rs +732 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/models/v5/conda_package_data.rs +151 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/models/v5/pypi_package_data.rs +59 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/models/v6/conda_package_data.rs +322 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/models/v6/pypi_package_data.rs +77 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/models/v6/source_data.rs +362 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/serialize.rs +455 -0
- py_rattler-0.16.0/crates/rattler_lock/src/parse/v3.rs +280 -0
- py_rattler-0.16.0/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__pixi-build-git-rev-only-source-lock.yml.snap +21 -0
- py_rattler-0.16.0/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__pixi-build-git-tag-source-lock.yml.snap +22 -0
- py_rattler-0.16.0/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__pixi-build-pinned-source-lock.yml.snap +22 -0
- py_rattler-0.16.0/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__pixi-build-url-source-lock.yml.snap +21 -0
- py_rattler-0.16.0/crates/rattler_lock/src/url_or_path.rs +318 -0
- py_rattler-0.16.0/crates/rattler_macros/CHANGELOG.md +99 -0
- py_rattler-0.16.0/crates/rattler_macros/Cargo.toml +26 -0
- py_rattler-0.16.0/crates/rattler_macros/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_menuinst/CHANGELOG.md +247 -0
- py_rattler-0.16.0/crates/rattler_menuinst/Cargo.toml +50 -0
- py_rattler-0.16.0/crates/rattler_menuinst/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/lib.rs +228 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/linux.rs +986 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/macos.rs +985 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/schema.rs +676 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation.snap +15 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/windows/knownfolders.rs +129 -0
- py_rattler-0.16.0/crates/rattler_menuinst/src/windows.rs +620 -0
- py_rattler-0.16.0/crates/rattler_menuinst/test-data/defaults/defaults.json +68 -0
- py_rattler-0.16.0/crates/rattler_menuinst/test-data/gnuradio/gnuradio-grc.json +21 -0
- py_rattler-0.16.0/crates/rattler_menuinst/test-data/gqrx/gqrx-menu.json +38 -0
- py_rattler-0.16.0/crates/rattler_menuinst/test-data/mne/menu.json +168 -0
- py_rattler-0.16.0/crates/rattler_networking/CHANGELOG.md +372 -0
- py_rattler-0.16.0/crates/rattler_networking/Cargo.toml +73 -0
- py_rattler-0.16.0/crates/rattler_networking/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_middleware.rs +459 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_storage/backends/file.rs +208 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_storage/backends/memory.rs +108 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_storage/backends/mod.rs +8 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_storage/backends/netrc.rs +181 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_storage/mod.rs +43 -0
- py_rattler-0.16.0/crates/rattler_networking/src/authentication_storage/storage.rs +253 -0
- py_rattler-0.16.0/crates/rattler_networking/src/gcs_middleware.rs +106 -0
- py_rattler-0.16.0/crates/rattler_networking/src/lazy_client.rs +54 -0
- py_rattler-0.16.0/crates/rattler_networking/src/lib.rs +26 -0
- py_rattler-0.16.0/crates/rattler_networking/src/s3_middleware.rs +467 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/CHANGELOG.md +482 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/Cargo.toml +57 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/src/lib.rs +111 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/src/read.rs +167 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/src/reqwest/tokio.rs +235 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/src/write.rs +375 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/tests/extract.rs +334 -0
- py_rattler-0.16.0/crates/rattler_package_streaming/tests/write.rs +241 -0
- py_rattler-0.16.0/crates/rattler_pty/CHANGELOG.md +62 -0
- py_rattler-0.16.0/crates/rattler_pty/Cargo.toml +17 -0
- py_rattler-0.16.0/crates/rattler_pty/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_pty/src/unix/pty_process.rs +240 -0
- py_rattler-0.16.0/crates/rattler_pty/src/unix/pty_session.rs +222 -0
- py_rattler-0.16.0/crates/rattler_redaction/CHANGELOG.md +83 -0
- py_rattler-0.16.0/crates/rattler_redaction/Cargo.toml +21 -0
- py_rattler-0.16.0/crates/rattler_redaction/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/CHANGELOG.md +550 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/Cargo.toml +101 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/fetch/jlap/mod.rs +973 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/fetch/no_cache.rs +327 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/fetch/with_cache.rs +1589 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/builder.rs +178 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/channel_config.rs +114 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/direct_url_query.rs +210 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/mod.rs +787 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/query.rs +458 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/tokio.rs +67 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/wasm.rs +61 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/repo_data.rs +104 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/run_exports_extractor.rs +418 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/tokio/index.rs +433 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/tokio/mod.rs +270 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/wasm/index.rs +81 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/wasm/mod.rs +169 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/gateway/subdir.rs +88 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/lib.rs +80 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/reporter.rs +134 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/sparse/mod.rs +1102 -0
- py_rattler-0.16.0/crates/rattler_repodata_gateway/src/utils/mod.rs +114 -0
- py_rattler-0.16.0/crates/rattler_s3/CHANGELOG.md +32 -0
- py_rattler-0.16.0/crates/rattler_s3/Cargo.toml +24 -0
- py_rattler-0.16.0/crates/rattler_s3/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_s3/src/clap.rs +88 -0
- py_rattler-0.16.0/crates/rattler_s3/src/lib.rs +179 -0
- py_rattler-0.16.0/crates/rattler_shell/CHANGELOG.md +441 -0
- py_rattler-0.16.0/crates/rattler_shell/Cargo.toml +31 -0
- py_rattler-0.16.0/crates/rattler_shell/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_shell/src/activation.rs +1400 -0
- py_rattler-0.16.0/crates/rattler_shell/src/run/mod.rs +79 -0
- py_rattler-0.16.0/crates/rattler_shell/src/shell/mod.rs +1297 -0
- py_rattler-0.16.0/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__bash.snap +14 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_fish.snap +7 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_xonsh.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_zsh.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__after_activation.snap +9 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_append.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_prepend.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_replace.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_append.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_prepend.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_replace.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_append.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_prepend.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_replace.snap +8 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_bash.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_cmd.snap +11 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_fish.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_nushell.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_powershell.snap +11 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatedbash.snap +23 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatedcmd.snap +24 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatedfish.snap +23 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatednushell.snap +23 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatedpowershell.snap +24 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatedxonsh.snap +20 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_when_activatedzsh.snap +23 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_xonsh.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_deactivation_zsh.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundbash.snap +9 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundcmd.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundfish.snap +9 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundnushell.snap +9 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundpowershell.snap +10 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundxonsh.snap +9 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_first_roundzsh.snap +9 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundbash.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundcmd.snap +18 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundfish.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundnushell.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundpowershell.snap +18 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundxonsh.snap +15 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_nested_deactivation_second_roundzsh.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlbash.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlcmd.snap +18 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlfish.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlnushell.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlpowershell.snap +18 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlxonsh.snap +15 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_reseting_conda_shlvlzsh.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlbash.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlcmd.snap +18 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlfish.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlnushell.snap +17 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlpowershell.snap +18 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlxonsh.snap +15 -0
- py_rattler-0.16.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_resetting_conda_shlvlzsh.snap +17 -0
- py_rattler-0.16.0/crates/rattler_solve/CHANGELOG.md +508 -0
- py_rattler-0.16.0/crates/rattler_solve/Cargo.toml +55 -0
- py_rattler-0.16.0/crates/rattler_solve/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_solve/benches/bench.rs +103 -0
- py_rattler-0.16.0/crates/rattler_solve/benches/sorting_bench.rs +80 -0
- py_rattler-0.16.0/crates/rattler_solve/src/libsolv_c/mod.rs +310 -0
- py_rattler-0.16.0/crates/rattler_solve/src/resolvo/conda_sorting.rs +390 -0
- py_rattler-0.16.0/crates/rattler_solve/src/resolvo/mod.rs +971 -0
- py_rattler-0.16.0/crates/rattler_solve/tests/backends.rs +1446 -0
- py_rattler-0.16.0/crates/rattler_solve/tests/sorting.rs +101 -0
- py_rattler-0.16.0/crates/rattler_virtual_packages/CHANGELOG.md +437 -0
- py_rattler-0.16.0/crates/rattler_virtual_packages/Cargo.toml +28 -0
- py_rattler-0.16.0/crates/rattler_virtual_packages/README.md +192 -0
- py_rattler-0.16.0/crates/rattler_virtual_packages/src/lib.rs +858 -0
- py_rattler-0.16.0/crates/rattler_virtual_packages/src/linux.rs +131 -0
- py_rattler-0.16.0/py-rattler/Cargo.lock +6765 -0
- py_rattler-0.16.0/py-rattler/Cargo.toml +84 -0
- py_rattler-0.16.0/py-rattler/README.md +192 -0
- py_rattler-0.16.0/py-rattler/docs/detect_virtual_package_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/fetch_repo_data_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/file_mode.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/invalid_channel_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/invalid_match_spec_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/invalid_package_name_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/invalid_url_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/invalid_version_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/io_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/link_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/parse_arch_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/parse_platform_error.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/prefix_placeholder.md +3 -0
- py_rattler-0.16.0/py-rattler/docs/transaction_error.md +3 -0
- py_rattler-0.16.0/py-rattler/examples/cli.py +76 -0
- py_rattler-0.16.0/py-rattler/examples/solve_and_install.py +35 -0
- py_rattler-0.16.0/py-rattler/mkdocs.yml +193 -0
- py_rattler-0.16.0/py-rattler/pixi.lock +5805 -0
- py_rattler-0.16.0/py-rattler/pixi.toml +88 -0
- py_rattler-0.16.0/py-rattler/rattler/index/__init__.py +3 -0
- py_rattler-0.16.0/py-rattler/rattler/index/index.py +109 -0
- py_rattler-0.16.0/py-rattler/rattler/install/installer.py +96 -0
- py_rattler-0.16.0/py-rattler/rattler/lock/package.py +302 -0
- py_rattler-0.16.0/py-rattler/rattler/match_spec/nameless_match_spec.py +163 -0
- py_rattler-0.16.0/py-rattler/rattler/networking/client.py +65 -0
- py_rattler-0.16.0/py-rattler/rattler/platform/platform.py +217 -0
- py_rattler-0.16.0/py-rattler/rattler/prefix/prefix_record.py +234 -0
- py_rattler-0.16.0/py-rattler/rattler/repo_data/gateway.py +262 -0
- py_rattler-0.16.0/py-rattler/rattler/repo_data/repo_data.py +74 -0
- py_rattler-0.16.0/py-rattler/rattler/version/version.py +591 -0
- py_rattler-0.16.0/py-rattler/src/error.rs +231 -0
- py_rattler-0.16.0/py-rattler/src/index.rs +96 -0
- py_rattler-0.16.0/py-rattler/src/installer.rs +114 -0
- py_rattler-0.16.0/py-rattler/src/networking/client.rs +93 -0
- py_rattler-0.16.0/py-rattler/src/networking/mod.rs +130 -0
- py_rattler-0.16.0/py-rattler/src/platform.rs +134 -0
- py_rattler-0.16.0/py-rattler/src/record.rs +854 -0
- py_rattler-0.16.0/py-rattler/src/repo_data/gateway.rs +272 -0
- py_rattler-0.16.0/py-rattler/src/shell.rs +152 -0
- py_rattler-0.16.0/py-rattler/tests/unit/test_index.py +153 -0
- py_rattler-0.16.0/py-rattler/tests/unit/test_matchspec.py +76 -0
- py_rattler-0.16.0/py-rattler/tests/unit/test_prefix_record.py +131 -0
- py_rattler-0.16.0/pyproject.toml +58 -0
- py_rattler-0.16.0/rattler/index/__init__.py +3 -0
- py_rattler-0.16.0/rattler/index/index.py +109 -0
- py_rattler-0.16.0/rattler/install/installer.py +96 -0
- py_rattler-0.16.0/rattler/lock/package.py +302 -0
- py_rattler-0.16.0/rattler/match_spec/nameless_match_spec.py +163 -0
- py_rattler-0.16.0/rattler/networking/client.py +65 -0
- py_rattler-0.16.0/rattler/platform/platform.py +217 -0
- py_rattler-0.16.0/rattler/prefix/prefix_record.py +234 -0
- py_rattler-0.16.0/rattler/repo_data/gateway.py +262 -0
- py_rattler-0.16.0/rattler/repo_data/repo_data.py +74 -0
- py_rattler-0.16.0/rattler/version/version.py +591 -0
- py_rattler-0.14.0/Cargo.toml +0 -203
- py_rattler-0.14.0/PKG-INFO +0 -144
- py_rattler-0.14.0/README.md +0 -123
- py_rattler-0.14.0/crates/file_url/CHANGELOG.md +0 -83
- py_rattler-0.14.0/crates/file_url/Cargo.toml +0 -19
- py_rattler-0.14.0/crates/file_url/src/lib.rs +0 -237
- py_rattler-0.14.0/crates/rattler/CHANGELOG.md +0 -457
- py_rattler-0.14.0/crates/rattler/Cargo.toml +0 -69
- py_rattler-0.14.0/crates/rattler/README.md +0 -123
- py_rattler-0.14.0/crates/rattler/src/cli/auth.rs +0 -185
- py_rattler-0.14.0/crates/rattler/src/install/clobber_registry.rs +0 -1366
- py_rattler-0.14.0/crates/rattler/src/install/driver.rs +0 -305
- py_rattler-0.14.0/crates/rattler/src/install/installer/mod.rs +0 -645
- py_rattler-0.14.0/crates/rattler/src/install/link.rs +0 -955
- py_rattler-0.14.0/crates/rattler/src/install/link_script.rs +0 -308
- py_rattler-0.14.0/crates/rattler/src/install/mod.rs +0 -1312
- py_rattler-0.14.0/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-3.snap +0 -7
- py_rattler-0.14.0/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-4.snap +0 -19
- py_rattler-0.14.0/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-7.snap +0 -19
- py_rattler-0.14.0/crates/rattler/src/install/test_utils.rs +0 -200
- py_rattler-0.14.0/crates/rattler/src/install/transaction.rs +0 -295
- py_rattler-0.14.0/crates/rattler/src/install/unlink.rs +0 -494
- py_rattler-0.14.0/crates/rattler_cache/CHANGELOG.md +0 -297
- py_rattler-0.14.0/crates/rattler_cache/Cargo.toml +0 -54
- py_rattler-0.14.0/crates/rattler_cache/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_cache/src/package_cache/mod.rs +0 -940
- py_rattler-0.14.0/crates/rattler_cache/src/run_exports_cache/mod.rs +0 -730
- py_rattler-0.14.0/crates/rattler_conda_types/CHANGELOG.md +0 -456
- py_rattler-0.14.0/crates/rattler_conda_types/Cargo.toml +0 -86
- py_rattler-0.14.0/crates/rattler_conda_types/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_conda_types/benches/parse.rs +0 -26
- py_rattler-0.14.0/crates/rattler_conda_types/benches/prefix_record_from_path.rs +0 -68
- py_rattler-0.14.0/crates/rattler_conda_types/src/channel/mod.rs +0 -817
- py_rattler-0.14.0/crates/rattler_conda_types/src/lib.rs +0 -73
- py_rattler-0.14.0/crates/rattler_conda_types/src/match_spec/parse.rs +0 -1507
- py_rattler-0.14.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string_Lenient.snap +0 -140
- py_rattler-0.14.0/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__test_from_string_Strict.snap +0 -107
- py_rattler-0.14.0/crates/rattler_conda_types/src/no_arch_type.rs +0 -156
- py_rattler-0.14.0/crates/rattler_conda_types/src/package/has_prefix.rs +0 -192
- py_rattler-0.14.0/crates/rattler_conda_types/src/package/index.rs +0 -138
- py_rattler-0.14.0/crates/rattler_conda_types/src/platform.rs +0 -536
- py_rattler-0.14.0/crates/rattler_conda_types/src/prefix_record.rs +0 -411
- py_rattler-0.14.0/crates/rattler_conda_types/src/repo_data/mod.rs +0 -697
- py_rattler-0.14.0/crates/rattler_conda_types/src/repo_data/patches.rs +0 -313
- py_rattler-0.14.0/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__null_values.snap +0 -10
- py_rattler-0.14.0/crates/rattler_conda_types/src/repo_data_record.rs +0 -44
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__libsqlite-3_40_0-hcfcfb64_0_json.snap +0 -57
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__menuinst-1_4_19-py311h1ea47a8_1_json.snap +0 -230
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__pip-23_0-pyhd8ed1ab_0_json.snap +0 -4554
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__pysocks-1_7_1-pyh0701188_6_json.snap +0 -99
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__requests-2_28_2-pyhd8ed1ab_0_json.snap +0 -246
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__tk-8_6_12-h8ffe710_0_json.snap +0 -6633
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__urllib3-1_26_14-pyhd8ed1ab_0_json.snap +0 -423
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__vc-14_3-hb6edc58_10_json.snap +0 -33
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__wheel-0_38_4-pyhd8ed1ab_0_json.snap +0 -232
- py_rattler-0.14.0/crates/rattler_conda_types/src/snapshots/rattler_conda_types__prefix_record__test__xz-5_2_6-h8d14728_0_json.snap +0 -159
- py_rattler-0.14.0/crates/rattler_conda_types/src/utils/mod.rs +0 -6
- py_rattler-0.14.0/crates/rattler_conda_types/src/utils/serde.rs +0 -199
- py_rattler-0.14.0/crates/rattler_conda_types/src/utils/url_with_trailing_slash.rs +0 -79
- py_rattler-0.14.0/crates/rattler_conda_types/src/version/parse.rs +0 -538
- py_rattler-0.14.0/crates/rattler_conda_types/src/version_spec/parse.rs +0 -561
- py_rattler-0.14.0/crates/rattler_conda_types/src/version_spec/version_tree.rs +0 -464
- py_rattler-0.14.0/crates/rattler_digest/CHANGELOG.md +0 -106
- py_rattler-0.14.0/crates/rattler_digest/Cargo.toml +0 -33
- py_rattler-0.14.0/crates/rattler_digest/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_digest/src/lib.rs +0 -239
- py_rattler-0.14.0/crates/rattler_digest/src/tokio.rs +0 -68
- py_rattler-0.14.0/crates/rattler_index/CHANGELOG.md +0 -384
- py_rattler-0.14.0/crates/rattler_index/Cargo.toml +0 -70
- py_rattler-0.14.0/crates/rattler_index/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_index/src/lib.rs +0 -813
- py_rattler-0.14.0/crates/rattler_index/src/main.rs +0 -161
- py_rattler-0.14.0/crates/rattler_lock/CHANGELOG.md +0 -371
- py_rattler-0.14.0/crates/rattler_lock/Cargo.toml +0 -37
- py_rattler-0.14.0/crates/rattler_lock/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_lock/src/conda.rs +0 -371
- py_rattler-0.14.0/crates/rattler_lock/src/lib.rs +0 -725
- py_rattler-0.14.0/crates/rattler_lock/src/parse/models/v5/conda_package_data.rs +0 -151
- py_rattler-0.14.0/crates/rattler_lock/src/parse/models/v5/pypi_package_data.rs +0 -59
- py_rattler-0.14.0/crates/rattler_lock/src/parse/models/v6/conda_package_data.rs +0 -312
- py_rattler-0.14.0/crates/rattler_lock/src/parse/models/v6/pypi_package_data.rs +0 -77
- py_rattler-0.14.0/crates/rattler_lock/src/parse/models/v6/source_data.rs +0 -189
- py_rattler-0.14.0/crates/rattler_lock/src/parse/serialize.rs +0 -455
- py_rattler-0.14.0/crates/rattler_lock/src/parse/v3.rs +0 -280
- py_rattler-0.14.0/crates/rattler_lock/src/url_or_path.rs +0 -318
- py_rattler-0.14.0/crates/rattler_macros/CHANGELOG.md +0 -86
- py_rattler-0.14.0/crates/rattler_macros/Cargo.toml +0 -26
- py_rattler-0.14.0/crates/rattler_macros/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_menuinst/CHANGELOG.md +0 -127
- py_rattler-0.14.0/crates/rattler_menuinst/Cargo.toml +0 -50
- py_rattler-0.14.0/crates/rattler_menuinst/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_menuinst/src/lib.rs +0 -228
- py_rattler-0.14.0/crates/rattler_menuinst/src/linux.rs +0 -816
- py_rattler-0.14.0/crates/rattler_menuinst/src/macos.rs +0 -981
- py_rattler-0.14.0/crates/rattler_menuinst/src/schema.rs +0 -676
- py_rattler-0.14.0/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation.snap +0 -15
- py_rattler-0.14.0/crates/rattler_menuinst/src/windows/knownfolders.rs +0 -129
- py_rattler-0.14.0/crates/rattler_menuinst/src/windows.rs +0 -616
- py_rattler-0.14.0/crates/rattler_menuinst/test-data/defaults/defaults.json +0 -68
- py_rattler-0.14.0/crates/rattler_menuinst/test-data/gnuradio/gnuradio-grc.json +0 -21
- py_rattler-0.14.0/crates/rattler_menuinst/test-data/gqrx/gqrx-menu.json +0 -38
- py_rattler-0.14.0/crates/rattler_menuinst/test-data/mne/menu.json +0 -168
- py_rattler-0.14.0/crates/rattler_networking/CHANGELOG.md +0 -260
- py_rattler-0.14.0/crates/rattler_networking/Cargo.toml +0 -61
- py_rattler-0.14.0/crates/rattler_networking/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_middleware.rs +0 -446
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_storage/backends/file.rs +0 -207
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_storage/backends/memory.rs +0 -108
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_storage/backends/mod.rs +0 -6
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_storage/backends/netrc.rs +0 -181
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_storage/mod.rs +0 -41
- py_rattler-0.14.0/crates/rattler_networking/src/authentication_storage/storage.rs +0 -244
- py_rattler-0.14.0/crates/rattler_networking/src/gcs_middleware.rs +0 -101
- py_rattler-0.14.0/crates/rattler_networking/src/lib.rs +0 -24
- py_rattler-0.14.0/crates/rattler_networking/src/s3_middleware.rs +0 -410
- py_rattler-0.14.0/crates/rattler_package_streaming/CHANGELOG.md +0 -373
- py_rattler-0.14.0/crates/rattler_package_streaming/Cargo.toml +0 -57
- py_rattler-0.14.0/crates/rattler_package_streaming/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_package_streaming/src/lib.rs +0 -100
- py_rattler-0.14.0/crates/rattler_package_streaming/src/read.rs +0 -139
- py_rattler-0.14.0/crates/rattler_package_streaming/src/reqwest/tokio.rs +0 -235
- py_rattler-0.14.0/crates/rattler_package_streaming/src/write.rs +0 -417
- py_rattler-0.14.0/crates/rattler_package_streaming/tests/extract.rs +0 -329
- py_rattler-0.14.0/crates/rattler_package_streaming/tests/write.rs +0 -236
- py_rattler-0.14.0/crates/rattler_pty/CHANGELOG.md +0 -31
- py_rattler-0.14.0/crates/rattler_pty/Cargo.toml +0 -17
- py_rattler-0.14.0/crates/rattler_pty/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_pty/src/unix/pty_process.rs +0 -245
- py_rattler-0.14.0/crates/rattler_pty/src/unix/pty_session.rs +0 -224
- py_rattler-0.14.0/crates/rattler_redaction/CHANGELOG.md +0 -70
- py_rattler-0.14.0/crates/rattler_redaction/Cargo.toml +0 -21
- py_rattler-0.14.0/crates/rattler_redaction/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_repodata_gateway/CHANGELOG.md +0 -425
- py_rattler-0.14.0/crates/rattler_repodata_gateway/Cargo.toml +0 -98
- py_rattler-0.14.0/crates/rattler_repodata_gateway/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/fetch/jlap/mod.rs +0 -971
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/fetch/no_cache.rs +0 -323
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/fetch/with_cache.rs +0 -1573
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/builder.rs +0 -170
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/channel_config.rs +0 -74
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/direct_url_query.rs +0 -199
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/mod.rs +0 -713
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/query.rs +0 -458
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/tokio.rs +0 -68
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/remote_subdir/wasm.rs +0 -61
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/repo_data.rs +0 -89
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/tokio/index.rs +0 -408
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/tokio/mod.rs +0 -267
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/wasm/index.rs +0 -77
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/wasm/mod.rs +0 -165
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/gateway/subdir.rs +0 -157
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/lib.rs +0 -78
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/reporter.rs +0 -115
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/sparse/mod.rs +0 -1101
- py_rattler-0.14.0/crates/rattler_repodata_gateway/src/utils/mod.rs +0 -109
- py_rattler-0.14.0/crates/rattler_shell/CHANGELOG.md +0 -326
- py_rattler-0.14.0/crates/rattler_shell/Cargo.toml +0 -31
- py_rattler-0.14.0/crates/rattler_shell/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_shell/src/activation.rs +0 -880
- py_rattler-0.14.0/crates/rattler_shell/src/run/mod.rs +0 -78
- py_rattler-0.14.0/crates/rattler_shell/src/shell/mod.rs +0 -1106
- py_rattler-0.14.0/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__bash.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_bash.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_cmd.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_fish.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_powershell.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_xonsh.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__activation_script_zsh.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__after_activation.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_append.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_prepend.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_bash_replace.snap +0 -8
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_append.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_prepend.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_cmd_replace.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_append.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_prepend.snap +0 -7
- py_rattler-0.14.0/crates/rattler_shell/src/snapshots/rattler_shell__activation__tests__test_activation_script_powershell_replace.snap +0 -7
- py_rattler-0.14.0/crates/rattler_solve/CHANGELOG.md +0 -411
- py_rattler-0.14.0/crates/rattler_solve/Cargo.toml +0 -55
- py_rattler-0.14.0/crates/rattler_solve/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_solve/benches/bench.rs +0 -102
- py_rattler-0.14.0/crates/rattler_solve/benches/sorting_bench.rs +0 -82
- py_rattler-0.14.0/crates/rattler_solve/src/libsolv_c/mod.rs +0 -310
- py_rattler-0.14.0/crates/rattler_solve/src/resolvo/conda_sorting.rs +0 -387
- py_rattler-0.14.0/crates/rattler_solve/src/resolvo/mod.rs +0 -976
- py_rattler-0.14.0/crates/rattler_solve/tests/backends.rs +0 -1691
- py_rattler-0.14.0/crates/rattler_solve/tests/sorting.rs +0 -103
- py_rattler-0.14.0/crates/rattler_virtual_packages/CHANGELOG.md +0 -337
- py_rattler-0.14.0/crates/rattler_virtual_packages/Cargo.toml +0 -28
- py_rattler-0.14.0/crates/rattler_virtual_packages/README.md +0 -123
- py_rattler-0.14.0/crates/rattler_virtual_packages/src/lib.rs +0 -854
- py_rattler-0.14.0/crates/rattler_virtual_packages/src/linux.rs +0 -129
- py_rattler-0.14.0/py-rattler/Cargo.lock +0 -6617
- py_rattler-0.14.0/py-rattler/Cargo.toml +0 -79
- py_rattler-0.14.0/py-rattler/README.md +0 -123
- py_rattler-0.14.0/py-rattler/docs/detect_virtual_package_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/fetch_repo_data_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/file_mode.md +0 -3
- py_rattler-0.14.0/py-rattler/docs/invalid_channel_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/invalid_match_spec_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/invalid_package_name_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/invalid_url_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/invalid_version_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/io_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/link_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/parse_arch_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/parse_platform_error.md +0 -4
- py_rattler-0.14.0/py-rattler/docs/prefix_placeholder.md +0 -3
- py_rattler-0.14.0/py-rattler/docs/transaction_error.md +0 -4
- py_rattler-0.14.0/py-rattler/examples/cli.py +0 -76
- py_rattler-0.14.0/py-rattler/examples/solve_and_install.py +0 -35
- py_rattler-0.14.0/py-rattler/mkdocs.yml +0 -194
- py_rattler-0.14.0/py-rattler/pixi.lock +0 -5805
- py_rattler-0.14.0/py-rattler/pixi.toml +0 -86
- py_rattler-0.14.0/py-rattler/rattler/index/__init__.py +0 -3
- py_rattler-0.14.0/py-rattler/rattler/index/index.py +0 -99
- py_rattler-0.14.0/py-rattler/rattler/install/installer.py +0 -86
- py_rattler-0.14.0/py-rattler/rattler/lock/package.py +0 -302
- py_rattler-0.14.0/py-rattler/rattler/match_spec/nameless_match_spec.py +0 -164
- py_rattler-0.14.0/py-rattler/rattler/networking/client.py +0 -64
- py_rattler-0.14.0/py-rattler/rattler/platform/platform.py +0 -194
- py_rattler-0.14.0/py-rattler/rattler/prefix/prefix_record.py +0 -210
- py_rattler-0.14.0/py-rattler/rattler/repo_data/gateway.py +0 -262
- py_rattler-0.14.0/py-rattler/rattler/repo_data/repo_data.py +0 -74
- py_rattler-0.14.0/py-rattler/rattler/version/version.py +0 -592
- py_rattler-0.14.0/py-rattler/src/error.rs +0 -215
- py_rattler-0.14.0/py-rattler/src/index.rs +0 -83
- py_rattler-0.14.0/py-rattler/src/installer.rs +0 -93
- py_rattler-0.14.0/py-rattler/src/networking/client.rs +0 -63
- py_rattler-0.14.0/py-rattler/src/networking/mod.rs +0 -121
- py_rattler-0.14.0/py-rattler/src/platform.rs +0 -129
- py_rattler-0.14.0/py-rattler/src/record.rs +0 -833
- py_rattler-0.14.0/py-rattler/src/repo_data/gateway.rs +0 -268
- py_rattler-0.14.0/py-rattler/src/shell.rs +0 -150
- py_rattler-0.14.0/py-rattler/tests/unit/test_index.py +0 -148
- py_rattler-0.14.0/py-rattler/tests/unit/test_matchspec.py +0 -37
- py_rattler-0.14.0/py-rattler/tests/unit/test_prefix_record.py +0 -128
- py_rattler-0.14.0/pyproject.toml +0 -58
- py_rattler-0.14.0/rattler/index/__init__.py +0 -3
- py_rattler-0.14.0/rattler/index/index.py +0 -99
- py_rattler-0.14.0/rattler/install/installer.py +0 -86
- py_rattler-0.14.0/rattler/lock/package.py +0 -302
- py_rattler-0.14.0/rattler/match_spec/nameless_match_spec.py +0 -164
- py_rattler-0.14.0/rattler/networking/client.py +0 -64
- py_rattler-0.14.0/rattler/platform/platform.py +0 -194
- py_rattler-0.14.0/rattler/prefix/prefix_record.py +0 -210
- py_rattler-0.14.0/rattler/repo_data/gateway.py +0 -262
- py_rattler-0.14.0/rattler/repo_data/repo_data.py +0 -74
- py_rattler-0.14.0/rattler/version/version.py +0 -592
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/file_url/.gitignore +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/.gitignore +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/resources/launcher64.exe +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/resources/versions.txt +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/cli/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/apple_codesign.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/entry_point.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/installer/error.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/installer/indicatif.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/installer/reporter.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/python.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-5.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber-6.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__clobber_registry__tests__transaction_with_clobber.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__entry_point__test__entry_point_script.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__entry_point__test__windows.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__link__test__replace_long_prefix_in_text_file.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__link__test__replace_python_shebang-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__link__test__replace_python_shebang.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/install/snapshots/rattler__install__test__prefix_paths.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler/src/range.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/consts.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/package_cache/cache_key.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/package_cache/cache_lock.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/package_cache/reporter.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/run_exports_cache/cache_key.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/run_exports_cache/download.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_cache/src/validation.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/build_spec/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/build_spec/parse.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/channel/channel_url.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/channel_data.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/environment_yaml.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/explicit_environment_spec.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/generic_virtual_package.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/match_spec/matcher.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/match_spec/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__parse__tests__matchspec_to_string.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__tests__serialize_json_matchspec.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/match_spec/snapshots/rattler_conda_types__match_spec__tests__serialize_matchspec.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/menuinst/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/about.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/archive_identifier.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/archive_type.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/entry_point.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/files.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/link.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/no_link.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/no_softlink.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/package_metadata.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/paths.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/run_exports.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__extra_field_is_skipped.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__reconstruct_about_json.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__about__test__reconstruct_about_json_mamba.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__entry_point__test__entry_point.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__index__test__reconstruct_index_json.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__paths_sorted.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__reconstruct_paths_json.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package/snapshots/rattler_conda_types__package__paths__test__roundtrip_paths_json.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/package_name.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/parse_mode.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/prefix.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/sharded.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__patch_purl.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__patching.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__removing_1.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__patches__test__removing_2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__base_url_packages.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__serialize.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__serialize_packages-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/snapshots/rattler_conda_types__repo_data__test__serialize_packages.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/repo_data/topological_sort.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/run_export.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/snapshots/rattler_conda_types__environment_yaml__tests__pip_section.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/utils/path.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/utils/url.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version/bump.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version/flags.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version/segment.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version/snapshots/rattler_conda_types__version__parse__test__parse.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version/with_source.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version_spec/constraint.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version_spec/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_conda_types/src/version_spec/snapshots/rattler_conda_types__version_spec__parse__test__exact_strict.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_digest/src/serde.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_index/tests/test_index.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/builder.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/channel.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/file_format_version.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/hash.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/options.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/parse/deserialize.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/parse/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/parse/models/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/parse/models/v5/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/parse/models/v6/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/pypi.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/pypi_indexes.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__builder__test__merge_records_and_purls.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__packages_for_platform-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__packages_for_platform.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v0__numpy-conda-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v0__pypi-matplotlib-conda-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v0__python-conda-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v3__robostack-turtlesim-conda-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__absolute-path-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__numpy-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__path-based-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__pypi-matplotlib-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__python-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v4__turtlesim-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v5__flat-index-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v5__similar-with-and-without-purl.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__conda-path-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__derived-channel-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__options-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__test__v6__sources-lock.yml.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/snapshots/rattler_lock__url_or_path__test__order.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/source.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/derived_fields.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/serde/match_spec_map_or_vec.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/serde/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/serde/ordered.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/serde/pep440_map_or_vec.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/serde/timestamp.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/serde/url_or_path.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__file +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__https +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-1.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-3.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-4.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-5.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-6.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_lock/src/utils/snapshots/rattler_lock__utils__derived_fields__test__location_derived_fields-7.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/01-sorted-enum.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/02-sorted-struct.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/03-out-of-order-enum.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/03-out-of-order-enum.stderr +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/04-out-of-order-struct.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/04-out-of-order-struct.stderr +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_macros/tests/tests.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/data/appkit_launcher_arm64 +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/data/appkit_launcher_x86_64 +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/data/osx_launcher_arm64 +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/data/osx_launcher_x86_64 +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/linux/mime_config.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps-3.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps-4.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/linux/snapshots/rattler_menuinst__linux__mime_config__tests__existing_mimeapps.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/render.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation-2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__linux__tests__installation-3.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__macos__tests__macos_menu_installation.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__render__test__render_gnuradio.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_defaults.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_gnuradio.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_grx.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_mne.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/snapshots/rattler_menuinst__schema__test__deserialize_spyder.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/utils/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/utils/slugify.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/utils/terminal.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/windows/create_shortcut.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/windows/lex.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/windows/registry.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/src/windows/terminal.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/test-data/gnuradio/grc.ico +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/test-data/linux-menu/example.menu +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/test-data/linux-menu/mimeapps.list +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_menuinst/test-data/spyder/menu.json +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/src/authentication_storage/authentication.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/src/authentication_storage/backends/keyring.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/src/authentication_storage/backends/snapshots/rattler_networking__authentication_storage__backends__file__tests__file_storage.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/src/mirror_middleware.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/src/oci_middleware.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/src/retry_policies.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_networking/tests/s3_integration_test.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/src/fs.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/src/reqwest/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/src/seek.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/src/tokio/async_read.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/src/tokio/fs.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/src/tokio/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_package_streaming/tests/resources/ca-certificates-2024.7.4-hbcca054_0.conda +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_pty/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_pty/src/unix/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_pty/tests/integration_test.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_redaction/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/fetch/cache/cache_headers.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/fetch/cache/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.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.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/fetch/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/gateway/barrier_cell.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/gateway/error.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/gateway/local_subdir.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/gateway/remote_subdir/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/gateway/sharded_subdir/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/gateway/subdir_builder.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/sparse/snapshots/rattler_repodata_gateway__sparse__test__package_format_selection@both.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/sparse/snapshots/rattler_repodata_gateway__sparse__test__package_format_selection@only-conda.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/sparse/snapshots/rattler_repodata_gateway__sparse__test__package_format_selection@only-tar-bz2.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/sparse/snapshots/rattler_repodata_gateway__sparse__test__package_format_selection@prefer-conda.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/utils/body.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/utils/encoding.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/utils/flock.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_repodata_gateway/src/utils/simple_channel_server.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_shell/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__fish.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__xonsh_bash.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_shell/src/shell/snapshots/rattler_shell__shell__tests__xonsh_xsh.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/input.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/libc_byte_slice.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/output.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/flags.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/keys.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/pool.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/queue.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/repo.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/repodata.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/solvable.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/solve_goal.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/solve_problem.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/solver.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/src/libsolv_c/wrapper/transaction.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_dummy_repo_install_non_existent.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_python.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_python_numpy.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_quetz.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_tensorboard.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_tensorflow.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_with_error.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__solve_xtensor_xsimd.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__libsolv_c__virtual_package_constrains.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__exclude_newer_error.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__issue_717.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__panic_on_constraint.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_extra_depends_conflict_resolvo.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_extra_depends_feature_conflict.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_extra_depends_recursive_feature.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_dummy_repo_install_non_existent.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_locked.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_python.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_python_numpy.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_quetz.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_tensorboard.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_tensorflow.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_with_error.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__solve_xtensor_xsimd.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/backends__resolvo__virtual_package_constrains.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_abess_highest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_certifi_highest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_libgcc-ng_highest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_libuuid_highest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_python_highest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_pytorch_highest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_pytorch_lowest.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_solve/tests/snapshots/sorting__test_ordering_pytorch_lowest_direct.snap +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_virtual_packages/src/cuda.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_virtual_packages/src/libc.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_virtual_packages/src/osx.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/rattler_virtual_packages/src/win.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/simple_spawn_blocking/CHANGELOG.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/simple_spawn_blocking/Cargo.toml +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/simple_spawn_blocking/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/crates/simple_spawn_blocking/src/tokio.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/.gitignore +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/build.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/about_json.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/activate.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/activation_error.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/activation_result.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/activation_variables.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/arch.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/cache_dir_error.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/channel.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/channel_config.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/client.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/conda_locked_binary_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/conda_locked_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/conda_locked_source_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/environment.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/environment_creation_error.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/fetch_repo_data.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/gateway.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/generic_virtual_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/index.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/index_.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/index_json.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/installer.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/lock_file.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/locked_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/match_spec.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/nameless_match_spec.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/package_hashes.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/package_name.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/package_record.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/patch_instructions.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/path_modification_behavior.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/path_type.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/paths_entry.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/paths_json.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/platform.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/prefix_paths.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/prefix_record.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/pypi_locked_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/repo_data.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/repo_data_record.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/run_exports_json.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/shell.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/solver.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/solver_error.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/sparse_repo_data.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/stylesheets/extra.css +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/version.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/version_with_source.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/docs/virtual_package.md +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/examples/install_to_prefix.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/channel/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/channel/channel.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/channel/channel_config.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/channel/channel_priority.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/exceptions.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/explicit_environment/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/explicit_environment/environment.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/install/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/lock/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/lock/channel.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/lock/environment.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/lock/hash.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/lock/lock_file.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/match_spec/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/match_spec/match_spec.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/networking/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/networking/fetch_repo_data.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/networking/middleware.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/about_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/index_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/no_arch_type.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/package_name.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/paths_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package/run_exports_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/package_streaming/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/platform/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/platform/arch.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/prefix/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/prefix/prefix_paths.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/py.typed +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/repo_data/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/repo_data/package_record.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/repo_data/patch_instructions.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/repo_data/record.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/repo_data/sparse.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/shell/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/shell/shell.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/solver/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/solver/solver.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/utils/rattler_version.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/version/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/version/with_source.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/virtual_package/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/virtual_package/generic.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/rattler/virtual_package/virtual_package.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/about_json.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/channel/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/explicit_environment_spec.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/generic_virtual_package.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/index_json.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/lib.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/lock/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/match_spec.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/meta.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/nameless_match_spec.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/networking/cached_repo_data.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/networking/middleware.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/no_arch_type.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/package_name.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/package_streaming/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/paths_json.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/prefix_paths.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/repo_data/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/repo_data/patch_instructions.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/repo_data/sparse.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/run_exports_json.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/solver.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/utils.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/version/component.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/version/mod.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/src/virtual_package.rs +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/conftest.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_explicit_environment.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_fetch_repo_data.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_gateway.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_install.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_override.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_package_record.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_package_streaming.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_solver.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/py-rattler/tests/unit/test_version.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/channel/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/channel/channel.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/channel/channel_config.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/channel/channel_priority.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/exceptions.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/explicit_environment/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/explicit_environment/environment.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/install/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/lock/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/lock/channel.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/lock/environment.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/lock/hash.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/lock/lock_file.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/match_spec/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/match_spec/match_spec.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/networking/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/networking/fetch_repo_data.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/networking/middleware.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/about_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/index_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/no_arch_type.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/package_name.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/paths_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package/run_exports_json.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/package_streaming/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/platform/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/platform/arch.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/prefix/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/prefix/prefix_paths.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/py.typed +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/repo_data/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/repo_data/package_record.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/repo_data/patch_instructions.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/repo_data/record.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/repo_data/sparse.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/shell/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/shell/shell.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/solver/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/solver/solver.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/utils/rattler_version.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/version/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/version/with_source.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/virtual_package/__init__.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/virtual_package/generic.py +0 -0
- {py_rattler-0.14.0 → py_rattler-0.16.0}/rattler/virtual_package/virtual_package.py +0 -0
|
@@ -0,0 +1,205 @@
|
|
|
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", features = [
|
|
30
|
+
"gzip",
|
|
31
|
+
"tokio",
|
|
32
|
+
"bzip2",
|
|
33
|
+
"zstd",
|
|
34
|
+
] }
|
|
35
|
+
async-fd-lock = "0.2.0"
|
|
36
|
+
fs4 = "0.13.1"
|
|
37
|
+
async-once-cell = "0.5.4"
|
|
38
|
+
async-trait = "0.1.88"
|
|
39
|
+
axum = { version = "0.8.4", default-features = false, features = [
|
|
40
|
+
"tokio",
|
|
41
|
+
"http1",
|
|
42
|
+
] }
|
|
43
|
+
base64 = "0.22.1"
|
|
44
|
+
bindgen = "0.72.0"
|
|
45
|
+
blake2 = "0.10.6"
|
|
46
|
+
bytes = "1.10.1"
|
|
47
|
+
bzip2 = "0.6.0"
|
|
48
|
+
cache_control = "0.2.0"
|
|
49
|
+
cfg-if = "1.0"
|
|
50
|
+
chrono = { version = "0.4.41", default-features = false, features = [
|
|
51
|
+
"std",
|
|
52
|
+
"serde",
|
|
53
|
+
"alloc",
|
|
54
|
+
] }
|
|
55
|
+
clap = { version = "4.5.38", features = ["derive", "color", "suggestions", "error-context"] }
|
|
56
|
+
clap-verbosity-flag = "3.0.3"
|
|
57
|
+
cmake = "0.1.54"
|
|
58
|
+
console = { version = "0.16.0", features = ["windows-console-colors"] }
|
|
59
|
+
criterion = "0.7"
|
|
60
|
+
dashmap = "6.1.0"
|
|
61
|
+
difference = "2.0.0"
|
|
62
|
+
digest = "0.10.7"
|
|
63
|
+
dirs = "6.0.0"
|
|
64
|
+
dunce = "1.0.5"
|
|
65
|
+
enum_dispatch = "0.3.13"
|
|
66
|
+
fs-err = { version = "3.1.0" }
|
|
67
|
+
fslock = "0.2.1"
|
|
68
|
+
futures = "0.3.31"
|
|
69
|
+
futures-util = "0.3.31"
|
|
70
|
+
fxhash = "0.2.1"
|
|
71
|
+
# lots of other crates are still stuck on older version which breaks `deserialize`
|
|
72
|
+
generic-array = "0.14.7"
|
|
73
|
+
getrandom = { version = "0.3.3", default-features = false }
|
|
74
|
+
glob = "0.3.2"
|
|
75
|
+
google-cloud-auth = { version = "0.22.0", default-features = false }
|
|
76
|
+
aws-config = { version = "=1.5.18", default-features = false }
|
|
77
|
+
aws-sdk-s3 = { version = "1.85.0", default-features = false }
|
|
78
|
+
aws-credential-types = { version = "1.2.5", default-features = false }
|
|
79
|
+
hex = "0.4.3"
|
|
80
|
+
hex-literal = "1.0.0"
|
|
81
|
+
http = "1.3"
|
|
82
|
+
http-cache-semantics = "2.1.0"
|
|
83
|
+
humansize = "2.1.3"
|
|
84
|
+
humantime = "2.2.0"
|
|
85
|
+
indexmap = "2.10.0"
|
|
86
|
+
indicatif = "0.18.0"
|
|
87
|
+
insta = { version = "1.43.1" }
|
|
88
|
+
itertools = "0.14.0"
|
|
89
|
+
json-patch = "4.0.0"
|
|
90
|
+
keyring = "3.6.2"
|
|
91
|
+
lazy-regex = "3.4.1"
|
|
92
|
+
libc = { version = "0.2" }
|
|
93
|
+
libloading = "0.8.7"
|
|
94
|
+
libz-sys = { version = "1.1.22", default-features = false }
|
|
95
|
+
md-5 = "0.10.6"
|
|
96
|
+
memchr = "2.7.4"
|
|
97
|
+
memmap2 = "0.9.5"
|
|
98
|
+
miette = "7.6.0"
|
|
99
|
+
netrc-rs = "0.1.2"
|
|
100
|
+
nom = "8.0.0"
|
|
101
|
+
nom-language = "0.1.0"
|
|
102
|
+
num_cpus = "1.16.0"
|
|
103
|
+
opendal = { version = "0.54.0", default-features = false }
|
|
104
|
+
once_cell = "1.21.3"
|
|
105
|
+
parking_lot = "0.12.4"
|
|
106
|
+
pathdiff = "0.2.3"
|
|
107
|
+
pep440_rs = { version = "0.7.3" }
|
|
108
|
+
pep508_rs = { version = "0.9.2" }
|
|
109
|
+
percent-encoding = "2.3.1"
|
|
110
|
+
pin-project-lite = "0.2.16"
|
|
111
|
+
plist = "1"
|
|
112
|
+
proptest = "1.7.0"
|
|
113
|
+
purl = { version = "0.1.6", default-features = false, features = ["serde"] }
|
|
114
|
+
quote = "1.0.40"
|
|
115
|
+
rand = "0.9.1"
|
|
116
|
+
rayon = "1.10.0"
|
|
117
|
+
reflink-copy = "0.1.26"
|
|
118
|
+
regex = "1.11.1"
|
|
119
|
+
reqwest = { version = "0.12.15", default-features = false }
|
|
120
|
+
reqwest-middleware = "0.4.2"
|
|
121
|
+
reqwest-retry = "0.7.0"
|
|
122
|
+
resolvo = { version = "0.10.0" }
|
|
123
|
+
# hold back at 0.4.0 until `reqwest-retry` is updated
|
|
124
|
+
retry-policies = { version = "0.4.0", default-features = false }
|
|
125
|
+
rmp-serde = { version = "1.3.0" }
|
|
126
|
+
rstest = { version = "0.25.0" }
|
|
127
|
+
rstest_reuse = "0.7.0"
|
|
128
|
+
simd-json = { version = "0.15.1", features = ["serde_impl"] }
|
|
129
|
+
self_cell = "1.2.0"
|
|
130
|
+
serde = { version = "1.0.219" }
|
|
131
|
+
serde_json = { version = "1.0.140" }
|
|
132
|
+
serde_repr = "0.1"
|
|
133
|
+
serde-value = "0.7.0"
|
|
134
|
+
serde_with = "3.12.0"
|
|
135
|
+
serde_yaml = "0.9.34"
|
|
136
|
+
serde-untagged = "0.1.7"
|
|
137
|
+
sha2 = "0.10.9"
|
|
138
|
+
shlex = "1.3.0"
|
|
139
|
+
similar-asserts = "1.7.0"
|
|
140
|
+
smallvec = { version = "1.15.0", features = [
|
|
141
|
+
"serde",
|
|
142
|
+
"const_new",
|
|
143
|
+
"const_generics",
|
|
144
|
+
"union",
|
|
145
|
+
] }
|
|
146
|
+
strum = { version = "0.27.1", features = ["derive"] }
|
|
147
|
+
superslice = "1.0.0"
|
|
148
|
+
syn = "2.0.101"
|
|
149
|
+
sysinfo = "0.36.0"
|
|
150
|
+
tar = "0.4.44"
|
|
151
|
+
tempdir = "0.3.7"
|
|
152
|
+
tempfile = "3.20.0"
|
|
153
|
+
temp-env = { version = "0.3.6", features = ["async_closure"] }
|
|
154
|
+
test-log = "0.2.17"
|
|
155
|
+
thiserror = "2.0"
|
|
156
|
+
tokio = { version = "1.45.1", default-features = false }
|
|
157
|
+
tokio-stream = "0.1.17"
|
|
158
|
+
tokio-util = "0.7.15"
|
|
159
|
+
toml = "0.9.2"
|
|
160
|
+
tower = { version = "0.5.2", default-features = false }
|
|
161
|
+
tower-http = { version = "0.6.4", default-features = false }
|
|
162
|
+
tracing = "0.1.41"
|
|
163
|
+
tracing-subscriber = { version = "0.3.19", default-features = false }
|
|
164
|
+
tracing-test = { version = "0.2.5" }
|
|
165
|
+
trybuild = { version = "1.0.105" }
|
|
166
|
+
typed-path = { version = "0.11.0" }
|
|
167
|
+
url = { version = "2.5.4" }
|
|
168
|
+
unicode-normalization = "0.1.24"
|
|
169
|
+
uuid = { version = "1.17.0", default-features = false }
|
|
170
|
+
walkdir = "2.5.0"
|
|
171
|
+
wasmtimer = "0.4.1"
|
|
172
|
+
which = "8.0.0"
|
|
173
|
+
windows-sys = { version = "0.60.2", default-features = false }
|
|
174
|
+
winver = { version = "1.0.0" }
|
|
175
|
+
zip = { version = ">=3.0.0,<4.1", default-features = false }
|
|
176
|
+
zstd = { version = "0.13.3", default-features = false }
|
|
177
|
+
|
|
178
|
+
# These are the all the crates defined in the workspace. We pin all of them together because they are always updated in tendem.
|
|
179
|
+
coalesced_map = { path = "crates/coalesced_map", version = "=0.1.2", default-features = false }
|
|
180
|
+
file_url = { path = "crates/file_url", version = "=0.2.6", default-features = false }
|
|
181
|
+
path_resolver = { path = "crates/path_resolver", version = "=0.2.1", default-features = false }
|
|
182
|
+
rattler = { path = "crates/rattler", version = "=0.37.6", default-features = false }
|
|
183
|
+
rattler_cache = { path = "crates/rattler_cache", version = "=0.3.36", default-features = false }
|
|
184
|
+
rattler_conda_types = { path = "crates/rattler_conda_types", version = "=0.40.0", default-features = false }
|
|
185
|
+
rattler_config = { path = "crates/rattler_config", version = "=0.2.11", default-features = false }
|
|
186
|
+
rattler_digest = { path = "crates/rattler_digest", version = "=1.1.5", default-features = false }
|
|
187
|
+
rattler_index = { path = "crates/rattler_index", version = "=0.25.4", default-features = false }
|
|
188
|
+
rattler_libsolv_c = { path = "crates/rattler_libsolv_c", version = "=1.2.3", default-features = false }
|
|
189
|
+
rattler_lock = { path = "crates/rattler_lock", version = "=0.25.0", default-features = false }
|
|
190
|
+
rattler_macros = { path = "crates/rattler_macros", version = "=1.0.11", default-features = false }
|
|
191
|
+
rattler_menuinst = { path = "crates/rattler_menuinst", version = "=0.2.29", default-features = false }
|
|
192
|
+
rattler_networking = { path = "crates/rattler_networking", version = "=0.25.15", default-features = false }
|
|
193
|
+
rattler_package_streaming = { path = "crates/rattler_package_streaming", version = "=0.23.6", default-features = false }
|
|
194
|
+
rattler_pty = { path = "crates/rattler_pty", version = "=0.2.6", default-features = false }
|
|
195
|
+
rattler_redaction = { path = "crates/rattler_redaction", version = "=0.1.12", default-features = false }
|
|
196
|
+
rattler_repodata_gateway = { path = "crates/rattler_repodata_gateway", version = "=0.24.6", default-features = false }
|
|
197
|
+
rattler_s3 = { path = "crates/rattler_s3", version = "=0.1.4", default-features = false }
|
|
198
|
+
rattler_sandbox = { path = "crates/rattler_sandbox", version = "=0.1.11", default-features = false }
|
|
199
|
+
rattler_shell = { path = "crates/rattler_shell", version = "=0.25.2", default-features = false }
|
|
200
|
+
rattler_solve = { path = "crates/rattler_solve", version = "=3.0.5", default-features = false }
|
|
201
|
+
rattler_upload = { path = "crates/rattler_upload", version = "=0.3.3", default-features = false }
|
|
202
|
+
rattler_virtual_packages = { path = "crates/rattler_virtual_packages", version = "=2.1.7", default-features = false }
|
|
203
|
+
|
|
204
|
+
# This is also a rattler crate, but we only pin it to minor version
|
|
205
|
+
simple_spawn_blocking = { path = "crates/simple_spawn_blocking", version = "1.1", default-features = false }
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: py-rattler
|
|
3
|
+
Version: 0.16.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-Expression: 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
|
+
## Python and Javascript bindings
|
|
68
|
+
|
|
69
|
+
You can invoke `rattler` from Python or Javascript via our powerful bindings to solve, install and run commands in conda environments. Rattler offers you the fastest and cleanest Python bindings to the conda ecosystem.
|
|
70
|
+
|
|
71
|
+
### Python
|
|
72
|
+
|
|
73
|
+
To install the Python bindings, you can use pip or conda:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pip install py-rattler
|
|
77
|
+
# or
|
|
78
|
+
conda install -c conda-forge py-rattler
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
You can find the extensive documentation for the Python bindings [here](https://conda.github.io/rattler/py-rattler/).
|
|
82
|
+
|
|
83
|
+
<details>
|
|
84
|
+
<summary>Example usage of rattler from Python</summary>
|
|
85
|
+
The Python bindings to rattler are designed to be used with `asyncio`. You can access the raw power of the rattler library to solve environments, install packages, and run commands in the installed environments.
|
|
86
|
+
|
|
87
|
+
```python
|
|
88
|
+
import asyncio
|
|
89
|
+
import tempfile
|
|
90
|
+
|
|
91
|
+
from rattler import solve, install, VirtualPackage
|
|
92
|
+
|
|
93
|
+
async def main() -> None:
|
|
94
|
+
# Start by solving the environment.
|
|
95
|
+
#
|
|
96
|
+
# Solving is the process of going from specifications of package and their
|
|
97
|
+
# version requirements to a list of concrete packages.
|
|
98
|
+
print("started solving the environment")
|
|
99
|
+
solved_records = await solve(
|
|
100
|
+
# Channels to use for solving
|
|
101
|
+
channels=["conda-forge"],
|
|
102
|
+
# The specs to solve for
|
|
103
|
+
specs=["python ~=3.12.0", "pip", "requests 2.31.0"],
|
|
104
|
+
# Virtual packages define the specifications of the environment
|
|
105
|
+
virtual_packages=VirtualPackage.detect(),
|
|
106
|
+
)
|
|
107
|
+
print("solved required dependencies")
|
|
108
|
+
|
|
109
|
+
# Install the packages into a new environment (or updates it if it already
|
|
110
|
+
# existed).
|
|
111
|
+
env_path = tempfile.mkdtemp()
|
|
112
|
+
await install(
|
|
113
|
+
records=solved_records,
|
|
114
|
+
target_prefix=env_path,
|
|
115
|
+
)
|
|
116
|
+
|
|
117
|
+
print(f"created environment: {env_path}")
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
if __name__ == "__main__":
|
|
121
|
+
asyncio.run(main())
|
|
122
|
+
```
|
|
123
|
+
</details>
|
|
124
|
+
|
|
125
|
+
### Javascript
|
|
126
|
+
|
|
127
|
+
To use the Javascript bindings, you can install the `@conda-org/rattler` package via npm. rattler is compiled to WebAssembly and can be used in the browser or in Node.js.
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
npm install @conda-org/rattler
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
Using rattler from Javascript is useful to get access to the same version comparison functions as used throughout the conda ecosystem. It is also used as part of [`mambajs`](https://github.com/emscripten-forge/mambajs) which uses the rattler library to solve and install packages from the emscripten-forge channel _in the browser_.
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
## Give it a try!
|
|
137
|
+
|
|
138
|
+
Before you begin, make sure you have the following prerequisites:
|
|
139
|
+
- A recent version of [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
140
|
+
- A recent version of [pixi](https://github.com/prefix-dev/pixi)
|
|
141
|
+
|
|
142
|
+
Follow these steps to clone, compile, and run the rattler project:
|
|
143
|
+
```shell
|
|
144
|
+
# Clone the rattler repository along with its submodules:
|
|
145
|
+
git clone --recursive https://github.com/conda/rattler.git
|
|
146
|
+
cd rattler
|
|
147
|
+
|
|
148
|
+
# Compile and execute rattler to create a JupyterLab instance:
|
|
149
|
+
pixi run rattler create jupyterlab
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
The above command will execute the `rattler` executable in release mode.
|
|
153
|
+
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`)
|
|
154
|
+
|
|
155
|
+
Run the following command to start jupyterlab:
|
|
156
|
+
|
|
157
|
+
```shell
|
|
158
|
+
# on windows
|
|
159
|
+
.\.prefix\Scripts\jupyter-lab.exe
|
|
160
|
+
|
|
161
|
+
# on linux or macOS
|
|
162
|
+
./.prefix/bin/jupyter-lab
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Voila!
|
|
166
|
+
You have a working installation of jupyterlab installed on your system!
|
|
167
|
+
You can of course install any package you want this way.
|
|
168
|
+
Try it!
|
|
169
|
+
|
|
170
|
+
## Contributing 😍
|
|
171
|
+
|
|
172
|
+
We would love to have you contribute!
|
|
173
|
+
See the CONTRIBUTION.md for more info. For questions, requests or a casual chat, we are very active on our discord server.
|
|
174
|
+
You can [join our discord server via this link][chat-url].
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
## Components
|
|
178
|
+
|
|
179
|
+
Rattler consists of several crates that provide different functionalities.
|
|
180
|
+
|
|
181
|
+
* **rattler_conda_types**: foundational types for all datastructures used within the conda eco-system.
|
|
182
|
+
* **rattler_package_streaming**: provides functionality to download, extract and create conda package archives.
|
|
183
|
+
* **rattler_repodata_gateway**: downloads, reads and processes information about existing conda packages from an index.
|
|
184
|
+
* **rattler_shell**: code to activate an existing environment and run programs in it.
|
|
185
|
+
* **rattler_solve**: a backend agnostic library to solve the package satisfiability problem.
|
|
186
|
+
* **rattler_virtual_packages**: a crate to detect system capabilities.
|
|
187
|
+
* **rattler_index**: create local conda channels from local packages.
|
|
188
|
+
* **rattler**: functionality to create complete environments from scratch using the crates above.
|
|
189
|
+
* **rattler-lock**: a library to create and parse lockfiles for conda environments.
|
|
190
|
+
* **rattler-networking**: common functionality for networking, like authentication, mirroring and more.
|
|
191
|
+
* **rattler-bin**: an example of a package manager using all the crates above (see: [showcase](#showcase))
|
|
192
|
+
|
|
193
|
+
You can find these crates in the `crates` folder.
|
|
194
|
+
|
|
195
|
+
Additionally, we provide Python bindings for most of the functionalities provided by the above crates.
|
|
196
|
+
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/).
|
|
197
|
+
Documentation for the python bindings can be found [here](https://conda.github.io/rattler/py-rattler).
|
|
198
|
+
|
|
199
|
+
## What is conda & conda-forge?
|
|
200
|
+
|
|
201
|
+
The conda ecosystem provides **cross-platform**, **binary** packages that you can use with **any programming language**.
|
|
202
|
+
`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.
|
|
203
|
+
`conda` is written in Python.
|
|
204
|
+
The aim of Rattler is to provide all functionality required to work with the conda ecosystem from Rust.
|
|
205
|
+
Rattler is not a reimplementation of `conda`.
|
|
206
|
+
`conda` is a package management tool.
|
|
207
|
+
Rattler is a _library_ to work with the conda ecosystem from different languages and applications.
|
|
208
|
+
For example, it powers the backend of https://prefix.dev.
|
|
209
|
+
|
|
210
|
+
`conda-forge` is a community-driven effort to bring new and existing software into the conda ecosystem.
|
|
211
|
+
It provides _tens-of-thousands of up-to-date_ packages that are maintained by a community of contributors.
|
|
212
|
+
For an overview of available packages see https://prefix.dev.
|
|
213
|
+
|
|
@@ -0,0 +1,192 @@
|
|
|
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
|
+
## Python and Javascript bindings
|
|
48
|
+
|
|
49
|
+
You can invoke `rattler` from Python or Javascript via our powerful bindings to solve, install and run commands in conda environments. Rattler offers you the fastest and cleanest Python bindings to the conda ecosystem.
|
|
50
|
+
|
|
51
|
+
### Python
|
|
52
|
+
|
|
53
|
+
To install the Python bindings, you can use pip or conda:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
pip install py-rattler
|
|
57
|
+
# or
|
|
58
|
+
conda install -c conda-forge py-rattler
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
You can find the extensive documentation for the Python bindings [here](https://conda.github.io/rattler/py-rattler/).
|
|
62
|
+
|
|
63
|
+
<details>
|
|
64
|
+
<summary>Example usage of rattler from Python</summary>
|
|
65
|
+
The Python bindings to rattler are designed to be used with `asyncio`. You can access the raw power of the rattler library to solve environments, install packages, and run commands in the installed environments.
|
|
66
|
+
|
|
67
|
+
```python
|
|
68
|
+
import asyncio
|
|
69
|
+
import tempfile
|
|
70
|
+
|
|
71
|
+
from rattler import solve, install, VirtualPackage
|
|
72
|
+
|
|
73
|
+
async def main() -> None:
|
|
74
|
+
# Start by solving the environment.
|
|
75
|
+
#
|
|
76
|
+
# Solving is the process of going from specifications of package and their
|
|
77
|
+
# version requirements to a list of concrete packages.
|
|
78
|
+
print("started solving the environment")
|
|
79
|
+
solved_records = await solve(
|
|
80
|
+
# Channels to use for solving
|
|
81
|
+
channels=["conda-forge"],
|
|
82
|
+
# The specs to solve for
|
|
83
|
+
specs=["python ~=3.12.0", "pip", "requests 2.31.0"],
|
|
84
|
+
# Virtual packages define the specifications of the environment
|
|
85
|
+
virtual_packages=VirtualPackage.detect(),
|
|
86
|
+
)
|
|
87
|
+
print("solved required dependencies")
|
|
88
|
+
|
|
89
|
+
# Install the packages into a new environment (or updates it if it already
|
|
90
|
+
# existed).
|
|
91
|
+
env_path = tempfile.mkdtemp()
|
|
92
|
+
await install(
|
|
93
|
+
records=solved_records,
|
|
94
|
+
target_prefix=env_path,
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
print(f"created environment: {env_path}")
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
if __name__ == "__main__":
|
|
101
|
+
asyncio.run(main())
|
|
102
|
+
```
|
|
103
|
+
</details>
|
|
104
|
+
|
|
105
|
+
### Javascript
|
|
106
|
+
|
|
107
|
+
To use the Javascript bindings, you can install the `@conda-org/rattler` package via npm. rattler is compiled to WebAssembly and can be used in the browser or in Node.js.
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
npm install @conda-org/rattler
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Using rattler from Javascript is useful to get access to the same version comparison functions as used throughout the conda ecosystem. It is also used as part of [`mambajs`](https://github.com/emscripten-forge/mambajs) which uses the rattler library to solve and install packages from the emscripten-forge channel _in the browser_.
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
## Give it a try!
|
|
117
|
+
|
|
118
|
+
Before you begin, make sure you have the following prerequisites:
|
|
119
|
+
- A recent version of [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
120
|
+
- A recent version of [pixi](https://github.com/prefix-dev/pixi)
|
|
121
|
+
|
|
122
|
+
Follow these steps to clone, compile, and run the rattler project:
|
|
123
|
+
```shell
|
|
124
|
+
# Clone the rattler repository along with its submodules:
|
|
125
|
+
git clone --recursive https://github.com/conda/rattler.git
|
|
126
|
+
cd rattler
|
|
127
|
+
|
|
128
|
+
# Compile and execute rattler to create a JupyterLab instance:
|
|
129
|
+
pixi run rattler create jupyterlab
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
The above command will execute the `rattler` executable in release mode.
|
|
133
|
+
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`)
|
|
134
|
+
|
|
135
|
+
Run the following command to start jupyterlab:
|
|
136
|
+
|
|
137
|
+
```shell
|
|
138
|
+
# on windows
|
|
139
|
+
.\.prefix\Scripts\jupyter-lab.exe
|
|
140
|
+
|
|
141
|
+
# on linux or macOS
|
|
142
|
+
./.prefix/bin/jupyter-lab
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
Voila!
|
|
146
|
+
You have a working installation of jupyterlab installed on your system!
|
|
147
|
+
You can of course install any package you want this way.
|
|
148
|
+
Try it!
|
|
149
|
+
|
|
150
|
+
## Contributing 😍
|
|
151
|
+
|
|
152
|
+
We would love to have you contribute!
|
|
153
|
+
See the CONTRIBUTION.md for more info. For questions, requests or a casual chat, we are very active on our discord server.
|
|
154
|
+
You can [join our discord server via this link][chat-url].
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
## Components
|
|
158
|
+
|
|
159
|
+
Rattler consists of several crates that provide different functionalities.
|
|
160
|
+
|
|
161
|
+
* **rattler_conda_types**: foundational types for all datastructures used within the conda eco-system.
|
|
162
|
+
* **rattler_package_streaming**: provides functionality to download, extract and create conda package archives.
|
|
163
|
+
* **rattler_repodata_gateway**: downloads, reads and processes information about existing conda packages from an index.
|
|
164
|
+
* **rattler_shell**: code to activate an existing environment and run programs in it.
|
|
165
|
+
* **rattler_solve**: a backend agnostic library to solve the package satisfiability problem.
|
|
166
|
+
* **rattler_virtual_packages**: a crate to detect system capabilities.
|
|
167
|
+
* **rattler_index**: create local conda channels from local packages.
|
|
168
|
+
* **rattler**: functionality to create complete environments from scratch using the crates above.
|
|
169
|
+
* **rattler-lock**: a library to create and parse lockfiles for conda environments.
|
|
170
|
+
* **rattler-networking**: common functionality for networking, like authentication, mirroring and more.
|
|
171
|
+
* **rattler-bin**: an example of a package manager using all the crates above (see: [showcase](#showcase))
|
|
172
|
+
|
|
173
|
+
You can find these crates in the `crates` folder.
|
|
174
|
+
|
|
175
|
+
Additionally, we provide Python bindings for most of the functionalities provided by the above crates.
|
|
176
|
+
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/).
|
|
177
|
+
Documentation for the python bindings can be found [here](https://conda.github.io/rattler/py-rattler).
|
|
178
|
+
|
|
179
|
+
## What is conda & conda-forge?
|
|
180
|
+
|
|
181
|
+
The conda ecosystem provides **cross-platform**, **binary** packages that you can use with **any programming language**.
|
|
182
|
+
`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.
|
|
183
|
+
`conda` is written in Python.
|
|
184
|
+
The aim of Rattler is to provide all functionality required to work with the conda ecosystem from Rust.
|
|
185
|
+
Rattler is not a reimplementation of `conda`.
|
|
186
|
+
`conda` is a package management tool.
|
|
187
|
+
Rattler is a _library_ to work with the conda ecosystem from different languages and applications.
|
|
188
|
+
For example, it powers the backend of https://prefix.dev.
|
|
189
|
+
|
|
190
|
+
`conda-forge` is a community-driven effort to bring new and existing software into the conda ecosystem.
|
|
191
|
+
It provides _tens-of-thousands of up-to-date_ packages that are maintained by a community of contributors.
|
|
192
|
+
For an overview of available packages see https://prefix.dev.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.1.2](https://github.com/conda/rattler/compare/coalesced_map-v0.1.1...coalesced_map-v0.1.2) - 2025-09-05
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- add clear on coalesced_map ([#1659](https://github.com/conda/rattler/pull/1659))
|
|
15
|
+
|
|
16
|
+
## [0.1.1](https://github.com/conda/rattler/compare/coalesced_map-v0.1.0...coalesced_map-v0.1.1) - 2025-08-15
|
|
17
|
+
|
|
18
|
+
### Other
|
|
19
|
+
|
|
20
|
+
- release ([#1594](https://github.com/conda/rattler/pull/1594))
|
|
21
|
+
|
|
22
|
+
## [0.1.0](https://github.com/conda/rattler/releases/tag/coalesced_map-v0.1.0) - 2025-08-12
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- *(gateway)* add method to ensure `run_exports.json` ([#1540](https://github.com/conda/rattler/pull/1540))
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "coalesced_map"
|
|
3
|
+
version = "0.1.2"
|
|
4
|
+
edition.workspace = true
|
|
5
|
+
license.workspace = true
|
|
6
|
+
homepage.workspace = true
|
|
7
|
+
repository.workspace = true
|
|
8
|
+
categories.workspace = true
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
description = "A thread-safe, deduplicating map that ensures expensive computations are executed only once per key"
|
|
11
|
+
|
|
12
|
+
[dependencies]
|
|
13
|
+
dashmap = { workspace = true }
|
|
14
|
+
tokio = { workspace = true, features = ["sync"] }
|
|
15
|
+
|
|
16
|
+
[dev-dependencies]
|
|
17
|
+
tokio = { workspace = true, features = ["rt", "macros"] }
|
|
18
|
+
futures = { workspace = true }
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# coalesced_map
|
|
2
|
+
|
|
3
|
+
[](https://crates.io/crates/coalesced_map)
|
|
4
|
+
[](https://docs.rs/coalesced_map)
|
|
5
|
+
[](https://github.com/conda/rattler/actions)
|
|
6
|
+
[](https://github.com/conda/rattler/blob/main/LICENSE)
|
|
7
|
+
|
|
8
|
+
A thread-safe, deduplicating map that ensures expensive computations are executed only once per key, even when multiple concurrent requests are made.
|
|
9
|
+
|
|
10
|
+
This map is designed for scenarios where multiple async tasks might request the same resource simultaneously. Instead of performing duplicate work, the `CoalescedMap` ensures that only the first request for a given key executes the initialization function, while subsequent concurrent requests wait for and receive the same result.
|